Hello everyone! There is a very cool website http://www.haveibeenpwned.com/ This website tracks websites that have been compromised and the hack has been made public for example the Adobe website hack you can enter your email address into the site this is the email you would have registered with and will cross reference it with the

Has your email been pwned ? check with cool websiteRead More »

#!/usr/bin/perl # test.pl: small script to test mod_dosevasive’s effectiveness use IO::Socket; use strict; for(0..100) { my($response); my($SOCKET) = new IO::Socket::INET( Proto => “tcp”, PeerAddr=> “test.domain.tld:80”); if (! defined $SOCKET) { die $!; } print $SOCKET “GET /?$_ HTTP/1.0nn”; $response = ; print $response; close($SOCKET); }