-
Notifications
You must be signed in to change notification settings - Fork 6
/
requirements.yml
57 lines (47 loc) · 1.5 KB
/
requirements.yml
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
dependencies:
- rich
- filelock>=3.4.0
- importlib-metadata; python_version < '3.8'
- psutil
dev-dependencies:
- pyyaml
release-dependencies: []
optional-dependencies:
# 下载时使用requests包,并且支持socks5代理
# Use requests package for downloading, and support socks5 proxy
requests:
- 'requests[socks]'
# 集成frida hook框架,支持android、ios hook
# Integrate frida hook framework, support android, ios hook
frida:
- frida>=15.0.0
# 集成objection框架,支持android、ios hook
# Integrate objection framework, support android, ios hook
objection:
- objection
# 为grep提供服务,可解析apk、elf等文件格式
# (注意:macOS需要使用以下命令安装libmagic: brew install libmagic)
# Provide services for grep, can parse apk, elf and other file formats
# (Note: macOS needs to install libmagic using the following command: brew install libmagic)
lief:
- lief>0.10.1
- python-magic; platform_system=="Linux"
- python-magic; platform_system=="Darwin"
- python-magic-bin; platform_system=="Windows"
# 使用ssh连接越狱后的iphone
# Use ssh to connect to jailbroken iphone
ssh:
- paramiko
- scp
# 用于解析证书时使用
# Used for parsing certificates
ssl:
- pyOpenSSL
# 用于docker/podman容器管理
# Used for docker/podman container management
container:
- linktools-cntr
# 命令行自动补全
# Command line auto-completion
argcomplete:
- argcomplete>=2.0.0