Syslog Fuzzer is a small perl script tool useful to test some attack vectors against syslog servers.
The first version has support for:
> Buffer Overflows
> Integer Overflows
> Format Strings
[hide=10]
[code]
#!/usr/bin/perl
#syslog Fuzzer v0.1
#jaime.blasco@aitsec.com
#www.aitsec.com
use IO::Socket::INET;
use Getopt::Std;
use POSIX qw(strftime);
getopt('hp', \ my %opts );
$SIG{INT}=\&exitz;
print "
\t


Reply With Quote
