forked from rewanthtammana/Detect-phishing-websites-using-ML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
224 lines (183 loc) · 5 KB
/
utils.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import ipaddress
import re
import requests
from datetime import date
from dateutil.parser import parse as date_parse
# Calculates number of months
def diff_month(d1, d2):
return (d1.year - d2.year) * 12 + d1.month - d2.month
# Generate data set by extracting the features from the URL
def generate_data_set(url):
data_set = []
# Converts the given URL into standard format
if not re.match(r"^https?", url):
url = "http://" + url
# Stores the response of the given URL
try:
response = requests.get(url)
except:
response = ""
# Extracts domain from the given URL
domain = re.findall(r"://([^/]+)/?", url)[0]
# Requests all the information about the domain
whois_response = requests.get("https://www.whois.com/whois/"+domain)
rank_checker_response = requests.post("https://www.checkpagerank.net/index.php", {
"name": domain
})
# Extracts global rank of the website
try:
global_rank = int(re.findall(r"Global Rank: ([0-9]+)", rank_checker_response.text)[0])
except:
global_rank = -1
# having_IP_Address
try:
ipaddress.ip_address(url)
data_set.append(1)
except:
data_set.append(-1)
# URL_Length
if len(url) < 54:
data_set.append(1)
elif len(url) >= 54 and len(url) <= 75:
data_set.append(0)
else:
data_set.append(-1)
# Shortining_Service
if re.findall("goo.gl|bit.ly", url):
data_set.append(1)
else:
data_set.append(-1)
# having_At_Symbol
if re.findall("@", url):
data_set.append(1)
else:
data_set.append(-1)
# double_slash_redirecting
if re.findall(r"[^https?:]//",url):
data_set.append(-1)
else:
data_set.append(1)
# Prefix_Suffix
if re.findall(r"https?://[^\-]+-[^\-]+/", url):
data_set.append(-1)
else:
data_set.append(1)
# having_Sub_Domain
if len(re.findall("\.", url)) == 1:
data_set.append(-1)
elif len(re.findall("\.", url)) == 2:
data_set.append(0)
else:
data_set.append(1)
# SSLfinal_State
data_set.append(-1)
# Domain_registeration_length
data_set.append(-1)
# Favicon
data_set.append(-1)
# port
try:
port = domain.split(":")[1]
if port:
data_set.append(1)
else:
data_set.append(-1)
except:
data_set.append(-1)
# HTTPS_token
if re.findall("^https\-", domain):
data_set.append(-1)
else:
data_set.append(1)
# Request_URL
data_set.append(-1)
# URL_of_Anchor
data_set.append(-1)
# Links_in_tags
data_set.append(-1)
# SFH
data_set.append(0)
# Submitting_to_email
if re.findall(r"[mail\(\)|mailto:?]", response.text):
data_set.append(1)
else:
data_set.append(-1)
# Abnormal_URL
if response.text == "":
data_set.append(1)
else:
data_set.append(-1)
# Redirect
if len(response.history) <= 1:
data_set.append(-1)
elif len(response.history) <= 4:
data_set.append(0)
else:
data_set.append(1)
# on_mouseover
if re.findall("<script>.+onmouseover.+</script>", response.text):
data_set.append(1)
else:
data_set.append(-1)
# RightClick
if re.findall(r"event.button ?== ?2", response.text):
data_set.append(1)
else:
data_set.append(-1)
# popUpWidnow
if re.findall(r"alert\(", response.text):
data_set.append(1)
else:
data_set.append(-1)
# Iframe
if re.findall(r"[<iframe>|<frameBorder>]", response.text):
data_set.append(1)
else:
data_set.append(-1)
# age_of_domain
try:
registration_date = re.findall(r'Registration Date:</div><div class="df-value">([^<]+)</div>', whois_response.text)[0]
if diff_month(date.today(), date_parse(registration_date)) >= 6:
data_set.append(-1)
else:
data_set.append(1)
except:
data_set.append(1)
# DNSRecord
data_set.append(-1)
# web_traffic
try:
if global_rank > 0 and global_rank < 100000:
data_set.append(-1)
else:
data_set.append(1)
except:
data_set.append(1)
# Page_Rank
try:
if global_rank > 0 and global_rank < 100000:
data_set.append(-1)
else:
data_set.append(1)
except:
data_set.append(1)
# Google_Index
try:
if global_rank > 0 and global_rank < 100000:
data_set.append(-1)
else:
data_set.append(1)
except:
data_set.append(1)
# Links_pointing_to_page
number_of_links = len(re.findall(r"<a href=", response.text))
if number_of_links == 0:
data_set.append(1)
elif number_of_links <= 2:
data_set.append(0)
else:
data_set.append(-1)
# Statistical_report
data_set.append(-1)
print data_set
return data_set