Malware Creation
1. AV Evasion
2. Microsoft SDK
3. Self-Signing exe
Last updated
Last updated
$cert = New-SelfSignedCertificate -Subject "test" -CertStoreLocation "cert:\CurrentUser\My" -HashAlgorithm sha256 -type CodeSigning
$pwd = ConvertTo-SecureString -String "123456" -Force -AsPlainText
Export-PfxCertificate -cert $cert -FilePath test.pfx -Password $pwd
signtool.exe sign /f test.pfx /fd sha256 /p 123456 test.exe
signtool.exe timestamp -t http://timestamp.digicert.com test.exe