-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.py
223 lines (189 loc) · 6.12 KB
/
app.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
import streamlit as st
import numpy as np
import pickle
from urllib.parse import urlparse
import requests
from urllib.parse import urlparse
from datetime import datetime
import re
from requests.exceptions import SSLError, Timeout # Add this import for SSLError and Timeout
def get_domain(url):
domain = urlparse(url).netloc
if re.match(r"^www.",domain):
domain = domain.replace("www.","")
return domain
def having_ip(url):
try:
ipaddress.ip_address(url)
ip = 1
except:
ip = 0
return ip
def have_at_sign(url):
if "@" in url:
at = 1
else:
at = 0
return at
def get_length(url):
if len(url) < 54:
length = 0
else:
length = 1
return length
def get_depth(url):
s = urlparse(url).path.split('/')
depth = 0
for j in range(len(s)):
if len(s[j]) != 0:
depth = depth+1
return depth
def redirection(url):
pos = url.rfind('//')
if pos > 6:
if pos > 7:
return 1
else:
return 0
else:
return 0
def http_domain(url):
domain = urlparse(url).netloc
if 'https' in domain:
return 1
else:
return 0
def tiny_url(url):
shortening_services = r"bit\.ly|goo\.gl|shorte\.st|go2l\.ink|x\.co|ow\.ly|t\.co|tinyurl|tr\.im|is\.gd|cli\.gs|" \
r"yfrog\.com|migre\.me|ff\.im|tiny\.cc|url4\.eu|twit\.ac|su\.pr|twurl\.nl|snipurl\.com|" \
r"short\.to|BudURL\.com|ping\.fm|post\.ly|Just\.as|bkite\.com|snipr\.com|fic\.kr|loopt\.us|" \
r"doiop\.com|short\.ie|kl\.am|wp\.me|rubyurl\.com|om\.ly|to\.ly|bit\.do|t\.co|lnkd\.in|db\.tt|" \
r"qr\.ae|adf\.ly|goo\.gl|bitly\.com|cur\.lv|tinyurl\.com|ow\.ly|bit\.ly|ity\.im|q\.gs|is\.gd|" \
r"po\.st|bc\.vc|twitthis\.com|u\.to|j\.mp|buzurl\.com|cutt\.us|u\.bb|yourls\.org|x\.co|" \
r"prettylinkpro\.com|scrnch\.me|filoops\.info|vzturl\.com|qr\.net|1url\.com|tweez\.me|v\.gd|" \
r"tr\.im|link\.zip\.net"
match=re.search(shortening_services,url)
if match:
return 1
else:
return 0
def prefix_suffix(url):
if '-' in urlparse(url).netloc:
return 1
else:
return 0
def web_traffic(url):
try:
querystring = {"domain": url}
headers = {
"X-RapidAPI-Key": "cd4733fedbmsh6f2cfc21cf195f2p1d088djsn84e6c824c74e",
"X-RapidAPI-Host": "similar-web.p.rapidapi.com"
}
response = requests.get("https://similar-web.p.rapidapi.com/get-analysis", headers=headers, params=querystring)
data = response.json()
rank = data['GlobalRank']['Rank']
rank = int(rank)
except (requests.exceptions.RequestException, ValueError, KeyError):
rank = 1
if rank < 100000:
return 1
else:
return 0
def iframe(response):
if response == "":
return 1
else:
if re.findall(r"[<iframe>|<frameBorder>]", response.text):
return 0
else:
return 1
def mouse_over(response):
if response == "" :
return 1
else:
if re.findall("<script>.+onmouseover.+</script>", response.text):
return 1
else:
return 0
def right_click(response):
if response == "":
return 1
else:
if re.findall(r"event.button ?== ?2", response.text):
return 0
else:
return 1
def forwarding(response):
if response == "":
return 1
else:
if len(response.history) <= 2:
return 0
else:
return 1
def get_http_response(url):
try:
response = requests.get(url, timeout=5) # Set a timeout of 5 seconds
return response
except requests.exceptions.RequestException as e:
st.error(f"Error: {e}")
return None
def extract_features(url):
features = []
# Address bar based features
features.append(having_ip(url))
features.append(have_at_sign(url))
features.append(get_length(url))
features.append(get_depth(url))
features.append(redirection(url))
features.append(http_domain(url))
features.append(tiny_url(url))
features.append(prefix_suffix(url))
# Domain based features
dns = 0
dns_age = 0
dns_end = 0
features.append(dns)
features.append(dns_age)
features.append(dns_end)
features.append(web_traffic(url))
response = get_http_response(url)
# HTML & Javascript based features
if response is not None:
features.append(iframe(response))
features.append(mouse_over(response))
features.append(right_click(response))
features.append(forwarding(response))
else:
# If response is None, set these features to 0 or None
features.extend([0, 0, 0, 0])
return features
def predict_phishing(features):
# Load the model
with open('mlp_model.pkl', 'rb') as file:
loaded_model = pickle.load(file)
# Make predictions
new_data = np.array([features])
prediction = loaded_model.predict(new_data)
return prediction
def main():
st.title('Phishing URL Detector')
st.write("Enter a URL to check if it's phishing or not.")
# Input URL
url = st.text_input("Enter URL:")
if st.button("Check"):
# Extract features
st.write("Extracting features...")
features = extract_features(url)
# Make prediction
st.write("Predicting...")
prediction = predict_phishing(features)
# Display prediction
if prediction[0] == 0:
st.write("Prediction made:")
st.error("Phishing Alert! This URL is classified as phishing.")
else:
st.write("Predicting made:")
st.success("No Phishing Detected. This URL seems safe.")
if __name__ == '__main__':
main()