leeksov {coding}
713 subscribers
959 photos
233 videos
154 files
487 links
coding, signing, social engineering.
Download Telegram
Forwarded from Мемный Скaм
Бесплатно пользуемся подпиской XBOX Game Pass Ultimate (18.07.25)

Утро в хату! Перед вами полезный мануал, который позволит бесплатно катать в игрульки на XBOX по подписке Game Pass Ultimate. Вкратце, мы будем покупать подписку в официальном магазине, а потом возвращать за нее средства.

1. Для начала нам нужно намутить иностранную карту. Подойдет любая Visa, Mastercard или American Express, не катят карты из России и Беларуси сами знаете из-за каких событий. Не знаете где намутить иностранную карту? Жаль;
2. Отправляемся в Microsoft Store или Xbox Store и покупаем подписку;
3. Пользуемся подпиской не более 28 дней;
4. Идем в Microsoft Dashboard, находим подписку Xbox Game Pass и нажимаем «Cancel Subscription». Важно: не нажимаем на «Turn Off Recurring Billing», вместо этого выбираем «Refund Immediately». В-С-Ё!

После проделанного алгоритма действий деньги вернутся на пластик. Данный алгоритм действий можно повторять каждый месяц для поддержания подписки БЕСКОНЕЧНО.

Репостни знакомому ГЕЙмеру ✌️
Forwarded from Мемный Скaм
Здарова, пацаны! Подписон нашел рабочий чит для игры Калорант и решил поделиться им с вами!

Valorant Triggerbot — ебала, которая распознает врагов по их цвету и автоматически атакует.

Скачиваем крайний релиз, запускаем файл triggerbot.exe, настраиваем чит и жмем на кнопку активации, после чего порабощаем всех васянов на сервере. В-С-Ё!

Доминируй, властвуй, унижай ✌️
CoDM AntiCheat off by R6X9 Reversed (maybe u will be banned lol)

Pseudocode
__int64 DisableProtectionSystems(void)
{
__int64 result; // x0

if ( set_IsDebug )
result = set_IsDebug(0LL);
if ( set_IsProductEnvironment )
result = set_IsProductEnvironment(0LL);
if ( set_UseFaaSReport )
result = set_UseFaaSReport(0LL);
if ( set_UseHttps )
result = set_UseHttps(0LL);
if ( set_CurrentGameServiceType )
result = set_CurrentGameServiceType(0LL);
if ( set_UseHttpDns )
result = set_UseHttpDns(0LL);
if ( set_RequestCgiByPost )
result = set_RequestCgiByPost(0LL);
if ( set_PauseDownloading )
result = set_PauseDownloading(1LL);
if ( set_PauseSocketSending )
return set_PauseSocketSending(1LL);
return result;
}


