#!/usr/bin/env python """ Cross-Site Scripting Module for Grabber v0.1 Copyright (C) 2006 - Romain Gaucher - http://rgaucher.info """ import sys from grabber import getContent_POST, getContent_GET from grabber import getContentDirectURL_GET, getContentDirectURL_POST from grabber import single_urlencode, partially_in, unescape def detect_xss(instance, output): if unescape(instance) in output: return True elif partially_in(unescape(instance), output): return True return False def generateOutput(url, gParam, instance,method,type): astr = "\n\t%s\n\t%s\n\t%s\n\t%s" % (method,url,gParam,str(instance),type) if method in ("get","GET"): # print the real URL p = (url+"?"+gParam+"="+single_urlencode(str(instance))) astr += "\n\t%s" % p astr += "\n\n" return astr def generateOutputLong(url, urlString ,method,type, allParams = {}): astr = "\n\t%s\n\t%s\n\t%s" % (method,url,type) if method in ("get","GET"): # print the real URL p = (url+"?"+urlString) astr += "\n\t%s" % (p) else: astr += "\n\t" for k in allParams: astr += "\n\t\t%s" % (k, allParams[k]) astr += "\n\t" astr += "\n\n" return astr def permutations(L): if len(L) == 1: yield [L[0]] elif len(L) >= 2: (a, b) = (L[0:1], L[1:]) for p in permutations(b): for i in range(len(p)+1): yield b[:i] + a + b[i:] def process(urlGlobal, database, attack_list): plop = open('results/xss_GrabberAttacks.xml','w') plop.write("\n") for u in database.keys(): if len(database[u]['GET']): print "Method = GET ", u for gParam in database[u]['GET']: for typeOfInjection in attack_list: for instance in attack_list[typeOfInjection]: if instance != "See Below": handle = getContent_GET(u,gParam,instance) if handle != None: output = handle.read() header = handle.info() if detect_xss(str(instance),output): # generate the info... plop.write(generateOutput(u,gParam,instance,"GET",typeOfInjection)) # see the permutations if len(database[u]['GET'].keys()) > 1: for typeOfInjection in attack_list: for instance in attack_list[typeOfInjection]: url = "" for gParam in database[u]['GET']: url += ("%s=%s&" % (gParam, single_urlencode(str(instance)))) handle = getContentDirectURL_GET(u,url) if handle != None: output = handle.read() if detect_xss(str(instance),output): # generate the info... plop.write(generateOutputLong(u,url,"GET",typeOfInjection)) if len(database[u]['POST']): print "Method = POST ", u for gParam in database[u]['POST']: for typeOfInjection in attack_list: for instance in attack_list[typeOfInjection]: if instance != "See Below": handle = getContent_POST(u,gParam,instance) if handle != None: output = handle.read() header = handle.info() if detect_xss(str(instance),output): # generate the info... plop.write(generateOutput(u,gParam,instance,"POST",typeOfInjection)) # see the permutations if len(database[u]['POST'].keys()) > 1: for typeOfInjection in attack_list: for instance in attack_list[typeOfInjection]: allParams = {} for gParam in database[u]['POST']: allParams[gParam] = str(instance) handle = getContentDirectURL_POST(u,allParams) if handle != None: output = handle.read() if detect_xss(str(instance), output): # generate the info... plop.write(generateOutputLong(u,url,"POST",typeOfInjection, allParams)) plop.write("\n\n") plop.close() return ""