You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppInfoScanner/libs/core/parses.py

126 lines
4.5 KiB

#! /usr/bin/python3
4 years ago
# -*- coding: utf-8 -*-
# Author: kelvinBen
# Github: https://github.com/kelvinBen/AppInfoScanner
import re
import os
import config
import threading
4 years ago
import libs.core as cores
class ParsesThreads(threading.Thread):
def __init__(self, threadID, name, file_queue, result_dict, types):
threading.Thread.__init__(self)
4 years ago
self.file_queue = file_queue
self.name = name
self.threadID = threadID
self.result_list = []
self.result_dict = result_dict
self.types = types
def __regular_parse__(self):
4 years ago
while True:
if self.file_queue.empty():
4 years ago
break
file_path = self.file_queue.get(timeout=5)
scan_str = ("[+] Scan file : %s" % file_path)
if self.types == "iOS":
self.__get_string_by_iOS__(file_path)
else:
self.__get_string_by_file__(file_path)
result_set = set(self.result_list)
if len(result_set) != 0:
self.result_dict[file_path] = result_set
def __get_string_by_iOS__(self, file_path):
output_path = cores.output_path
strings_path = cores.strings_path
temp = os.path.join(output_path, "temp.txt")
cmd_str = ('"%s" "%s" > "%s"') % (
str(strings_path), str(file_path), str(temp))
if os.system(cmd_str) == 0:
with open(temp, "r", encoding='utf-8', errors='ignore') as f:
lines = f.readlines()
for line in lines:
self.__parse_string__(line)
4 years ago
def __get_string_by_file__(self, file_path):
with open(file_path, "r", encoding="utf8", errors='ignore') as f:
file_content = f.read()
4 years ago
# 获取到所有的字符串
pattern = re.compile(r'\"(.*?)\"')
4 years ago
results = pattern.findall(file_content)
# 搜素AK和SK信息,由于iOS的逻辑处理效率过慢暂时忽略对iOS的AK检测
if not (".js" == file_path[-3:] and self.types == "iOS"):
# 未包含相关字段不进行ak或者sk信息采集
if "access" in file_content or "secret" in file_content:
for key, values in config.filter_ak_map.items():
if isinstance(values, list):
for value in values:
self.__ak_and_sk__(key, value, file_content)
else:
self.__ak_and_sk__(key, values, file_content)
4 years ago
# 遍历所有的字符串
for result in set(results):
if ("http://" == result) or ("https://" == result) or result.startswith("https://.") or result.startswith("http://.") :
continue
self.__parse_string__(result)
def __ak_and_sk__(self, name, ak_rule, content):
akAndSkList = re.compile(ak_rule).findall(content)
for akAndSk in akAndSkList:
ak = ("[%s]-->:%s") % (name, akAndSk.strip())
self.result_list.append(ak)
print(("[+] [%s] AK or SK in %s:") % (name, akAndSk.strip()))
def __parse_string__(self, result):
4 years ago
# 通过正则筛选需要过滤的字符串
for filter_str in config.filter_strs:
filter_str_pat = re.compile(filter_str)
4 years ago
filter_resl = filter_str_pat.findall(result)
# 过滤掉未搜索到的内容
if len(filter_resl) != 0:
4 years ago
# 提取第一个结果
4 years ago
resl_str = filter_resl[0]
# 过滤
if self.__filter__(resl_str) == 0:
continue
self.threadLock.acquire()
if cores.all_flag:
print(
("[+] The string searched for matching rule is: %s") % (resl_str))
self.result_list.append(resl_str)
self.threadLock.release()
4 years ago
continue
def __filter__(self, resl_str):
return_flag = 1
resl_str = resl_str.replace("\r", "").replace(
"\n", "").replace(" ", "")
4 years ago
if len(resl_str) == 0:
return 0
for filte in set(config.filter_no):
resl_str = resl_str.replace(filte, "")
4 years ago
if len(resl_str) == 0:
return_flag = 0
4 years ago
continue
if re.match(filte, resl_str):
return_flag = 0
4 years ago
continue
return return_flag
4 years ago
def run(self):
self.threadLock = threading.Lock()
self.__regular_parse__()