KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
StrCrypt
★ 13
Open GitHub ↗
Compile-time string crypter library for C++
Download README (.md)
Explore Similar Repositories
Try-hack-me-questions-crawler
:
this is a small script for extracting questions from try hack me room ,and creating a MD file
TermuxScreenLocking
:
ITS POWER FULL HACKING TOOL
UniAppPlayAndroid
:
基于Vue,使用HBuilderX编写的玩安卓
CuteToast
:
Material Design Custom Toast for Android | Custom Material Design Toast
varint-writing-showdown
:
How fast can you write a Google Protocol Buffer (signed) VarInt?
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
StrCrypt
?
Download (.md)
# StrCrypt Compile-time string crypter library for C++ - Having plain strings stored in the binary file or in memory can help reversering attempts to be much easier. - If the program is targeted by string detection scans you had to change the strings everytime you get detected. example ``` #include "movstr.h" void main() { char buf[256]; MovStr(buf, "TestString"); //"TestString" does not remain in .rdata section anymore. printf(buf); } ``` - Binary not encrypted(substitute "MovStr" to "strcpy")  - Binary encrypted with STRDEF_RAW  - Binary encrypted with STRDEF_ENCRYPT_KEY1  - Binary encrypted with STRDEF_ENCRYPT_KEY2 