vanth/bin/test-login
Eli Ribble 79b2bf0f1f Add a bunch of files I don't recognize
I'm cleaning up my machine, these were here, I'm not sure which ones
matter
2024-09-15 14:20:25 -07:00

7 lines
225 B
Python
Executable file

#!/usr/bin/env python3
import requests
import sys
payload = {'username': 'eliribble', 'password': sys.argv[1]}
response = requests.post('http://www.vanth.com/login/', data=payload)
print(response.status_code, response.text)