-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript.py
25 lines (25 loc) · 920 Bytes
/
Script.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import requests
import time
print('''
========================================================================
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
========================================================================
www.facebook.com/sadikul.official || Never Give UP
========================================================================
''')
file = str(input("Enter Your File Name: ")).strip()
print("[=] Loading Please wait...")
print("\n")
with open(file , "r") as urls:
for url in urls:
print(url.strip())
response = requests.get(url.strip())
if response.status_code == 200:
print("[=] Status 200 ==> OK")
save = open("Live.txt" , "a").writelines(url)
print("[=] Saved !!!")
print("\n")
else:
print("False")
print("\n")
input("[+] Press Enter To Exit")