Hi Brandon.

If you mean that question that goes like "GET parameter 'id' is vulnerable.
Do you want to keep testing the others? [y/N]" find the patch attached.

But, the default behavior of sqlmap won't change. Batch behavior in 99% of
cases suits the need of the user to find any injection point and to exploit
it as soon as possible.

Kind regards

On Thu, Dec 15, 2011 at 10:05 PM, Brandon Perry
<bperry.volat...@gmail.com>wrote:

> Hi, I have tried to emulate the ability to run sqlmap via --batch,
> while allowing the scanner to keep testing after it has found a
> successful injection point. Is this possible atm? If not, would a
> patch be appreciated?
>
> --
> http://volatile-minds.blogspot.com -- blog
> http://www.volatileminds.net -- website
>
>
> ------------------------------------------------------------------------------
> 10 Tips for Better Server Consolidation
> Server virtualization is being driven by many needs.
> But none more important than the need to reduce IT complexity
> while improving strategic productivity.  Learn More!
> http://www.accelacomm.com/jaw/sdnl/114/51507609/
> _______________________________________________
> sqlmap-users mailing list
> sqlmap-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/sqlmap-users
>



-- 
Miroslav Stampar
http://about.me/stamparm
Index: lib/controller/controller.py
===================================================================
--- lib/controller/controller.py	(revision 4587)
+++ lib/controller/controller.py	(working copy)
@@ -487,8 +487,8 @@
                                     break
 
                                 msg = "%s parameter '%s' " % (injection.place, injection.parameter)
-                                msg += "is vulnerable. Do you want to keep testing the others? [y/N] "
-                                test = readInput(msg, default="N")
+                                msg += "is vulnerable. Do you want to keep testing the others? [Y/n] "
+                                test = readInput(msg, default="Y")
 
                                 if test[0] in ("n", "N"):
                                     proceed = False
------------------------------------------------------------------------------
10 Tips for Better Server Consolidation
Server virtualization is being driven by many needs.  
But none more important than the need to reduce IT complexity 
while improving strategic productivity.  Learn More! 
http://www.accelacomm.com/jaw/sdnl/114/51507609/
_______________________________________________
sqlmap-users mailing list
sqlmap-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sqlmap-users

Reply via email to