Codex
رفتن به کانال در Telegram
Content channel : - App Development - Python , C++, kotlin , Golang, Java , JS , Rust This Channel Doesn't Promote Any Illegal Activities It's Just For Fun Educational Purposes Owner : @Qwanwin From : Indonesia
نمایش بیشتر1 403
مشترکین
-124 ساعت
-17 روز
+1930 روز
آرشیو پست ها
1 403
Improvement:
- No buffer overflow (hexToData)
- Update Algoritma SYSV hash & GNU hash
- Fix Trampoline cache
- improve Memory handling Page align, RWX mmap, flush icache
@codex4444
1 403
AetherHook v1.2.0
New ?
- Now support 32bit.
fix:
- Declaration and Scope Improvements (#1).
- Variable Declaration Fixes (#2).
- Function Implementation Improvements "remove_hook" (#3).
- Engine hook system update (#4).
VideoTutorial :
Watch me...
@codex4444
1 403
someone asked !
whay you upload IR formate file.....
Blaa blaa blaa......
“That’s not something advanced.
It’s just the standard LLVM IR output.
The hard part isn’t generating a .ll file, but understanding how the IR gets lowered into machine code through the SelectionDAG / GlobalISel pipeline.
If you’ve reached that stage, then we can talk.
And one more thing:
this is my channel, my content, and I’m free to share whatever I want.
Shit.....”
1 403
Native ELF Scanner to detect protection, anti-debug, anti-frida, packer and other ELF structures
How to use !
https://t.me/codex4444/341
Alert !
Use it wisely, mistakes in your behavior are not my responsibility....
Thanks for support this channel 😊
Regards @Qwanwin
1 403
A kernel sensor that monitors low-level Windows activity. It functions like a modern EDR, but is lightweight and custom.
Install :
1. Right click CynEDR.inf Install
2. Or via CMD Admin:
pnputil /add-driver CynEDR.inf /install
Service driver is automatically
created: sc query CynEDR
Make by @Qwanwin
1 403
Use this SDK to create your own apps.
Alert !
Build Bcore using the source code above to get this SDK.
1 403
I'm sharing this because the black box project has been discontinued for a long time. So please feel free to develop it yourself.
Alert !
This project distinguishes between 32-bit and 64-bit, it was compiled to 2 different deamon. If you can not find your target in application list, please use another architecture.
1 403
Source: Androidstudio
VirtualApp is an open platform for Android that allows you to create Virtual Spaces, where you can install and run APKs. Furthermore, VirtualApp is also a Plugin Framework, meaning plugins running on VirtualApp don't require any restrictions. VirtualApp doesn't require root; it runs as a local process.
1 403
SDL Patch to build a 64 bit library
Without this, SDL won't have proper spinlocks on the ARM64 architecture, which can cause crashes. I encountered this issue while working on a project, so I'm sharing it with you guys if you run into the same issue.
File : SDL_spinlock.c
Code :
#ifndef SDL_SPINLOCK_OPT_H
#define SDL_SPINLOCK_OPT_H
#include <stdint.h>
static inline int SDL_AtomicTryLock(volatile int *lock);
static inline void SDL_AtomicLock(volatile int *lock);
static inline void SDL_AtomicUnlock(volatile int *lock);
#if defined(__GNUC__) && defined(__aarch64__)
static inline int SDL_AtomicTryLock(volatile int *lock) {
unsigned int result;
asm volatile(
"ldaxr %w0, [%1] \n"
"cbnz %w0, 1f \n"
"stxr %w0, %w2, [%1] \n"
"1: \n"
: "=&r"(result)
: "r"(lock), "r"(1)
: "memory");
return result == 0;
}
static inline void SDL_AtomicLock(volatile int *lock) {
unsigned int tmp;
asm volatile(
"sevl \n"
"1: wfe \n"
"2: ldaxr %w0, [%1] \n"
"cbnz %w0, 1b \n"
"stxr %w0, %w2, [%1] \n"
"cbnz %w0, 2b \n"
: "=&r"(tmp)
: "r"(lock), "r"(1)
: "memory");
}
static inline void SDL_AtomicUnlock(volatile int *lock) {
asm volatile("stlr wzr, [%0]" :: "r"(lock) : "memory");
}
#else
static inline int SDL_AtomicTryLock(volatile int *lock) {
return __sync_val_compare_and_swap(lock, 0, 1) == 0;
}
static inline void SDL_AtomicLock(volatile int *lock) {
while (!SDL_AtomicTryLock(lock)) {
#if defined(__i386__) || defined(__x86_64__)
__builtin_ia32_pause();
#elif defined(__aarch64__) || defined(__arm__)
asm volatile("yield" ::: "memory");
#endif
}
}
static inline void SDL_AtomicUnlock(volatile int *lock) {
__sync_synchronize();
*lock = 0;
}
#endif // defined(__GNUC__) && defined(__aarch64__)
#endif // SDL_SPINLOCK_OPT_H
Author? Me @Qwanwin
اکنون در دسترس! پژوهش تلگرام ۲۰۲۵ — مهمترین بینشهای سال 
