mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
default to --search shall stay LIKE
This commit is contained in:
parent
3fa05374bd
commit
57412f8475
|
@ -177,10 +177,10 @@ class Miscellaneous:
|
|||
|
||||
def likeOrExact(self, what):
|
||||
message = "do you want sqlmap to consider provided %s(s):\n" % what
|
||||
message += "[1] as LIKE %s names\n" % what
|
||||
message += "[2] as exact %s names (default)" % what
|
||||
message += "[1] as LIKE %s names (default)\n" % what
|
||||
message += "[2] as exact %s names" % what
|
||||
|
||||
choice = readInput(message, default='2')
|
||||
choice = readInput(message, default='1')
|
||||
|
||||
if not choice or choice == '1':
|
||||
choice = '1'
|
||||
|
|
Loading…
Reference in New Issue
Block a user