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

Webwiz Rich Text Editor Finder For Recon-NG

Webwiz Rich Text Editor Finder For Recon-NG
Posted Oct 25, 2013
Authored by Jay Turla

This is a Webwiz Rich Text Editor file upload page discovery module for Recon-NG.

tags | tool, scanner, file upload
systems | unix
SHA-256 | 865eb4c812edca67575bd0f50b8854c158f04d5a59f498bb0dcc994a35bcecf6

Webwiz Rich Text Editor 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.info = {
'Name': 'Webwiz Rich Text Editor File Upload Page Finder',
'Author': 'Jay Turla (@shipcod3)',
'Description': 'Checks the given hosts for Webwiz RTE remote file upload pages.',
'Comments': [
'Source options: [ db | <hostname> | ./path/to/file | query <sql> ]',
'Google Dork: inurl:"RTE_popup_file_atch.asp"',
]
}

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')

protocols = ['http', 'https']
files = [
'admin/RTE_popup_file_atch.asp', 'asp/RTE/RTE_popup_file_atch.asp',
'admin/rte/RTE_popup_file_atch.asp', 'RTE/RTE_popup_file_atch.asp',
'rte/RTE_popup_file_atch.asp', 'RTE_popup_file_atch.asp',
'rte_popup_file_atch.asp', 'apps/rte/RTE_popup_file_atch.asp',
]
cnt = 0
for host in hosts:
for proto in protocols:
for fileupload in files:
url = '%s://%s/%s' % (proto, host, fileupload)
try:
resp = self.request(url, redirect=False)
code = resp.status_code
except KeyboardInterrupt:
raise KeyboardInterrupt
except:
code = 'Error'
if code == 200 and 'Attach File Properties' in resp.text:
self.alert('%s => %s. Possible Webwiz RTE file upload page found!' % (url, code))
cnt += 1
else:
self.verbose('%s => %s' % (url, code))
self.output('%d Webwiz RTE file upload pages found' % (cnt))
Login or Register to add favorites

File Archive:

July 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Jul 1st
    27 Files
  • 2
    Jul 2nd
    10 Files
  • 3
    Jul 3rd
    35 Files
  • 4
    Jul 4th
    27 Files
  • 5
    Jul 5th
    18 Files
  • 6
    Jul 6th
    0 Files
  • 7
    Jul 7th
    0 Files
  • 8
    Jul 8th
    28 Files
  • 9
    Jul 9th
    44 Files
  • 10
    Jul 10th
    24 Files
  • 11
    Jul 11th
    25 Files
  • 12
    Jul 12th
    11 Files
  • 13
    Jul 13th
    0 Files
  • 14
    Jul 14th
    0 Files
  • 15
    Jul 15th
    28 Files
  • 16
    Jul 16th
    6 Files
  • 17
    Jul 17th
    34 Files
  • 18
    Jul 18th
    6 Files
  • 19
    Jul 19th
    34 Files
  • 20
    Jul 20th
    0 Files
  • 21
    Jul 21st
    0 Files
  • 22
    Jul 22nd
    19 Files
  • 23
    Jul 23rd
    17 Files
  • 24
    Jul 24th
    47 Files
  • 25
    Jul 25th
    0 Files
  • 26
    Jul 26th
    0 Files
  • 27
    Jul 27th
    0 Files
  • 28
    Jul 28th
    0 Files
  • 29
    Jul 29th
    0 Files
  • 30
    Jul 30th
    0 Files
  • 31
    Jul 31st
    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