Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
kazet committed Nov 9, 2023
1 parent d662a6c commit d851376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion karton_sqlmap/karton_sqlmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def _expand_query_parameters_for_scanning(url: str) -> List[Tuple[str, str]]:
original_value = new_query[key]
new_query[key] = token

# We replace token with * after building the URL, so that the asterisk is passwd to sqlmap unescaped
# We replace token with * after building the URL, so that the asterisk is passed to sqlmap unescaped
new_query_encoded = urllib.parse.urlencode(new_query)
new_url_parsed = url_parsed._replace(query=new_query_encoded)
new_url = urllib.parse.urlunparse(new_url_parsed)
Expand Down

0 comments on commit d851376

Please sign in to comment.