-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAppImageBuilder.yml
70 lines (63 loc) · 1.63 KB
/
AppImageBuilder.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
58
59
60
61
62
63
64
65
66
67
68
69
70
version: 1
# Use separate source directory to avoid cluttering it with bundled files and dependencies
script:
- mkdir -p ./AppDir
- cp -pr ./AppDir.src/* ./AppDir
AppDir:
path: './AppDir'
app_info:
id: 'org.tetrahak.hcvl'
name: 'hcvl'
version: '0.1'
icon: 'app_icon'
exec: 'bin/bash'
exec_args: '$APPDIR/spawner.sh $@'
apt:
arch: 'amd64'
sources:
# Use packages from Kali Linux as a source
- sourceline: 'deb [arch=amd64] http://http.kali.org/kali kali-rolling main non-free contrib'
# Kali release signing key
key_url: 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xED444FF07D8D0BF6'
# Included packages in AppImage - add your own from the Kali repository!
include:
# Avoid using system libc if not explicitly marked as a dependency for packages
- 'libc6'
# Image base requirements
- 'bash'
- 'coreutils'
# Quality of life tools
- 'vim'
- 'iproute2'
- 'unzip'
# Networking
- 'socat'
- 'netcat'
- 'curl'
- 'tcpdump'
- 'openssh-client'
- 'snmp'
- 'nmap'
- 'masscan'
# Script runtimes
- 'python3'
- 'python2'
# Local hacking - Tools for privilege escalation and on-the-box poking
- 'testdisk'
- 'binwalk'
- 'strace'
- 'unix-privesc-check'
- 'lynis'
# Remote hacking
- 'hydra'
# Misc.
- 'ca-certificates'
- 'openssl'
# Exclude unecessary/buggy dependencies
exclude:
- 'ntfs-3g'
- 'libntfs-3g883'
AppImage:
update-information: None
sign-key: None
arch: 'x86_64'