Skip to content

Commit 14271b4

Browse files
committed
Code
1 parent 2b9cb43 commit 14271b4

File tree

4 files changed

+71
-0
lines changed

4 files changed

+71
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
e
2+
e.zip

mass-isgd.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
magic_array = []
2+
3+
import requests
4+
import time
5+
6+
url = "https://is.gd/create.php"
7+
8+
headers = {
9+
'User-Agent': "FeelsBad/1.0",
10+
'Accept': "*/*",
11+
'Cache-Control': "no-cache",
12+
'Host': "is.gd",
13+
'Accept-Encoding': "gzip, deflate",
14+
'Connection': "keep-alive",
15+
'cache-control': "no-cache"
16+
}
17+
18+
counter = 0
19+
20+
for shortlink in magic_array:
21+
counter = counter + 1
22+
print("Now on", counter, "for URL", shortlink)
23+
querystring = {"format":"simple","url":"https://www.tudrme.com","shorturl":shortlink}
24+
response = requests.request("GET", url, headers=headers, params=querystring)
25+
if not (shortlink in response.text):
26+
print("Something went wrong!")
27+
time.sleep(20)

mass-qrcode.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
magic_array = []
2+
3+
import qrcode
4+
5+
for url in magic_array:
6+
print("Now encoding", url)
7+
img = qrcode.make('https://link.tudrme.com/' + url)
8+
img.save('e/' + url + '.png', 'PNG')

mass-tudrme.py

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
isgd_array = []
2+
3+
addresses = []
4+
5+
import requests
6+
7+
url = ""
8+
9+
headers = {
10+
"Accept": "application/json, text/javascript, */*; q=0.01",
11+
"Accept-Encoding": "gzip, deflate, br",
12+
"Accept-Language": "en-US,en;q=0.9,zh-TW;q=0.8,zh;q=0.7",
13+
"Cache-Control": "no-cache",
14+
"Connection": "keep-alive",
15+
"Cookie": "",
16+
"DNT": "1",
17+
"Host": "",
18+
"Pragma": "no-cache",
19+
"Referer": "",
20+
"Sec-Fetch-Mode": "cors",
21+
"Sec-Fetch-Site": "same-origin",
22+
"User-Agent": "",
23+
"X-Requested-With": "XMLHttpRequest"
24+
}
25+
26+
value = 0
27+
28+
for isgd_link in isgd_array:
29+
querystring = {"action":"add","url":isgd_link,"keyword":addresses[value],"nonce":""}
30+
response = requests.request("GET", url, headers=headers, params=querystring)
31+
value = value + 1
32+
print("URL VALUE ON", value, "ADDED WITH CODE",addresses[value - 1])
33+
34+
print(response.text)

0 commit comments

Comments
 (0)