Skip to content

Instantly share code, notes, and snippets.

@marz-hunter
Forked from fransr/customcsrf.py
Created March 30, 2021 22:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marz-hunter/120d8bbece314f98c5ff3441683d6d0e to your computer and use it in GitHub Desktop.
Save marz-hunter/120d8bbece314f98c5ff3441683d6d0e to your computer and use it in GitHub Desktop.
Hackvertor Custom CSRF tag
import httplib
import urllib
http = httplib.HTTPSConnection('example.com', 443)
cookie = 'your=cookies';
http.request("GET", "/api/v1/csrf", "", {
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36',
'referer': 'https://example.com/',
'cookie': cookie
})
content = http.getresponse()
data = content.getheader('x-csrf-token')
output = str(data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment