[sqlmap-users] Tor proxy port detection broken (and fixed)
Brought to you by:
inquisb
From: Alexander R. <al...@ri...> - 2011-10-27 10:31:48
|
Hello, Yesterday I encountered a bug in sqlmap. The tor port detection was broken due to this change in lib/core/settings.py: -DEFAULT_TOR_PORTS = (8118, 8123) +DEFAULT_TOR_PORTS = (8123, 8118) The reason this broke it for me is because my polipo is running at port 8118, and the code that tries to connect to these ports does not properly reinitiate the socket used. See my attached patch. Best regards, Alexander |