8000 HACK-THEM-ALL/thick-client-applications/Unsigned-binaries.md at master · k2haxor/HACK-THEM-ALL · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 451 Bytes

Unsigned-binaries.md

File metadata and controls

17 lines (11 loc) · 451 Bytes

Check for Unsigned Binaries

Method

  • Open Power Shell
  • Execute the following commands after nevigating to installation directory of the application.
  • Get-AuthenticodeSignature *.dll,./**/*.dll

OR

  • Get-AuthenticodeSignature *.exe,./**/*.exe

Impact

Unsigned binaries can modified/replaced without the end user being aware.

Remediation

Sign all the binaries in application to ensure protection against tempaering attacks

0