From cf69b8e8483be021625ac0ca2ce3e61fc8d81e89 Mon Sep 17 00:00:00 2001 From: Thanasis Tserpelis Date: Thu, 30 Sep 2021 21:21:34 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 960ef62..583dac1 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Careful of \0 bytes, do not forget them for strings in memory, it spent a lot of In general, for shellcode generation the tools that are made should be made to host all code in .text segment, which leads to this amazing [repo](https://github.com/b1tg/rust-windows-shellcode). There is a shellcode sample in this project that can show you how to structure and code anything you would like to be possible -to work via shellcode afterwards. In addition, this project also has a shellcode generator that grabs the .text segment of a binary and +to work via shellcode afterwards. In addition, this project also has a shellcode generator that grabs the .text segment of a binary and and dumps the shellcode after executing some patches. This project grabs from a specific location the binary so I made a fork that receives the path of the binary as an argument [here](https://github.com/trickster0/rust-windows-shellcode-custom).