Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scrt/avcleaner
C/C++ source obfuscator for antivirus bypass
https://github.com/scrt/avcleaner
Last synced: about 4 hours ago
JSON representation
C/C++ source obfuscator for antivirus bypass
- Host: GitHub
- URL: https://github.com/scrt/avcleaner
- Owner: scrt
- License: gpl-3.0
- Created: 2020-06-19T14:17:11.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-10T09:58:01.000Z (over 2 years ago)
- Last Synced: 2024-08-03T16:09:02.506Z (4 months ago)
- Language: C
- Size: 18.9 MB
- Stars: 996
- Watchers: 33
- Forks: 175
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# avcleaner
C/C++ source obfuscator for antivirus bypass![usage example](https://blog.scrt.ch/wp-content/uploads/2020/06/Screenshot-2020-06-18-at-17.50.54-1.png)
# Blog posts
The implementation is rather complex and this domain in software development is rarely documented in layman's terms. This is why there are blog posts which detail every design choice and go over the quirks of working with the LLVM API.
* https://blog.scrt.ch/2020/06/19/engineering-antivirus-evasion/
* https://blog.scrt.ch/2020/07/15/engineering-antivirus-evasion-part-ii/## Build
```
docker build . -t avcleaner
docker run -v ~/dev/scrt/avcleaner:/home/toto -it avcleaner bash #adapt ~/dev/scrt/avcleaner to the path where you cloned avcleaner
sudo pacman -Syu
mkdir CMakeBuild && cd CMakeBuild
cmake ..
make -j 2
./avcleaner.bin --help
```## Usage
For simple programs, this is as easy as:
```
avcleaner.bin test/strings_simplest.c --strings=true --
```However, you should know that you're using a compiler frontend, which can only work well if you give it the path to ALL the includes required to build your project. As an example, `test/string_simplest.c` includes headers from the WinSDK, and the script `run_example.sh` shows how to handle such scenarios.
## Common errors
```
CommandLine Error: Option 'non-global-value-max-name-size' registered more than once! LLVM ERROR: inconsistency in registered CommandLine options
```In case you encounter this error, please use `CMakeLists_archlinux.txt` instead of `CMakeLists.txt` and it should go away.
## Contributors
Thanks @gituser5555 for the bug fixes.