Skip to content
This repository was archived by the owner on Apr 17, 2021. It is now read-only.

Commit bd11837

Browse files
committed
switching debuger to pudb
1 parent 0a4aeff commit bd11837

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

autosqli.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ def main():
1818

1919
if args.debug:
2020
log.debug("Ok boss, launching in debug mode")
21-
import pdb
22-
pdb.set_trace() # XXX BREAKPOINT
21+
import pudb
22+
pudb.set_trace() # XXX BREAKPOINT
2323

2424
log.info("Welcome into AutoSQLi!")
2525
log.debug("Checking for saves...")
@@ -32,7 +32,7 @@ def main():
3232
while True:
3333
if args.debug:
3434
log.debug("activating breakpoint")
35-
pdb.set_trace()
35+
pudb.set_trace()
3636

3737
# do the current stage and increment
3838
log.debug("Getting into the next stage")

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
pudb
12
argparse
23
psutil
34
requests

0 commit comments

Comments
 (0)