Skip to content

Commit

Permalink
fix #201 (getting stuck)
Browse files Browse the repository at this point in the history
  • Loading branch information
s0md3v authored Apr 13, 2024
1 parent a4c8d76 commit 6de9b3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arjun/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,11 @@ def initialize(request, wordlist, single_url=False):
factors = define(response_1, response_2, fuzz, fuzz[::-1], wordlist)
zzuf = "z" + random_str(6)
response_3 = requester(request, {zzuf[:-1]: zzuf[::-1][:-1]})
while factors:
while True:
reason = compare(response_3, factors, {zzuf[:-1]: zzuf[::-1][:-1]})[2]
if not reason:
break
factors[reason] = []
factors[reason] = False
if single_url:
print('%s Analysing HTTP response for potential parameter names' % run)
if found:
Expand Down

0 comments on commit 6de9b3c

Please sign in to comment.