Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tijme/aptlib.h
A standard c-code library (`aptlib.h`) for Windows exploit & malware development.
https://github.com/tijme/aptlib.h
advanced-persistent-threat c-library exploit malware redteam
Last synced: 4 days ago
JSON representation
A standard c-code library (`aptlib.h`) for Windows exploit & malware development.
- Host: GitHub
- URL: https://github.com/tijme/aptlib.h
- Owner: tijme
- License: mit
- Created: 2024-03-12T11:51:52.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-07-09T19:19:45.000Z (4 months ago)
- Last Synced: 2024-07-09T23:59:58.524Z (4 months ago)
- Topics: advanced-persistent-threat, c-library, exploit, malware, redteam
- Language: C
- Homepage:
- Size: 923 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
A standard c-code library (aptlib.h
) for exploit & malware development.
Built with ♥ by Tijme Gommers – Buy me a coffee via PayPal.
## Background
Whilst developing exploits and malware, I often encountered code redundancy throughout my projects. This led to the creation of `aptlib.h`, as a response to the recurring need for functionalities like retrieving user information, querying processes, managing static offsets, and more. `aptlib.h` is a high cohesion & low coupling c-code library that can be easily integrated in any c-code project through a Git submodule. Whether you're delving into malware development, crafting exploits, or pursuing other endeavors; it helps you stay one step ahead of APT's.
## Testing
Run `nmake` as follows:
nmake /A /f makefile.msvc
## Usage
Add this repository as submodule to your repository:
git submodule add [email protected]:tijme/aptlib.h.git vendor/aptlib
Compile `aptlib.h` through your makefile:
ACTION=objects make -C vendor/aptlib
Use the objects in your makefile:
gcc ./vendor/aptlib/modules/print_in_hex/print_in_hex.o ./test.c -o test.exe
## Issues
Issues or new features can be reported via the [issue tracker](https://github.com/tijme/aptlib.h/issues). Please make sure your issue or feature has not yet been reported by anyone else before submitting a new one.
## License
Copyright (c) 2024 Tijme Gommers. All rights reserved. View [LICENSE.md](https://github.com/tijme/aptlib.h/blob/master/LICENSE.md) for the full license.