exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

Backup File Finder For Recon-NG

Backup File Finder For Recon-NG
Posted Oct 27, 2013
Authored by Jay Turla, LaNMaSteR53

Backup File Finder is a discovery module for Recon-NG that checks hosts for exposed backup files. The default configuration searches for wp-config.php files which contain WordPress database configuration information.

tags | tool, scanner, php
systems | unix
SHA-256 | e2a1b50ffde6e78f47fb1689941867580a665c3ad6ca97dc73fe66d832856946

Backup File Finder For Recon-NG

Change Mirror Download
import framework
# unique to module

class Module(framework.module):

def __init__(self, params):
framework.module.__init__(self, params)
self.register_option('source', 'db', 'yes', 'source of hosts for module input (see \'info\' for options)')
self.register_option('uri', 'wp-config.php', 'yes', 'URI to the original filename')
self.register_option('searchstr', '<?php', 'yes', 'string to search for in the response for false positive reduction')
self.info = {
'Name': 'Backup File Finder',
'Author': 'Jay Turla (@shipcod3) and Tim Tomes (@LaNMaSteR53)',
'Description': 'Checks hosts for exposed backup files. The default configuration searches for wp-config.php files which contain WordPress database configuration information.',
'Comments': [
'Source options: [ db | <hostname> | ./path/to/file | query <sql> ]',
'Reference: http://feross.org/cmsploit/',
'Google Dork: i.e. inurl:wp-config.conf ext:conf',
]
}

def module_run(self):
hosts = self.get_source(self.options['source']['value'], 'SELECT DISTINCT host FROM hosts WHERE host IS NOT NULL ORDER BY host')
uri = self.options['uri']['value']
searchstr = self.options['searchstr']['value']

protocols = ['http', 'https']

# some files are inspired by cmsploit
uris = [uri, uri[:uri.rindex('.')]]
exts = ['.txt', '.save', '.save.1', '.save.2', '.swp', '.swo', '.conf', '.old', '.bak', '~', '-', '#', '%23']
filenames = []
# mangle root uris to create a list of possible backup filenames
for rooturi in uris:
for ext in exts:
filenames.append('%s%s' % (rooturi, ext))

cnt = 0
for host in hosts:
flag = 0
for proto in protocols:
for filename in filenames:
url = '%s://%s/%s' % (proto, host, filename)
try:
resp = self.request(url, redirect=False)
code = resp.status_code
except KeyboardInterrupt:
raise KeyboardInterrupt
except:
code = 'Error'
if code == 200 and searchstr in resp.text:
self.alert('%s => %s. \'%s\' file found!' % (url, code, filename))
cnt += 1
flag = 1
break
else:
self.verbose('%s => %s' % (url, code))
if flag: break
self.output('%d \'%s\' backup pages found' % (cnt, uri))
Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    0 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    0 Files
  • 23
    Apr 23rd
    0 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close