-
Notifications
You must be signed in to change notification settings - Fork 12
/
netizenship.py
209 lines (176 loc) · 6.88 KB
/
netizenship.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#!/usr/bin/python3
"""
Tool to automatically check the membership of a given username
in popular websites.
Inspired by:
https://github.com/thelinuxchoice/userrecon/blob/master/userrecon.sh
MIT License
Copyright (c) 2020 Rahul Raj
"""
import requests
from termcolor import colored
from bs4 import BeautifulSoup
from multiprocessing.pool import ThreadPool
from pyfiglet import figlet_format
import json
import urllib.request
try:
from importlib.metadata import version
except ImportError:
from importlib_metadata import version
from distutils.version import LooseVersion
def check_latest_version():
name = 'netizenship'
installed_version = LooseVersion(version(name))
# fetch package metadata from PyPI
pypi_url = f'https://pypi.org/pypi/{name}/json'
response = urllib.request.urlopen(pypi_url).read().decode()
latest_version = max(LooseVersion(s) for s in json.loads(response)['releases'].keys())
print(f'Current version: {installed_version}')
if not installed_version == latest_version:
print(f'Version {latest_version} available. To continue using the '
'tool, run "sudo pip3 install --upgrade netizenship"')
exit()
def main():
def banner(text, ch='=', length=78):
spaced_text = ' %s ' % text
banner = spaced_text.center(length, ch)
print(banner)
ascii_banner = figlet_format('Netizenship')
print(ascii_banner)
# Check the version status.
check_latest_version()
banner_text = "MIT License, Copyright (c) 2020 Rahul Raj"
banner(banner_text)
wiki_link = 'https://en.wikipedia.org/wiki/List_of_HTTP_status_codes'
uname = input("Enter username: ")
width = 15 # to pretty print
global counter
counter = 0 # to count no of success
page = requests.get(wiki_link)
soup = BeautifulSoup(page.content, 'html.parser')
user_agent = ('Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) '
'AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130'
' Mobile Safari/537.36')
headers = {'user-agent': user_agent}
def get_website_membership(site):
def print_fail():
print(site.rjust(width), ':', colored(state.ljust(width//2), 'red'), '(Status:', msg, ')')
def print_success():
print(site.rjust(width), ':', colored(state.ljust(width//2), 'green'), '(Status:', msg, ')')
url = websites[site]
global counter
state = "FAIL"
msg = '--exception--'
if not url[:1] == 'h':
link = 'https://'+uname+url
else:
link = url+uname
try:
if site == 'Youtube' or 'Twitter':
response = requests.get(link)
else:
response = requests.get(link, headers=headers)
tag = soup.find(id=response.status_code)
msg = tag.find_parent('dt').text
response.raise_for_status()
except Exception:
print_fail()
else:
res_soup = BeautifulSoup(response.content, 'html.parser')
if site == 'Pastebin':
if len(res_soup.find_all('h1')) == 0:
msg = 'broken URL'
print_fail()
else:
state = 'SUCCESS'
counter += 1
print_success()
elif site == 'Wordpress':
if 'doesn’t exist' or 'blocked' in res_soup:
msg = 'broken URL'
print_fail()
else:
state = 'SUCCESS'
counter += 1
print_success()
# elif site == 'Imgur':
# ToDo
elif site == 'GitLab':
if 'Sign in' in res_soup.title.text:
msg = 'broken URL'
print_fail()
else:
state = 'SUCCESS'
counter += 1
print_success()
elif site == 'HackerNews':
if 'No such user.' in res_soup:
msg = 'No Such User!'
print_fail()
else:
state = 'SUCCESS'
counter += 1
print_success()
elif site == 'ProductHunt':
if 'Page Not Found' in res_soup.text:
msg = 'No Such User!'
print_fail()
else:
state = 'SUCCESS'
counter += 1
print_success()
else:
state = 'SUCCESS'
counter += 1
print_success()
websites = {
'Facebook': 'https://www.facebook.com/',
'Twitter': 'https://twitter.com/',
'Instagram': 'https://www.instagram.com/',
'Youtube': 'https://www.youtube.com/user/',
# 'Reddit': 'https://www.reddit.com/user/', To Do
'ProductHunt': 'https://www.producthunt.com/@',
'PInterest': 'https://www.pinterest.com/',
'Flickr': 'https://www.flickr.com/people/',
'Vimeo': 'https://vimeo.com/',
'Soundcloud': 'https://soundcloud.com/',
'Disqus': 'https://disqus.com/',
'Medium': 'https://medium.com/@',
'AboutMe': 'https://about.me/',
# 'Imgur': 'https://imgur.com/user/', returns a landing page. to do
'Flipboard': 'https://flipboard.com/',
'Slideshare': 'https://slideshare.net/',
'Spotify': 'https://open.spotify.com/user/',
'Scribd': 'https://www.scribd.com/',
'Patreon': 'https://www.patreon.com/',
'BitBucket': 'https://bitbucket.org/',
'GitLab': 'https://gitlab.com/',
'Github': 'https://www.github.com/',
'GoodReads': 'https://www.goodreads.com/',
'Instructable': 'https://www.instructables.com/member/',
'CodeAcademy': 'https://www.codecademy.com/',
'Gravatar': 'https://en.gravatar.com/',
'Pastebin': 'https://pastebin.com/u/',
'FourSquare': 'https://foursquare.com/',
'TripAdvisor': 'https://tripadvisor.com/members/',
'Wikipedia': 'https://www.wikipedia.org/wiki/User:',
'HackerNews': 'https://news.ycombinator.com/user?id=',
'CodeMentor': 'https://www.codementor.io/',
'Trip': 'https://www.trip.skyscanner.com/user/',
'Blogger': '.blogspot.com',
'Wordpress': '.wordpress.com',
'Tumbler': '.tumblr.com',
# 'Deviantart': '.deviantart.com"',
# ^ This website is either blocking/delaying the script
'LiveJournel': '.livejournal.com',
'Slack': '.slack.com',
}
p = ThreadPool(10)
p.map(get_website_membership, list(websites.keys()))
n_websites = len(list(websites.keys()))
print('Summary: User {} has membership in {}/{} websites'
.format(uname, counter, n_websites))
banner('completed')
if __name__ == '__main__':
main()