-
Notifications
You must be signed in to change notification settings - Fork 67
/
shotlooter.py
234 lines (206 loc) · 8.73 KB
/
shotlooter.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
225
226
227
228
229
230
231
232
233
234
'''
___
.-`` ``-.
.' '.
/ | Utku Sen's
| __ __ | .-. . . . .
' /|_/| ' ( )| _|_ | _|_
| ___|O_O/___ / `-. |--. .-. | | .-. .-. | .-. .--.
|/ ___ |/ ( )| |( )| | ( )( )| (.-' |
( (___) ) `-' ' `-`-' `-''---'`-' `-' `-'`--''
| /|_/| / utkusen.com / twitter.com/utkusen
| |._.| /
| | | /
|/ |/
'''
import requests
from bs4 import BeautifulSoup
import string
import argparse as parser
from PIL import Image
import pytesseract
import re
import math
import os
from signal import signal, SIGINT
import sys
import unicodedata
import numpy as np
import imutils
import cv2
import argparse
from os import listdir
from os.path import isfile, join
from colorama import init
from termcolor import colored
init()
def handler(signal_received, frame):
sys.exit(0)
headers = {
'cache-control': 'max-age=0',
'upgrade-insecure-requests': '1',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',
'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
'accept-encoding': 'gzip, deflate',
'accept-language': 'en-GB,en-US;q=0.9,en;q=0.8'
}
code_chars = list(string.ascii_lowercase) + ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]
base = len(code_chars)
# searches for a template(small image) in a image, returns True if found, False if not found
def template_match(fname_template, fname_image):
template0 = cv2.imread(fname_template)
template = cv2.cvtColor(template0, cv2.COLOR_BGR2GRAY)
template = cv2.Canny(template, 50, 200)
(tH, tW) = template.shape[:2]
image = cv2.imread(fname_image)
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
found = None
isFound = False
for scale in np.linspace(0.2, 1.0, 20)[::-1]:
resized = imutils.resize(gray, width=int(gray.shape[1] * scale))
r = gray.shape[1] / float(resized.shape[1])
if resized.shape[0] < tH or resized.shape[1] < tW:
break
edged = cv2.Canny(resized, 50, 200)
result = cv2.matchTemplate(edged, template, cv2.TM_CCORR_NORMED)
(minVal, maxVal, minLoc, maxLoc) = cv2.minMaxLoc(result)
if found is None or maxVal > found[0]:
found0 = (maxVal, maxLoc, r)
result = cv2.matchTemplate(edged, template, cv2.TM_CCOEFF_NORMED)
(minVal, maxVal, minLoc, maxLoc) = cv2.minMaxLoc(result)
(startX, startY) = (int(maxLoc[0] * r), int(maxLoc[1] * r))
(endX, endY) = (int((maxLoc[0] + tW) * r), int((maxLoc[1] + tH) * r))
img = image[startY:endY, startX:endX]
height, width = template.shape[:2]
img = cv2.resize(img, (width, height))
img1, img2 = img, template0
result = cv2.matchTemplate(img1, img2, cv2.TM_CCOEFF_NORMED)
minVal, maxVal, minLoc, maxLoc = cv2.minMaxLoc(result)
if maxVal >= 0.48:
found = (maxVal, maxLoc, r)
isFound = True
found = found0
return isFound
# prnt.sc parser codes mostly borrowed from https://github.com/mitchelljy/Prntsc_Scraper
def digit_to_char(digit):
if digit < 10:
return str(digit)
return chr(ord('a') + digit - 10)
def str_base(number, base):
if number < 0:
return '-' + str_base(-number, base)
(d, m) = divmod(number, base)
if d > 0:
return str_base(d, base) + digit_to_char(m)
return digit_to_char(m)
def next_code(curr_code):
curr_code_num = int(curr_code, base)
return str_base(curr_code_num + 1, base)
def get_img_url(code):
html = requests.get(f"https://prnt.sc/{code}", headers=headers).text
soup = BeautifulSoup(html, 'lxml')
img_url = soup.find_all('img', {'class': 'no-click screenshot-image'})
return img_url[0]['src']
def get_img(url, path):
response = requests.get(url)
if response.status_code == 200:
with open(f"{path}.png", 'wb') as f:
f.write(response.content)
#https://github.com/joshleeb/creditcard/blob/master/creditcard/luhn.py
def get_check_digit(unchecked):
digits = digits_of(unchecked)
checksum = sum(even_digits(unchecked)) + sum([
sum(digits_of(2 * d)) for d in odd_digits(unchecked)])
return 9 * checksum % 10
def is_valid_cc(number):
if len(number) != 16:
return False
n = str(number)
if not n.isdigit():
return False
return int(n[-1]) == get_check_digit(n[:-1])
def digits_of(number):
return [int(d) for d in str(number)]
def even_digits(number):
return list(map(int, str(number)[-2::-2]))
def odd_digits(number):
return list(map(int, str(number)[-1::-2]))
def hasNumbers(inputString):
return any(char.isdigit() for char in inputString)
def entropy(string):
prob = [float(string.count(c)) / len(string) for c in dict.fromkeys(list(string))]
entropy = - sum([p * math.log(p) / math.log(2.0) for p in prob])
return entropy
def action(code,imagedir,no_entropy,no_cc,no_keyword):
keywords = []
numbers = re.compile('\d+(?:\.\d+)?')
with open("keywords.txt", "r") as f:
for line in f:
line_rstripped = line.rstrip()
if line_rstripped:
keywords.append(line_rstripped.lower())
while True:
code = next_code(code)
try:
flag = False
img_path = os.getcwd()+"/output/"+code
url = get_img_url(code)
get_img(url, img_path)
print("Analyzing: " +code)
image_text = pytesseract.image_to_string(Image.open(img_path+".png"))
if no_keyword is None:
for word in keywords:
if word.lower() in image_text.lower():
print(colored("Keyword Match: " + word,"green"))
with open("findings.csv","a+") as f:
f.write("keyword,"+word+","+code)
f.write("\n")
flag = True
image_words = image_text.split()
for word in image_words:
if no_cc is None:
if hasNumbers(word):
number = numbers.findall(word)
if is_valid_cc(number[0]):
print(colored("Credit Card Detected: " + number[0],"yellow"))
with open("findings.csv", "a+") as f:
f.write("credit_card,"+number[0]+","+code)
f.write("\n")
flag = True
if no_entropy is None:
if entropy(unicodedata.normalize('NFKD', word).encode('ascii','ignore').decode('utf-8')) >= 4.5 and "http" not in word and "/" not in word and len(word) < 65:
print(colored("High Entropy Detected: " + word,"magenta"))
with open("findings.csv","a+") as f:
f.write("entropy,"+word+","+code)
f.write("\n")
flag = True
if imagedir is not None:
files = [f for f in listdir(imagedir) if isfile(join(imagedir, f))]
for file in files:
if ".png" in file or ".jpg" in file:
is_found = template_match(imagedir + "/" + file, img_path+".png")
if is_found:
print(colored("Image Match Detected: " + file, 'cyan'))
with open("findings.csv", "a+") as f:
f.write("image," + file + "," + code)
f.write("\n")
flag = True
if not flag:
os.remove(img_path+".png")
except Exception as e:
print(e)
signal(SIGINT, handler)
parser = argparse.ArgumentParser()
parser.add_argument('--code', action='store', dest='code', help='Start code for prnt.sc', required=True)
parser.add_argument('--imagedir', action='store', dest='imagedir', help='Image directory for logo search', default=None)
parser.add_argument('--no-entropy', action='store_true', dest='no_entropy', help="Don't search for high entropy", default=None)
parser.add_argument('--no-cc', action='store_true', dest='no_cc', help="Don't search for credit card", default=None)
parser.add_argument('--no-keyword', action='store_true', dest='no_keyword', help="Don't search for keywords", default=None)
argv = parser.parse_args()
if argv.no_entropy:
argv.no_entropy = True
if argv.no_cc:
argv.no_cc = True
if argv.no_keyword:
argv.no_keyword = True
action(argv.code,argv.imagedir,argv.no_entropy,argv.no_cc,argv.no_keyword)