mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
removing urlencode from UA
This commit is contained in:
parent
5f49e20cc8
commit
402c1b622e
|
@ -422,7 +422,7 @@ class Connect:
|
|||
cookie = conf.parameters[PLACE.COOKIE] if place != PLACE.COOKIE or not value else value
|
||||
|
||||
if PLACE.UA in conf.parameters:
|
||||
ua = urlencode(conf.parameters[PLACE.UA] if place != PLACE.UA or not value else value)
|
||||
ua = conf.parameters[PLACE.UA] if place != PLACE.UA or not value else value
|
||||
|
||||
if PLACE.URI in conf.parameters:
|
||||
uri = conf.url if place != PLACE.URI or not value else value
|
||||
|
|
Loading…
Reference in New Issue
Block a user