mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Trivial fix (backslashes should be escaped)
This commit is contained in:
parent
4f4c50c4d5
commit
3beb1ae2a1
1 changed files with 1 additions and 1 deletions
|
|
@ -372,7 +372,7 @@ class Takeover(Abstraction, Metasploit, ICMPsh, Registry, Miscellaneous):
|
||||||
self._regInit()
|
self._regInit()
|
||||||
|
|
||||||
if not conf.regKey:
|
if not conf.regKey:
|
||||||
default = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion"
|
default = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion"
|
||||||
msg = "which registry key do you want to read? [%s] " % default
|
msg = "which registry key do you want to read? [%s] " % default
|
||||||
regKey = readInput(msg, default=default)
|
regKey = readInput(msg, default=default)
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue