選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

waap_wafexceptions.sh 366B

1234567891011121314
  1. #!/bin/bash
  2. # Prompt for URL prefix
  3. read -p "Enter the prefix: " prefix
  4. # Define the path
  5. PATHS='search?q=apple'
  6. # Use siege to perform the request
  7. siege "https://${prefix}.gslab-juiceshop.com/$PATHS" \
  8. --header="waf_exception: <iframe src=\"javascript:alert('Perf Tool Test')\">" \
  9. --content-type="application/x-www-form-urlencoded" \
  10. --concurrent=1 \
  11. --time=10S