From e117b01d3d37347e6717c98b4790c09ec5d56985 Mon Sep 17 00:00:00 2001 From: skyper <5938498+SkyperTHC@users.noreply.github.com> Date: Tue, 13 Aug 2024 17:43:23 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 79d9e13..0a816d5 100644 --- a/README.md +++ b/README.md @@ -1874,7 +1874,7 @@ Use [UPX](https://github.com/upx/upx) to pack an ELF binary: upx -qqq /bin/id -o mybin ``` -Then destroy the UPX header and 2nd ELF header to fool the Anit-Virus: +Then destroy the [UPX header](https://github.com/upx/upx/blob/devel/src/stub/src/include/header.S) and 2nd ELF header to fool the Anit-Virus: ```shell perl -i -0777 -pe 's/^(.{64})(.{0,256})UPX!.{4}/$1$2\0\0\0\0\0\0\0\0/s' mybin perl -i -0777 -pe 's/^(.{64})(.{0,256})\x7fELF/$1$2\0\0\0\0/s' mybin