Skip to content

Instantly share code, notes, and snippets.

@erev0s
Created September 6, 2018 16:02
Show Gist options
  • Save erev0s/1b73104d986131cf4bb626ee076c9353 to your computer and use it in GitHub Desktop.
Save erev0s/1b73104d986131cf4bb626ee076c9353 to your computer and use it in GitHub Desktop.
http verb tampering check, you can use it like ===> ./verbtamp.sh http://google.com
#!/bin/bash
for method in GET HEAD POST PUT DELETE CONNECT OPTIONS TRACE; do
echo curl -v -X $method $1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment