Category: Scripts/Tools
Hping3 is a powerful tool used for penetration testing here is a fast and easy way to perform a syn attack with a side of ip spoofing sudo hping3 -a 192.168.1.3 192.168.1.3 -R This will spoof the address and make the device send syn packets ot its self ! lol Here is a picture on
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); }