Fix typos
Found via `codespell -S ./arjun/db -L splitted`
This commit is contained in:
@@ -58,7 +58,7 @@
|
|||||||
- `-c` option to define number of parameters to be sent at once
|
- `-c` option to define number of parameters to be sent at once
|
||||||
- import via `-i` options now supports: BurpSuite log, raw request file, text file with urls
|
- import via `-i` options now supports: BurpSuite log, raw request file, text file with urls
|
||||||
- `-T` option to specify HTTP connection timeout
|
- `-T` option to specify HTTP connection timeout
|
||||||
- combined `-m` option for specifiying HTTP request method
|
- combined `-m` option for specifying HTTP request method
|
||||||
- Various bug fixes and better output
|
- Various bug fixes and better output
|
||||||
|
|
||||||
#### 1.6
|
#### 1.6
|
||||||
|
|||||||
@@ -149,7 +149,7 @@ def initialize(request, wordlist, single_url=False):
|
|||||||
if len(param_groups) > prev_chunk_count:
|
if len(param_groups) > prev_chunk_count:
|
||||||
response_3 = requester(request, {fuzz: fuzz[::-1]})
|
response_3 = requester(request, {fuzz: fuzz[::-1]})
|
||||||
if compare(response_3, factors, {fuzz: fuzz[::-1]}) != '':
|
if compare(response_3, factors, {fuzz: fuzz[::-1]}) != '':
|
||||||
print('%s Target is misbehaving. Try the --stable swtich.' % bad)
|
print('%s Target is misbehaving. Try the --stable switch.' % bad)
|
||||||
return []
|
return []
|
||||||
if mem.var['kill']:
|
if mem.var['kill']:
|
||||||
return 'skipped'
|
return 'skipped'
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ def heuristic(raw_response, wordlist):
|
|||||||
if len(response) < 200:
|
if len(response) < 200:
|
||||||
if ('required' or 'missing' or 'not found' or 'requires') in response.lower() and ('param' or 'parameter' or 'field') in response.lower():
|
if ('required' or 'missing' or 'not found' or 'requires') in response.lower() and ('param' or 'parameter' or 'field') in response.lower():
|
||||||
if not mem.var['quiet']:
|
if not mem.var['quiet']:
|
||||||
print('%s The endpoint seems to require certain parameters to function. Check the repsonse and use the --include option appropriately for better results.' % info)
|
print('%s The endpoint seems to require certain parameters to function. Check the response and use the --include option appropriately for better results.' % info)
|
||||||
words_exist = True
|
words_exist = True
|
||||||
potential_params = re_words.findall(response)
|
potential_params = re_words.findall(response)
|
||||||
# Parse Inputs
|
# Parse Inputs
|
||||||
|
|||||||
Reference in New Issue
Block a user