mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-23 19:34:13 +03:00
minor improvement for URI injections
This commit is contained in:
parent
d434047482
commit
2f4e34f5a0
|
@ -80,6 +80,9 @@ class Agent:
|
||||||
if place == PLACE.URI:
|
if place == PLACE.URI:
|
||||||
origValue = origValue.split(URI_INJECTION_MARK_CHAR)[0]
|
origValue = origValue.split(URI_INJECTION_MARK_CHAR)[0]
|
||||||
origValue = origValue[origValue.rfind('/') + 1:]
|
origValue = origValue[origValue.rfind('/') + 1:]
|
||||||
|
for char in ('?', '=', ':'):
|
||||||
|
if char in origValue:
|
||||||
|
origValue = origValue[origValue.rfind(char) + 1:]
|
||||||
|
|
||||||
if value is None:
|
if value is None:
|
||||||
if where == PAYLOAD.WHERE.ORIGINAL:
|
if where == PAYLOAD.WHERE.ORIGINAL:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user