-
Notifications
You must be signed in to change notification settings - Fork 12
/
proxy-finder.py
81 lines (50 loc) · 1.7 KB
/
proxy-finder.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python
# -*- coding: utf-8
Green="\033[1;33m"
Blue="\033[1;34m"
Grey="\033[1;30m"
Reset="\033[0m"
Red="\033[1;31m"
Purple="\033[0;35m"
print " "+Green+" ############################"
print " "+Green+" PROXY FINDER FOR 1001_ACCOUNT"
print " "+Green+" ############################"
print " "+Green+" [+]: Developer: SABRI ZAKI :[+]"
print " "+Green+" ############################"
print ""
print " "+Grey+" █║║║║║║║║║║║║║║║║║║║║║║║║║║║║║║║║║█"
print " "+Green+" 1001_ACCOUNT WAS HEAR"
print " "+Blue+""
import time
import itertools
import threading
import sys
done = False
def animate():
for c in itertools.cycle(['|', '/', '-', '\\']):
if done:
break
sys.stdout.write('\rWAIT A MOMENT I WILL DO IT QUICKLY ' + c)
sys.stdout.flush()
time.sleep(0.1)
sys.stdout.write('')
t = threading.Thread(target=animate)
t.start()
time.sleep(10)
done = True
print ""+Purple+"---> I FOUND THESE......."
time.sleep(3)
print""+Blue+""
import requests
from bs4 import BeautifulSoup
proxyDomain = "https://free-proxy-list.net"
system = requests.get(proxyDomain)
mranonymous_systemSoup = BeautifulSoup(system.content,'html.parser')
sosBlackhats = mranonymous_systemSoup.find('table',{"id" : "proxylisttable"})
for row in sosBlackhats.find_all('tr'):
columns = row.find_all('td')
try:
print "%s:%s\t%-20s\t%-10s" % (columns[0].get_text(),columns[1].get_text(),columns[3].get_text(),columns[4].get_text())
except:
pass
print" "+Grey+" JUST RUN ME ANYTIME, I WILL REFRESH PROXY LIST < join US on #1001_ACOOUNT GROUP= facebook >"