-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.json
More file actions
132 lines (132 loc) · 4.4 KB
/
apps.json
File metadata and controls
132 lines (132 loc) · 4.4 KB
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
[
{
"name": "Kali-linux-headless",
"description": "Set of tools and fixes of kali base",
"command": "sudo apt install kali-linux-headless"
},
{
"name": "nmap",
"description": "Network exploration tool and security scanner",
"command": "sudo apt install -y nmap"
},
{
"name": "hashcat",
"description": "Hash tools",
"command": "sudo apt install -y hashcat"
},
{
"name": "gdbgef",
"description": "A debugger extension that enhances GNU Debugger with advanced exploit development capabilities and visualization tools for binary analysis.",
"command": "bash scripts/pwndbg.sh"
},
{
"name": "checksec",
"description": "A security tool that examines binary files to identify enabled security features and protections.",
"command": "sudo apt install checksec"
},
{
"name": "Burpsuite",
"description": "An integrated platform for performing security testing of web applications by intercepting and modifying HTTP/S traffic.",
"command": "sudo apt install checksec"
},
{
"name": "Ghidra",
"description": "A free, open-source reverse engineering suite developed by the NSA for analyzing malicious code and vulnerabilities across multiple platforms.",
"command": "sudo apt install ghidra"
},
{
"name": "ROPGadget",
"description": "A security tool that scans binary files to find Return-Oriented Programming gadgets for exploit development and bypassing memory protection mechanisms.",
"command": "bash scripts/ROPgadget.sh"
},
{
"name": "pwntools",
"description": "A powerful Python library designed to simplify exploit development and CTF challenges by providing utilities for binary exploitation, remote connections, and payload crafting.",
"command": "bash scripts/pwntools.sh"
},
{
"name": "neovim",
"description": "A modern vim fork with plugin ecosystem",
"command": "bash scripts/neovim.sh"
},
{
"name": "stegsolve",
"description": "A Java-based tool for analyzing images to uncover hidden data through various steganographic techniques",
"command": "bash scripts/stegsolve.sh"
},
{
"name": "zsteg",
"description": "detects LSB steganography in PNG and BMP files",
"command": "bash scripts/zsteg.sh"
},
{
"name": "edit",
"description": "Editor de texto para la terminal",
"command": "bash scripts/edit.sh"
},
{
"name": "eza",
"description": "Modern replacement for ls with better features and colors",
"command": "sudo apt install eza"
},
{
"name": "steghide",
"description": "A steganography tool for hiding and extracting data in image and audio files",
"command": "sudo apt install steghide -y"
},
{
"name": "outguess",
"description": "A universal steganographic tool that hides data in the redundant bits of data sources",
"command": "sudo apt install outguess -y"
},
{
"name": "audacity",
"description": "A free, open-source digital audio editor and recording application",
"command": "sudo apt install audacity -y"
},
{
"name": "foremost",
"description": "A forensic tool for recovering files based on their headers, footers, and internal data structures",
"command": "sudo apt install foremost -y"
},
{
"name": "ghex",
"description": "A hex editor for GNOME to view and edit binary files",
"command": "sudo apt install ghex -y"
},
{
"name": "sonic-visualiser",
"description": "A tool for viewing and analyzing the contents of audio files",
"command": "sudo apt install sonic-visualiser -y"
},
{
"name": "uv",
"description": "better python package manager",
"command": "curl -LsSf https://astral.sh/uv/install.sh | sh"
},
{
"name": "RsaCtfTool",
"description": "A tool for crypto-related CTFs",
"command": "bash scripts/RsaCtfTool.sh"
},
{
"name": "docker",
"description": "Contenerization tool",
"command": "sudo apt install -y docker.io"
},
{
"name": "bodgeit",
"description": "The bodgeit store",
"command": "bash scripts/bodgeit.sh"
},
{
"name": "radare2",
"description": "An open-source framework for reverse engineering and analyzing binaries, providing a suite of tools for disassembly, debugging, and binary patching.",
"command": "bash scripts/radare2.sh"
},
{
"name": "encoder",
"description": "encoder for web security",
"command": "cp scripts/encoder.py /home/$USER"
}
]