├── README.md └── ProxyChecker.py /README.md: -------------------------------------------------------------------------------- 1 | # ProxyChecker 2 | Check Your ProxyList Now !! 3 | 4 | DownLoad : 5 | 6 | git clone https://github.com/KalidOp/ProxyChecker.git 7 | 8 | python3 ProxyChecker.py 9 | 10 | Coded By OpHacker 11 | -------------------------------------------------------------------------------- /ProxyChecker.py: -------------------------------------------------------------------------------- 1 | def Tool (): 2 | import random 3 | 4 | from time import sleep 5 | 6 | import requests 7 | Red = "\033[1;31;31m" 8 | 9 | GREEN = "\033" 10 | 11 | Color = "\033[1;30;32m" 12 | print(''' 13 | 8888888b. .d8888b. 888 888 14 | 888 Y88b d88P Y88b 888 888 15 | 888 888 888 888 888 888 16 | 888 d88P 888d888 .d88b. 888 888 888 888 888 88888b. .d88b. .d8888b 888 888 .d88b. 888d888 17 | 8888888P" 888P" d88""88b `Y8bd8P' 888 888 888 888 "88b d8P Y8b d88P" 888 .88P d8P Y8b 888P" 18 | 888 888 888 888 X88K 888 888 888 888 888 888 88888888 888 888888K 88888888 888 19 | 888 888 Y88..88P .d8""8b. Y88b 888 Y88b d88P 888 888 Y8b. Y88b. 888 "88b Y8b. 888 20 | 888 888 "Y88P" 888 888 "Y88888 "Y8888P" 888 888 "Y8888 "Y8888P 888 888 "Y8888 888 21 | 888 22 | Y8b d88P 23 | "Y88P" 24 | . 25 | . . .'. \ / 26 | \ / .'. .' '.' ' -= o =- 27 | -= o =- .' ' / | \ 28 | / | \ | 29 | | | 30 | | | 31 | | |''') 32 | Password015 = "ASDFGHJKL1234567890" 33 | passwordlen15 = 4 34 | password543 = "".join(random.sample(Password015, passwordlen15)) 35 | Sy_File = ".txt" 36 | all1 = password543 + Sy_File 37 | print(Color + '''[+] insta : t8qu_ & 00017z''') 38 | print(Color+"Coded By OpHacker") 39 | 40 | IP_TARGET = input("[+] Enter Your Proxy file : ") 41 | 42 | file = IP_TARGET 43 | 44 | Prox = open(file, "r") 45 | 46 | for Proxy in Prox: 47 | try: 48 | Req = requests.get("https://ipinfo.io/" + Proxy) 49 | if (' "message": "Please provide a valid IP address"') in Req.text: 50 | print(Red + "[-] IS OFLINE ---> ", Proxy) 51 | else: 52 | f = open(all1, "a") 53 | f.write(Proxy) 54 | f.close() 55 | print(Color + "[+] IS ONLINE ---> ", Proxy) 56 | except: 57 | print(" You Have Error ") 58 | print(Red+"------/------") 59 | print(Color+"ONLINE IP SAVED HERE ---> ", all1) 60 | Ag = input(Color+"[+] again y/n : ") 61 | if Ag == "y": 62 | Tool() 63 | if Ag == "n": 64 | print(Color+"GoodBay...") 65 | sleep(3) 66 | exit() 67 | else: 68 | print(Red+" You Have Error ") 69 | Tool() --------------------------------------------------------------------------------