A colection of spells to help you take your wizardry to the next level.
Command | Description |
---|---|
capa | Identify potential malicious capabilities of a file, with reference to MITRE ATT&CK. |
searchsploit | Serch and use exploits from The Exploit Database. |
Command | Description |
---|---|
firejail | Sandboxing tool based on SUID flags |
bublewrap | Sanboxing tool as seen in flatpack |
qemu | A very powerfull KVM type 2 hypervisor |
Command | Description |
---|---|
apropos | Search The Manual titels for a keyword. |
fuck | Attempts to correct previous PS1 error. |
tldr | Too Long Didn't Read, for those who want to grep harder. |
whatis | One liners from The Manual. |
wtf | Acronym dictionary. |
Command | Description |
---|---|
boxxy | Tidy up your dotfiles, make ~ great again! |
hyperfine | Program benchmarking tool. |
time | Measure how long a program took to run. |
Command | Description |
---|---|
ack | Perl based regex search tool. |
ag | C based regex search tool. |
find / -type f -a \( -perm -u+s -o -perm -g+s \) -exec ls -l {} \; 2> /dev/null |
Find all the SUID/SGID executables. |