Perl

Jannich Brendle on September 3rd, 2009

Everybody knows services like milw0rm.com’s md5 cracking database, where you can submit a hash and get the plaintext password, if it is cracked. Today I discovered Digest::MD5::Reverse, a perl module to search several online MD5 hash databases.
So I whipped up a little script to lookup md5 hashes, to place in my ~/bin:
#!/usr/bin/perl
use strict;
use Digest::MD5::Reverse;
my [...]

Continue reading about Cracking md5 hashes just got easier – with perl

Jannich Brendle on July 9th, 2009

For some time I have wanted to play with the json-rpc interface of Transmission. Today I jumped into it.
I decided to make a program that would run on my local computer and should be called via cron every X minutes, and scan a directory for .torrent files. Any .torrent files found should be added [...]

Continue reading about Controlling transmission using json-rpc in perl

Jannich Brendle on May 13th, 2009

When making websites and programs I found it rather tedious to produce java classes that reflected the structure of a table in a database, so I made a perl script to automate the task, hence miniORM.
It’s rather crude at the moment, and a lot of options could be included, like, but not limited to:

support [...]

Continue reading about miniORM – a simple Object-relational mapping tool