Demo: UPX
$ strings test_malware.exe
# full words and potential error messages
$ upx -o packed test_malware.exe
$ strings packed
# no human-readable strings
$ strings test_malware.exe | wc
700 1978 15062
$ strings packed | wc
659 716 4029Last updated