mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Minor update
This commit is contained in:
parent
4af3195041
commit
4a913d2ab1
3 changed files with 6 additions and 6 deletions
|
|
@ -463,11 +463,11 @@ class Backend(object):
|
|||
@staticmethod
|
||||
def setArch():
|
||||
msg = "what is the back-end database management system architecture?"
|
||||
msg += "\n[1] 32-bit (default)"
|
||||
msg += "\n[2] 64-bit"
|
||||
msg += "\n[1] 32-bit"
|
||||
msg += "\n[2] 64-bit (default)"
|
||||
|
||||
while True:
|
||||
choice = readInput(msg, default='1')
|
||||
choice = readInput(msg, default='2')
|
||||
|
||||
if hasattr(choice, "isdigit") and choice.isdigit() and int(choice) in (1, 2):
|
||||
kb.arch = 32 if int(choice) == 1 else 64
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue