阿语直装/端口官方频道🇨🇳
رفتن به کانال در Telegram
5 593
مشترکین
اطلاعاتی وجود ندارد24 ساعت
-267 روز
-8730 روز
آرشیو پست ها
5 593
Repost from OVO🐻和平内核通知频道
✅🥰高质量100%退游号购买地址🥰✅
✅100%退游号100%退游号✅
✅99%有回归大礼包s1套装✅
✅100%不鉴别,不人脸,不封号✅
✅所有账号问题都包售后✅
‼️请在购买付款时开启录屏‼️
👍👍👍购买链接:
https://fh7.zmfaka.cn/shop/74ZD6RJC
❤️阿慧数据号官方通知频道:
https://t.me/QHSJ666
😀😀😀😀😀😀
🧦👍客服联系:
@qianhui66
✅✅✅✅✅✅✅
售后要求:
✔️1:从付款开始录屏直到上大厅为止!
✔️2:付款后录屏和分段录屏无售后服务!
✔️3:要是情况特殊和客服核查确实没问题可以给予售后服务✔️
兄弟们一定要记得从刚刚付款那里开始录屏,我发现许多人都是买完然后再录屏的,一定要记得在付款的时候开始录屏,不来是无售后服务的✅
5 593
Repost from OVO🐻和平内核通知频道
✅🥰高质量100%退游号购买地址🥰✅
✅100%退游号100%退游号✅
✅99%有回归大礼包s1套装✅
✅100%不鉴别,不人脸,不封号✅
✅所有账号问题都包售后✅
‼️请在购买付款时开启录屏‼️
👍👍👍购买链接:
https://fh7.zmfaka.cn/shop/74ZD6RJC
❤️阿慧数据号官方通知频道:
https://t.me/QHSJ666
😀😀😀😀😀😀
🧦👍客服联系:
@qianhui66
✅✅✅✅✅✅✅
售后要求:
✔️1:从付款开始录屏直到上大厅为止!
✔️2:付款后录屏和分段录屏无售后服务!
✔️3:要是情况特殊和客服核查确实没问题可以给予售后服务✔️
兄弟们一定要记得从刚刚付款那里开始录屏,我发现许多人都是买完然后再录屏的,一定要记得在付款的时候开始录屏,不来是无售后服务的✅
5 593
size_t hook_strlen(const char *s) {
static const std::unordered_map<std::string, std::string> replacements = {
{"403003", "1407512"} // ANUKRA X-Suit (7-Star)
,{"202408052", "202408058"}// | GLACIAR VILLAGE Lobby Theme
,{"403177", "1407441"} //Marmoris X-Suit (7-Star)
,{"501003","1501003174"} //Backpack (Lv. 3)
,{"501002","1501002174"}
,{"501001","1501001174"}
,{"1101004010", "1101004046"}// M4 Roaring Immolation - M416 (Lv. 8)
,{"401993","1400563"}// Face New Face 1
,{"40605001","40605012"}// Hair Twintails
,{"40605009","40605010"}// New Hairstyles 1
};
auto it = replacements.find(s);
if (it != replacements.end()) {
strcpy((char *)s, it->second.c_str());
}
return strlen(s);
}
xhook_register(".*\\libUE4.so$", "strlen", (void *)hook_strlen, NULL);
Skin hacks 32bit and 64bit both work
5 593
typedef int (*o_AnoSDKIoctlOld_t)(int a1, char *a2, void *a3, char *a4, int *a5);
static o_AnoSDKIoctlOld_t o_AnoSDKIoctlOld = NULL;
attribute((fastcall)) int h_AnoSDKIoctlOld(int cmd, char *text, void **byteArray, char *extra, int *size) {
LOGI("[+] Hook triggered for command: 0x%X", cmd);
const int security_commands[] = {
0x1001,
0x1002,
0x1003,
-1
};
for (int i = 0; security_commands[i] != -1; i++) {
if (cmd == security_commands[i]) {
LOGI("[!] Bypassing 0x%X", cmd);
if (byteArray && size && *size >= 4) {
char *buf = (char*)*byteArray;
buf[0] = 0x1;
buf[1] = 0x0;
buf[2] = 0x0;
buf[3] = 0x0;
LOGI("[+] Patched");
}
return 0;
}
}
if (o_AnoSDKIoctlOld) {
int result = o_AnoSDKIoctlOld(cmd, text, byteArray, extra, size);
if (result != 0) {
LOGI("[!] with (0x%X) success", result);
return 0;
}
return result;
}
LOGE("[-] available!");
return 0;
}
attribute((constructor)) static void init_hook() {
LOGI("[*] ANOSDK bypass...");
void *handle = dlopen("libanogs.so", RTLD_NOW);
if (!handle) {
LOGE("[-] ano: %s", dlerror());
return;
}
o_AnoSDKIoctlOld = (o_AnoSDKIoctlOld_t)dlsym(handle, "AnoSDKIoctlOld");
if (!o_AnoSDKIoctlOld) {
LOGE("[-] AnoSDKIoctlOld: %s", dlerror());
return;
}
LOGI("[+] at %p", o_AnoSDKIoctlOld);
LOGI("[*] ANOSDK bypass!");
}
AnoSDKIoctlOld bypass with use skill 👌
5 593
typedef int (*o_AnoSDKIoctlOld_t)(int a1, char *a2, void *a3, char *a4, int *a5);
static o_AnoSDKIoctlOld_t o_AnoSDKIoctlOld = NULL;
attribute((fastcall)) int h_AnoSDKIoctlOld(int cmd, char *text, void **byteArray, char *extra, int *size) {
LOGI("[+] Hook triggered for command: 0x%X", cmd);
const int security_commands[] = {
0x1001,
0x1002,
0x1003,
-1
};
for (int i = 0; security_commands[i] != -1; i++) {
if (cmd == security_commands[i]) {
LOGI("[!] Bypassing 0x%X", cmd);
if (byteArray && size && *size >= 4) {
char *buf = (char*)*byteArray;
buf[0] = 0x1;
buf[1] = 0x0;
buf[2] = 0x0;
buf[3] = 0x0;
LOGI("[+] Patched");
}
return 0;
}
}
if (o_AnoSDKIoctlOld) {
int result = o_AnoSDKIoctlOld(cmd, text, byteArray, extra, size);
if (result != 0) {
LOGI("[!] with (0x%X) success", result);
return 0;
}
return result;
}
LOGE("[-] available!");
return 0;
}
attribute((constructor)) static void init_hook() {
LOGI("[*] ANOSDK bypass...");
void *handle = dlopen("libanogs.so", RTLD_NOW);
if (!handle) {
LOGE("[-] ano: %s", dlerror());
return;
}
o_AnoSDKIoctlOld = (o_AnoSDKIoctlOld_t)dlsym(handle, "AnoSDKIoctlOld");
if (!o_AnoSDKIoctlOld) {
LOGE("[-] AnoSDKIoctlOld: %s", dlerror());
return;
}
LOGI("[+] at %p", o_AnoSDKIoctlOld);
LOGI("[*] ANOSDK bypass!");
}
AnoSDKIoctlOld bypass with use skill 👌
5 593
PUBG MOBILE 3.9 Update
Release Dates:
🔹 PUBG Website/App – July 7 🔹 Play Store – July 7–8 🔹 iOS (App Store) – July 8 🔹 PUBG Vietnam (VN) – July 7 🔹 PUBG Korea (KR) – July 8
5 593
PUBG MOBILE 3.9 Update
Release Dates:
🔹 PUBG Website/App – July 7 🔹 Play Store – July 7–8 🔹 iOS (App Store) – July 8 🔹 PUBG Vietnam (VN) – July 7 🔹 PUBG Korea (KR) – July 8
5 593
only root user
32bit gl,kr,vng,tw
open zip click start.sh
play game and enjoy
no need key
free hack for all
cr. team
5 593
VPHONE crashfix 64bit 3.7
setvalue(so + "0x206BA4 ", 4, "h C0 03 5F D6")--Crash Fix
setvalue(so + "0x4A2DD4 ", 4, "h C0 03 5F D6")--Crash Fix
