qsreplace icon indicating copy to clipboard operation
qsreplace copied to clipboard

Multiple parameters & append mode enhancement

Open DavidBalas1 opened this issue 3 years ago • 0 comments

Changes:

  • Added an option to receive multiple parameters to replace to by a wordlist, usage example: Get all urls matching xss patterns, and replace each parameter by multiple parameters given by a list of payloads.
cat urls.txt | gf xss | qsreplace -w xss_payloads.txt | ffuf ..
  • Added an option to run qsreplace with and without appendMode in one run, qsreplace will once replace the parameters in the url and once append to the parameters in the url, usage example:
cat urls.txt | gf xss | qsreplace -b "payload" | ffuf ..
  • qsreplace will now skip urls with no url parameters.

DavidBalas1 avatar May 25 '22 20:05 DavidBalas1