Offsets:
IsDebug — 0x106EE5E54
IsProductEnvironment — 0x106EE6070
UseFaaSReport — 0x106EE6B84
UseHttps — 0x106EE5F28
CurrentGameServiceType — 0x106EE6004
set_UseHttpDns — 0x106EE64D4
RequestCgiByPost — 0x106EE65AC
PauseDownloading — 0x106EE6680
PauseSocketSending — 0x106EE66EC
2🤮1💩1
leeksov {coding}
CoDM AntiCheat off by R6X9 Reversed (maybe u will be banned lol) Pseudocode __int64 DisableProtectionSystems(void) { __int64 result; // x0 if ( set_IsDebug ) result = set_IsDebug(0LL); if ( set_IsProductEnvironment ) result = set_IsProduct…
Pseudo into code

int64_t (*old_set_IsDebug)(int64_t);
int64_t set_IsDebug_hook(int64_t value) {
return old_set_IsDebug(0);
}

int64_t (*old_set_IsProductEnvironment)(int64_t);
int64_t set_IsProductEnvironment_hook(int64_t value) {
return old_set_IsProductEnvironment(0);
}

int64_t (*old_set_UseFaaSReport)(int64_t);
int64_t set_UseFaaSReport_hook(int64_t value) {
return old_set_UseFaaSReport(0);
}

int64_t (*old_set_UseHttps)(int64_t);
int64_t set_UseHttps_hook(int64_t value) {
return old_set_UseHttps(0);
}

int64_t (*old_set_CurrentGameServiceType)(int64_t);
int64_t set_CurrentGameServiceType_hook(int64_t value) {
return old_set_CurrentGameServiceType(0);
}

int64_t (*old_set_UseHttpDns)(int64_t);
int64_t set_UseHttpDns_hook(int64_t value) {
return old_set_UseHttpDns(0);
}

int64_t (*old_set_RequestCgiByPost)(int64_t);
int64_t set_RequestCgiByPost_hook(int64_t value) {
return old_set_RequestCgiByPost(0);
}

int64_t (*old_set_PauseDownloading)(int64_t);
int64_t set_PauseDownloading_hook(int64_t value) {
return old_set_PauseDownloading(1);
}

int64_t (*old_set_PauseSocketSending)(int64_t);
int64_t set_PauseSocketSending_hook(int64_t value) {
return old_set_PauseSocketSending(1);
}

%ctor {
MSHookFunction((void *)getRealOffset(0x106EE5E54), (void *)set_IsDebug_hook, (void **)&old_set_IsDebug);
MSHookFunction((void *)getRealOffset(0x106EE6070), (void *)set_IsProductEnvironment_hook, (void **)&old_set_set_IsProductEnvironment);
MSHookFunction((void *)getRealOffset(0x106EE6B84), (void *)set_UseFaaSReport_hook, (void **)&old_set_UseFaaSReport);
MSHookFunction((void *)getRealOffset(0x106EE5F28), (void *)set_UseHttps_hook, (void **)&old_set_UseHttps);
MSHookFunction((void *)getRealOffset(0x106EE6004), (void *)set_CurrentGameServiceType_hook, (void **)&old_set_CurrentGameServiceType);
MSHookFunction((void *)getRealOffset(0x106EE64D4), (void *)set_UseHttpDns_hook, (void **)&old_set_UseHttpDns);
MSHookFunction((void *)getRealOffset(0x106EE65AC), (void *)set_RequestCgiByPost_hook, (void **)&old_set_RequestCgiByPost);
MSHookFunction((void *)getRealOffset(0x106EE6680), (void *)set_PauseDownloading_hook, (void **)&old_set_PauseDownloading);
MSHookFunction((void *)getRealOffset(0x106EE66EC), (void *)set_PauseSocketSending_hook, (void **)&old_set_PauseSocketSending);
}
🤮1💋1😭1
codm update, yeiii
1
GLESign-IOS-DebugGame.i64
3 GB
UE 5.6 Game for iOS with Debug Symbols

Loaded in iDA Pro 9.1
1
global-metadata.dat
1.5 MB
Game with debug symbols on Unity 5.6.4p4

Same version with codm, crossfire, wildrift
1
MiTM on Apple Watch 👾
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
🇷🇺 Присылайте ссылки на Apple Watch приложения в комментарии под постом

🇺🇸 Send links to Apple Watch apps in the comments below the post
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from дрейн миньён
Релиз Valorant Mobile CN в этом месяце‼️

теперь уже официально! бета закроется в течении пары дней и скоро выкатят релизную версию где будет английский язык, новые агенты и всё остальное 🤗
🔥21
5 грёбанных часов спустя
AsuraMLBB_Beta1.0.ipa
173.2 MB
Asura – Mobile Legends Jailed Tweak (7-Day Trial)
Hello everyone!
I'm currently testing a Jailed Tweak for Mobile Legends. The main goal of this build is to test my Anti-Cheat Bypass system and monitor how many users get flagged or banned (hopefully none 😉).

This build is a 7-day trial, limited per device, and is for testing purposes only.

Activation Key: Asura7DayTest
No jailbreak needed. Compatible with AltStore, Sideloadly, and TrollStore.

Features Included:
- Anti-Cheat Bypass (beta testing)
- ESP (Jungle Monsters, Enemy Players)
- Player Cooldown ESP
- Auto Retribution
- Auto Buy Immortality (testing phase)
- Switch Immortality → Winter Crown
- Switch Winter Crown → Rose Gold
- Dodge Queue (no penalty)
- Room Info Display
- Save Settings
- Streamer Mode

Upcoming Features:
- Auto Aim
-Auto Ling Combo
...and many more in future builds!

Enjoy testing and let me know your results!
— Asura Dev Team
🔥3