We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 133ce25 commit 4f0cb2cCopy full SHA for 4f0cb2c
.gitignore
@@ -0,0 +1,3 @@
1
+.vscode/
2
+env_sql/
3
+__pycache__/
lib/const.py
@@ -9,7 +9,7 @@
9
10
# Misc
11
debug = False
12
-version = '1.0'
+version = '1.0.1'
13
sql_log = 'sql_vuln.txt'
14
15
# Art
lib/sql.py
@@ -55,8 +55,8 @@ def link_manager(self):
55
sleep(1.5)
56
continue
57
58
- if not self.search.is_alive and not self.search.links.qsize():
59
- break
+ if not self.search.links.qsize():
+ continue
60
61
browsers = []
62
for link in self.links:
0 commit comments