Skip to content

Commit

Permalink
threads args
Browse files Browse the repository at this point in the history
  • Loading branch information
imnotcha0s committed Jan 10, 2024
1 parent dd44309 commit d5129d6
Show file tree
Hide file tree
Showing 1,741 changed files with 9 additions and 318,837 deletions.
10 changes: 9 additions & 1 deletion falcon.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@
type=str,
help="Wordlist for enumeration"
)
parser.add_argument(
"-t",
"--threads",
dest="threads",
default=10,
type=int,
help="Num of threads"
)

args = parser.parse_args()

Expand Down Expand Up @@ -77,7 +85,7 @@ def main():
print("[+] Enabling Burpsuite proxy...")
http.proxies.update(burp)
fingerprint(args.url)
flags = dircheck_threaded(http, args.url, args.wordlist, args.regexpattern)
flags = dircheck_threaded(http, args.url, args.wordlist, args.regexpattern, args.threads)
if args.regexpattern:
print(f"[+] Total of flags found: {len(flags)}\n[+] Flags: ")
for flag in flags:
Expand Down
247 changes: 0 additions & 247 deletions venv/bin/Activate.ps1

This file was deleted.

69 changes: 0 additions & 69 deletions venv/bin/activate

This file was deleted.

26 changes: 0 additions & 26 deletions venv/bin/activate.csh

This file was deleted.

Loading

0 comments on commit d5129d6

Please sign in to comment.