mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
Fixed small bug in SQLInjection module
This commit is contained in:
parent
0ba5637e06
commit
64fe32b29b
1 changed files with 2 additions and 2 deletions
|
@ -42,11 +42,11 @@ word_injection.append(word_injection3)
|
|||
|
||||
# Suspect char
|
||||
word_injection_suspect1 = ["\'", "\"", ";", "<", ">"]
|
||||
word_injection_suspect.append(word_injection_suspect1)
|
||||
word_injection_suspect += word_injection_suspect1
|
||||
|
||||
# Comment
|
||||
word_injection_suspect2 = ["--", "#", "/*"]
|
||||
word_injection_suspect.append(word_injection_suspect2)
|
||||
word_injection_suspect += word_injection_suspect2
|
||||
|
||||
def analyse(url, path):
|
||||
faup.decode(url)
|
||||
|
|
Loading…
Reference in a new issue