-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp.py
101 lines (78 loc) · 2.28 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
from flask import Flask, render_template, request
from selenium import webdriver
from selenium.webdriver import FirefoxOptions
from selenium.webdriver.common.keys import Keys
import time
app = Flask(__name__)
@app.route("/")
def form():
return render_template("form.html")
@app.route("/", methods=["POST"])
def my_form_post():
url = request.form["url"]
opts = FirefoxOptions()
opts.add_argument("--headless")
browser = webdriver.Firefox(firefox_options=opts)
_take = url
removable1,removable2 = '''"https://","http://"'''
if removable1 in _take:
_take = _take.replace('https://', '')
elif removable2 in _take:
_take = _take.replace('http://', '')
else:
_take = _take
browser.get("https://" + _take)
time.sleep(3)
# print(browser.current_url)
_toMatch = browser.current_url
time.sleep(1)
browser.quit()
# searching algorithm
def KMPSearch(pat, txt):
M = len(pat)
N = len(txt)
lps = [0] * M
j = 0 # index for pat[]
computeLPSArray(pat, M, lps)
i = 0 # index for txt[]
while i < N:
if pat[j] == txt[i]:
i += 1
j += 1
if j == M:
# Return value to use it
return 100
j = lps[j - 1]
elif i < N and pat[j] != txt[i]:
if j != 0:
j = lps[j - 1]
else:
i += 1
def computeLPSArray(pat, M, lps):
len = 0
lps[0] # lps[0] is always 0
i = 1
while i < M:
if pat[i] == pat[len]:
len += 1
lps[i] = len
i += 1
else:
if len != 0:
len = lps[len - 1]
else:
lps[i] = 0
i += 1
txt = str(_toMatch)
pat = "ngrok.io"
#KMPSearch(pat, txt)
if KMPSearch(pat, txt) == 100:
status = "It is a Phishing Link, Don't visit"
else:
status = "It is a Safe Link, You can go"
urlInfo = _take
return render_template("form.html",
urlUpdate=urlInfo,
stausUpdate=status)
if __name__ == "__main__":
app.run(debug=True)