Skip to content

Instantly share code, notes, and snippets.

@aallan
Last active January 1, 2016 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aallan/8211358 to your computer and use it in GitHub Desktop.
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, …
#!/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