371
Subscribers
No data24 hours
-17 days
+630 days
Posts Archive
Repost from My Resources
Il2CppDumper without Magisk/Zygisk, dump il2cpp data at runtime, can bypass protection, encryption and obfuscation.
Repost from 𝗢𝗻𝗹𝘆𝗧𝗿𝗶𝘀
New Value Map Hack MLBB - 1.96
gg.setValues({
{
["address"] = gg.getRangesList("liblogic.so")[1]["start"] + 0x3d71e0c,
["flags"] = 32,
["value"] = "-2999674700646286368"
}
})Repost from 𝗢𝗻𝗹𝘆𝗧𝗿𝗶𝘀
🙄
Dec/Log by OnlyTris
- @OnlyTris_Encoder
➿➿➿➿➿➿➿➿➿
✔️ Encrypt by:
• IDK
😭 Executable:
• Yes
✅ Game:
• Mlbb
➿➿➿➿➿➿➿➿➿
✈️ Join My TG For More:
🍔 @OnlyTris_Channel
🍔 @GroupChat_OT
➿➿➿➿➿➿➿➿➿
❤️ Subscribe to the channel:
✅ OnlyTris_Channel
I'm OnlyTris_Encoder
Repost from Aide CMods
Android IDE Setup Code
Code 1:-
cd && pkg upg && idesetup -c
Code 2:- cd && pkg upgrade && pkg install wget && wget https://github.com/MrIkso/AndroidIDE-NDK/raw/main/ndk-install.sh --no-verbose --show-progress -N && chmod +x ndk-install.sh && bash ndk-install.sh
~Regards,
@Aidecmods#include <iostream>
#include <string>
#include <curl/curl.h>
size_t WriteCallback(void* contents, size_t size, size_t nmemb, void* userp) {
((std::string*)userp)->append((char*)contents, size * nmemb);
return size * nmemb;
}
std::string getPublicIpAddress() {
CURL* curl;
CURLcode res;
std::string readBuffer;
curl_global_init(CURL_GLOBAL_DEFAULT);
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "https://api.ipify.org");
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteCallback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
res = curl_easy_perform(curl);
if(res != CURLE_OK) {
std::cerr << "cURL error: " << curl_easy_strerror(res) << std::endl;
}
curl_easy_cleanup(curl);
}
curl_global_cleanup();
return readBuffer;
}
bool isVpnOrProxyDetected() {
std::string ipAddress = getPublicIpAddress();
if (ipAddress.find("10.") == 0 || ipAddress.find("192.168.") == 0 || ipAddress.find("172.16.") == 0 || ipAddress.find("172.17.") == 0 || ipAddress.find("172.18.") == 0 || ipAddress.find("172.19.") == 0 || ipAddress.find("172.20.") == 0 || ipAddress.find("172.21.") == 0 || ipAddress.find("172.22.") == 0 || ipAddress.find("172.23.") == 0 || ipAddress.find("172.24.") == 0 || ipAddress.find("172.25.") == 0 || ipAddress.find("172.26.") == 0 || ipAddress.find("172.27.") == 0 || ipAddress.find("172.28.") == 0 || ipAddress.find("172.29.") == 0 || ipAddress.find("172.30.") == 0 || ipAddress.find("172.31.") == 0) {
// Private IP address range, likely a VPN/Proxy
return true;
}
return false;
}
void @PrivateFileTg() {
static char s[64];
static std::string err;
ImGui::Text("Please Login! (Copy Key to Clipboard)");
ImGui::PushItemWidth(-1);
ImGui::InputText("##key", s, sizeof s);
ImGui::PopItemWidth();
if (ImGui::Button(" Paste Key ", ImVec2(ImGui::GetContentRegionAvailWidth(), 0))) {
auto key = getClipboardText();
strncpy(s, key.c_str(), sizeof s);
}
if (ImGui::Button("Login", ImVec2(ImGui::GetContentRegionAvailWidth(), 0))) {
// VPN/Proxy detection check
if (isVpnOrProxyDetected()) {
err = "Error: VPN/Proxy detected. Please disable and try again.";
} else {
err = Login(s);
if (err == "OK") {
isLogin = bValid && g_Auth == g_Token;
}
}
}
if (!err.empty() && err != "OK") {
ImGui::Text("Error: %s", err.c_str());
}
}
Vpn Detection in mod menu 👍