[sqlmap-users] SQLMap not working while testing localhost
Brought to you by:
inquisb
From: rkas s. <rka...@gm...> - 2013-08-02 14:35:47
|
Hello Team, Below test works fine and produces the expected results in SQLMAP output - Test Passed and performs SQL Injection python sqlmap.py -u " http://unix_server:8000/absolute_uri_path_from_burp&where=&addwhere=&criterion=SQL_INJECTION_UNION_CONDITION" --cookie=JSESSIONID=values --dbms=Oracle --dbs -p "criterion" But the below test which is same as above but the only change is the server location, now pointed to localhost -- Test failed and did not perform SQL Injection python sqlmap.py -u " http://localhost:8888/absolute_uri_path_from_burp&where=&addwhere=&criterion=SQL_INJECTION_UNION_CONDITION" --cookie=JSESSIONID=values --dbms=Oracle --dbs -p "criterion" Only difference is, when attempting to inject via localhost, DB is still the same which is located in the UNIX server so the connection time is more through the localhost. Increased SQLMAP --timeout and also tried --time-sec options, but not successful. Any suggestions. Thanks Ram |