mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Minor improvement (bz2 slow, zlib fast)
This commit is contained in:
parent
5be407edad
commit
075fa1d4be
3 changed files with 16 additions and 16 deletions
|
|
@ -327,7 +327,7 @@ def smokeTest():
|
|||
count, length = 0, 0
|
||||
|
||||
for root, _, files in os.walk(paths.SQLMAP_ROOT_PATH):
|
||||
if any(_ in root for _ in ("thirdparty", "extra")):
|
||||
if any(_ in root for _ in ("thirdparty", "extra", "interbase")):
|
||||
continue
|
||||
|
||||
for filename in files:
|
||||
|
|
@ -335,7 +335,7 @@ def smokeTest():
|
|||
length += 1
|
||||
|
||||
for root, _, files in os.walk(paths.SQLMAP_ROOT_PATH):
|
||||
if any(_ in root for _ in ("thirdparty", "extra")):
|
||||
if any(_ in root for _ in ("thirdparty", "extra", "interbase")):
|
||||
continue
|
||||
|
||||
for filename in files:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue