what you don't know can hurt you
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:

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
    8 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    11 Files
  • 23
    Apr 23rd
    68 Files
  • 24
    Apr 24th
    23 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