Skip to content

Instantly share code, notes, and snippets.

@worr
worr / find_password_hash.py
Created June 6, 2012 19:59 — forked from jsundram/find_password_hash.py
Check if your password is in the linkedin password dump.
"""
Check if your password is in the linkedin password dump.
You'll need to download the dump from here: http://bit.ly/KGTusG and unzip it to combo_not.txt
"""
import hashlib
import getpass
pw = getpass.getpass('Enter your LinkedIn password: ')
sha1 = hashlib.sha1(pw).hexdigest()
@worr
worr / example1.pl
Created August 19, 2011 21:05 — forked from agargiulo/example1.pl
failing perl script section
use 5.010;
open(my $config, ">" "$configfile") or die $!;
$output = $row->{value};
my @output = split(/\n/, $output);
if ($wroteToFile)
{
foreach (@output)
{