nice. There are a few no-hat attacker sites out there who delight in causing chaos to ordinary people.. (growl, rant deleted) pity there are no "attack the attackers" sites.. are we scared of them or something ? S On Fri, 2005-09-30 at 09:49 +1200, Liz Q wrote:
If a few of you were to run this in a loop it may screw things up for them
#!/usr/bin/perl -w
my $url = "http://www.bankdlrect.co.nz/Logon.html";
use WWW::Mechanize; use String::Random;
$randstuff = new String::Random; my $fakeuser = $randstuff->randregex('\d\d\d\d\d\d\d\d'); # Prints random digits my $fakepass = $randstuff->randpattern("........"); # Prints random printable characters
my $mech = WWW::Mechanize->new();
$mech->get( $url ); #$mech->follow_link( n => 3 ); #$mech->follow_link( text_regex => qr/download this/i ); #$mech->follow_link( url => 'http://host.com/index.html' );
$mech->submit_form( form_number => 1, fields => { username => '$fakeuser', password => 'fakepass', } ); print "Logging into $url with $fakeuser and $fakepass\n";
Liz
On Fri, 30 Sep 2005 08:55, James Clark wrote:
Craig Box wrote:
Just got a phish for BankDirect. The telling part: "<a href="http://www.bankdlrect.co.nz/index_secure.asp" >"
I've seen this phish aswell.
Cheers, James.
_______________________________________________ NZNOG mailing list NZNOG(a)list.waikato.ac.nz http://list.waikato.ac.nz/mailman/listinfo/nznog