1. 临时修复IPA无法解析问题

2. 增加星联计划标识
3. 添加作者联系方式
v1.0.8
kelvinBen 4 years ago
parent 9c67caaa5b
commit e8c12166a0
  1. 22
      README.md
  2. 3
      libs/task/download_task.py
  3. 6
      libs/task/ios_task.py
  4. 1
      requirements.txt
  5. BIN
      wechat.jpg

@ -1,3 +1,6 @@
![Language](https://img.shields.io/badge/Language-Python3-blue) ![License](https://img.shields.io/badge/License-GPL3.0-orange)
该项目目前仅仅是规划项目中的冰山一角,如果您对此项目感兴趣或者想参与后继项目的开发工作或者翻译工作中,请发送邮件至blsm@vip.qq.com说明你的能力和诉求。
### AppInfoScanner
@ -370,4 +373,21 @@ method: 用于配置自动下载过程中需要的请求方法
```
请将错误截图以及对应的APK文件提交至 https://github.com/kelvinBen/AppInfoScanner/issues,作者看到后会及时进行处理。
```
```
## 联系作者
**微信**:bromomo (添加好友请备注:GitHub)
**邮箱**:blsm@vip.qq.com
提交需求、提交BUG修复、技术交流、商务合作均可添加作者好友。
# 404StarLink 2.0 - Galaxy
![](https://github.com/knownsec/404StarLink-Project/raw/master/logo.png)
AppInfoScanner 是 404Team [星链计划2.0](https://github.com/knownsec/404StarLink2.0-Galaxy)中的一环,如果对AppInfoScanner 有任何疑问又或是想要找小伙伴交流,可以参考星链计划的加群方式。
[https://github.com/knownsec/404StarLink2.0-Galaxy#community](https://github.com/knownsec/404StarLink2.0-Galaxy#community)

@ -30,12 +30,10 @@ class DownloadTask(object):
else:
types = "WEB"
file_name = create_time + ".html"
if not(path.startswith("http://") or path.startswith("https://")):
if not os.path.isdir(path): # 不是目录
return {"path":path,"type":types}
else: # 目录处理
return {"path":path,"type":types}
else:
print("[*] Detected that the task is not local, preparing to download file......")
@ -44,5 +42,4 @@ class DownloadTask(object):
thread.start()
thread.join()
print()
return {"path":cache_path,"type":types}

@ -93,9 +93,9 @@ class iOSTask(object):
except UnicodeEncodeError:
new_zip_file = zip_file_names[0].encode('utf-8').decode('utf-8')
old_zip_dir = self.__get_parse_dir__(output_path,zip_file_names[0])
new_zip_dir = self.__get_parse_dir__(output_path,new_zip_file)
os.rename(old_zip_dir,new_zip_dir)
old_zip_dir = self.__get_parse_dir__(output_path,zip_file_names[0])
new_zip_dir = self.__get_parse_dir__(output_path,new_zip_file)
os.rename(old_zip_dir,new_zip_dir)
for zip_file in zip_file_names:
old_ext_path = zip_files.extract(zip_file,output_path)

@ -1,2 +1,3 @@
requests
click
xlwt

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Loading…
Cancel
Save