diff --git a/_posts/2022-09-30-Auto-Obfuscate-Strings-with-Nim.md b/_posts/2022-09-30-Auto-Obfuscate-Strings-with-Nim.md index 5d2ae0b..420b564 100755 --- a/_posts/2022-09-30-Auto-Obfuscate-Strings-with-Nim.md +++ b/_posts/2022-09-30-Auto-Obfuscate-Strings-with-Nim.md @@ -5,6 +5,8 @@ title: Offensive Nim - Auto Obfuscate Strings with Nim's Term-Rewriting Macros TLDR: Use `nim-strenc`, or read below to discover how to write your own Nim macro. +![NimMacro]({{ site.baseurl }}/images/OffensiveNim/nimlang.png) + Lately I discovered the repository [Yardanico/nim-strenc](https://github.com/Yardanico/nim-strenc), you can use it very easily in your Nim code by importing `strenc`. Let's try it on this simple example. First you need to install the package using this command: `nimble install strenc` diff --git a/images/OffensiveNim/nimlang.png b/images/OffensiveNim/nimlang.png new file mode 100755 index 0000000..2e9c0a0 Binary files /dev/null and b/images/OffensiveNim/nimlang.png differ