Skip to content

Commit e6c4154

Browse files
committed
Fixed minor bug in --reg-del
1 parent e4e081c commit e6c4154

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

doc/THANKS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ Daniele Bellucci <daniele.bellucci@gmail.com>
1515
Jack Butler <fattredd@hotmail.com>
1616
for providing me with the sqlmap site favicon
1717

18+
Roberto Castrogiovanni <castrogiovanni.roberto@gmail.com>
19+
for reporting a minor bug
20+
1821
Cesar Cerrudo <cesar@argeniss.com>
1922
for his Windows access token kidnapping tool Churrasco included in
2023
sqlmap tree as a contrib library and used to run the stand-alone

plugins/generic/takeover.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def regDel(self):
554554

555555
if not conf.regVal:
556556
msg = "which registry key value do you want to delete? "
557-
regVal = readInput(msg, default=default)
557+
regVal = readInput(msg)
558558

559559
if not regVal:
560560
raise sqlmapMissingMandatoryOptionException, errMsg

0 commit comments

Comments
 (0)