1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #!/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/2019 | psy <epsylon@riseup.net>
- 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! ;)
- heuristic_test = [
- { 'payload' : """XSS\\XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS/XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS>XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS<XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS;XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS'XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : '''XSS"XSS''',
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS=XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS%5CXSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS%3EXSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS%3CXSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS%3BXSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS%27XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : '''XSS%22XSS''',
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS%3DXSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS\XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS/XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS>XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS<XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS;XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS'XSS""",
- 'browser' : """[Heuristic test]""" },
- { 'payload' : '''XSS"XSS''',
- 'browser' : """[Heuristic test]""" },
- { 'payload' : """XSS=XSS""",
- 'browser' : """[Heuristic test]""" }
- ]
|