Last active
January 1, 2016 22:39
-
-
Save aallan/8211358 to your computer and use it in GitHub Desktop.
Perl script to match a list of US phone numbers to the leaked Snapchat database of phone numbers and user names. Run in the same directory as the schat.csv file, and another file called contacts.tel that contains a list of US phone numbers—one number per line in the file. Since the final two digits of the number are obscured in the leaked file, …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
print "Reading schat.csv\n"; | |
open ( my $schat, "<schat.csv") || die "Can't open schat.csv: $!"; | |
my @snaps = <$schat>; | |
close($schat); | |
chomp( @snaps ); | |
print "Reading contacts.tel\n"; | |
open ( my $contacts, "<contacts.tel") || die "Can't open contacts.tel: $!"; | |
my @friends = <$contacts>; | |
close ($contacts); | |
chomp( @friends ); | |
my $i = 1; | |
my $j = scalar @friends; | |
foreach my $friend ( @friends ) { | |
print "Looking at number $friend\n"; | |
print " Number $i of $j\n"; | |
chop( $friend ); | |
chop( $friend ); | |
chop( $friend ); | |
$i = $i + 1; | |
foreach my $snap ( @snaps ) { | |
$snap =~ s/"$//; | |
$snap =~ s/^"//; | |
$snap =~ s/","/,/g; | |
my @foo = split ",", $snap; | |
my $phone = $foo[0]; | |
chop($phone); | |
chop($phone); | |
if ( $phone eq $friend ) { | |
print " Number $phone potentially matches contact. Snapchat user is $foo[1] in $foo[2]\n"; | |
} | |
} | |
} | |
exit; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment