ЯevDex
4.23K subscribers
119 photos
59 videos
122 files
156 links
My GitHub - https://github.com/ispointer
Telegram Bot - @RevDexbot
Telegram Chat: @RevDexChat
RevDex Team Identity -- > Reverse Engineer & Indie Developer
Download Telegram
Forwarded from Antik
MT Manager Source code Old.rar
8 MB
12😁1
binder translate 😁😁
4🤓1
Surprised? 😑 I made a PairipVM Repacking Tool today and I'm going to release it publicly It's fully non root based

IDA from https://github.com/nnjun

Thanks to nnjun for the help and inspiration 😁
Please open Telegram to view this post
VIEW IN TELEGRAM
28
Lspin Unhook Art.apk
395.5 KB
you can hook me with LSPosed, I'll fuck you instantly,
I have full access to ART internal memory instances.
🍺🍻
5
Lspin.zip
447.7 KB
Advance libArt Unhook Source Code

I use

https://github.com/hexhacking/xDL.git

https://github.com/LSPosed/LSPlant.git

https://chromium.googlesource.com/linux-syscall-support


These libraries can be used to help protect your app against LSPosed based hooking Direct hooks on your app become significantly harder making it much more difficult for attackers or modders to hook your application's methods at runtime
12😱4
I recently buy this keyboard

https://www.amazon.com/Hacking-Keyboard-Professional-Compact-Printed/dp/B083NCJZ1D

Does anyone here have experience with it? I'd love to hear your opinions in the comments Is it good or bad? What do you like or dislike about it? My delivery is expected in 4–5 days so I'm curious to know what other users think before it arrives 🚚⌨️
👀52🤯1
/*
* Copyright (C) 2026 The RevDex
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <jni.h>
#include <dlfcn.h>
#include <stdarg.h>
#include <string.h>

#include "dobby.h"
#include "log.h"

#define OldUrl "https://oldurl.com"
#define NewUrl "https://newurl.com"
#define lop 10002

using C = void;

static int (*O)(C *c, int o, ...);

int H(C *c, int o, ...)
{
va_list a;

va_start(a, o);
void *v = va_arg(a, void *);
va_end(a);

if (o == lop && v)
{
const char *u = (const char *)v;

LOGI("URL >>> %s", u);

if (strstr(u, OldUrl))
{
LOGI("NEW >>> %s", NewUrl);
v = (void *)NewUrl;
}
}

return O(c, o, v);
}

JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved)
{
void *sexy = dlopen("libcurl.so", RTLD_NOW);

if (sexy == NULL) return JNI_VERSION_1_6;

void *ins = dlsym(sexy, "curl_easy_setopt");

if (ins == NULL) return JNI_VERSION_1_6;

DobbyHook(ins, (void *)H, (void **)&O);

LOGI("URL hooker >>> %p", ins);

return JNI_VERSION_1_6;
}
4😁4
CurlHookCxx.zip
416.7 KB
CurlHookCxx.zip

libcurl.so --> curl_easy_setopt hook
😁3🤓2
Url_Hook.zip
1.2 MB
#strlen

Fu©k of strlen

libc.so --> strlen hook
😁2
Socket C++.zip
53.6 KB
Socket C++.zip

Best Library Ultra Fix
6
This media is not supported in your browser
VIEW IN TELEGRAM
🙈5
HijackDex Zygisk.zip
398.4 KB
Zygisk Dex Injector allows you to write Java reflection-based code inside Hook.java then compile it and inject/spread it into any apk

My best project hehe 😁 I use this project in multiple caces

By - @revdex
9😍3
Url_Hook_Aob.zip
212.7 KB
AOB Base Injector URL Changer
Others

https://t.me/RevDex/532
https://t.me/RevDex/531


https://www.rapidtables.com/convert/number/ascii-to-hex.html

Use this website to convert text to HEX. Make sure you search and replace using HEX bytes only.
Make sure the replacement HEX has the exact same length as the search HEX Otherwise, the AOB patch may overwrite other important data or functions, which can cause the app to crash. If your replacement URL is shorter than the original URL, use 00 null bytes as padding until the replacement HEX reaches the same length as the search HEX
Always double check the final byte length before applying the patch 😁💥
7
BD_BOMBING WINTER 🥶.zip
3.2 MB
BD_BOMBING WINTER 🥶.zip


This is my old Bombing Web App Bot project It was last updated in 2020 and this 2024 backup is the only version I still have
4😁1
libMem.zip
26.2 MB
This version have internal I/O Tracee So you can track memory 100% accurately Only for Non Root

key - dev
5
Microsoft brings Linux commands to Windows

Microsoft has released Coreutils, a project that brings Linux-like command-line utilities that run natively on Windows. This is based on uutils, a cross-platform reimplementation of GNU Coreutils in Rust.

Instead of creating separate executables for each program, a single coreutils.exe binary contains all the functions, and the executables are all hardlinks to coreutils.exe.

Some commands like dir, kill, etc. aren't included because they conflict with CMD and/or Powershell.

Install Coreutils:
winget install Microsoft.Coreutils


🔗 Coreutils | Commands
11😁3🤯1👌1
sun.misc.Unsafe.zip
98.5 KB
ART Entry Point Replacement Hook

JIT Inlining and sun.misc.Unsafe

Copyright - ©️

@VoidKiller1337
@RevDex
❤‍🔥53😁1
RePairip Register VMRunner.apk
6.2 MB
Guys, check this app and let me know in the comments whether the Pairip ART and JNI registration are working properly or not

Pairip APKs >> automatically use reflection 🪞 to dump all static objects and strings 🧵 then restore libhook.so

Auto patching system inspired by BlackDex :) - https://github.com/CodingGay/BlackDex

This is a virtualization project

VMRunner by nnjun

https://github.com/nnjun
8👌1