Skip to content

Commit

Permalink
Update sql_injection_detector.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kazet authored Oct 16, 2024
1 parent d7df77b commit 4e7fdba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artemis/modules/sql_injection_detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def scan(self, urls: List[str], task: Task) -> List[Dict[str, Any]]:

# The code below may look complicated and repetitive, but it shows how the scanning logic works.
for current_url in urls:
for param_batch in more_itertools.batched(URL_PARAMS, 75):
for param_batch in more_itertools.batched(URL_PARAMS, 60):
if self.is_url_with_parameters(current_url):
for error_payload in sql_injection_error_payloads:
url_with_payload = self.change_url_params(
Expand Down

0 comments on commit 4e7fdba

Please sign in to comment.