mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
works against MySQL/Windows
This commit is contained in:
parent
a1d97e9d7b
commit
a4b95ab7dd
3 changed files with 7 additions and 3 deletions
|
|
@ -95,6 +95,7 @@ class DNSServer:
|
|||
thread.start()
|
||||
|
||||
if __name__ == "__main__":
|
||||
server = None
|
||||
try:
|
||||
server = DNSServer()
|
||||
server.run()
|
||||
|
|
@ -118,4 +119,6 @@ if __name__ == "__main__":
|
|||
except KeyboardInterrupt:
|
||||
os._exit(0)
|
||||
finally:
|
||||
server._running = False
|
||||
if server:
|
||||
server._running = False
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue