en
Feedback
GW HR CONFIG 🇮🇳

GW HR CONFIG 🇮🇳

Closed channel

LOVE YOU HR BHAI ❤️‍🩹

Show more
The country is not specifiedThe category is not specified
253
Subscribers
+1824 hours
+147 days
+13230 days
Posts Archive
Ye hai feedback

AIMB0T L0CTI0N M0D MANU     INDIAN SERVER SAFE ZIP PASSWORD - https://youtu.be/kO4A-AEKamM https://youtu.be/kO4A-AEKamM SET-UP VIDEO - https://t.me/+GwiyRWCPaicxMWI9 https://t.me/+GwiyRWCPaicxMWI9        SEND FEEDBACK -     @OWNER_RDX_GAMING

Repost from ライゼン —

Voice message00:12

photo content
+1

photo content
+5

+6

𝐄𝐍𝐉𝐎𝐘 𝐒𝐄𝐂𝐎𝐍𝐃 𝐈𝐃 𝐒𝐀𝐅𝐄 🇮🇳
𝐒𝐀𝐊𝐈𝐑 𝐁𝐘𝐏𝐀𝐒𝐒 𝐕𝐏𝐍👇✅
CLICK HERE
𝐒𝐄𝐓𝐔𝐏 𝐕𝐈𝐃𝐄𝐎👇✅
CLICK HERE
🎚 𝐅𝐞𝐚𝐭𝐮𝐫𝐞𝐬 🗣 🎚 𝐁𝐨𝐝𝐲 𝐇𝐞𝐚𝐝𝐬𝐡𝐨𝐭 🎚 𝐂𝐡𝐚𝐦𝐬 𝐋𝐨𝐜𝐚𝐭𝐢𝐨𝐧 🎚 𝐌𝐨𝐦𝐞𝐧𝐭 𝐒𝐩𝐞𝐞𝐝
𝐀𝐥𝐥 𝐒𝐞𝐫𝐯𝐞𝐫 𝐒𝐚𝐟𝐞 𝐖𝐚𝐫𝐤𝐢𝐧𝐠 #⃣
𝐅𝐞𝐞𝐝𝐛𝐚𝐜𝐤 𝐒𝐞𝐧𝐝 :- @CD_0G0
𝟏𝟎𝟎% 𝐒𝐞𝐜𝐨𝐧𝐝 𝐈𝐝 𝐒𝐚𝐟𝐞 𝐏𝐚𝐧𝐞𝐥 💯
•𝐃𝐞𝐥𝐞𝐭𝐞 𝐎𝐥𝐝 & 𝐏𝐡𝐨𝐧𝐞 𝐑𝐞𝐬𝐭𝐚𝐫𝐭 •𝐓𝐡𝐞𝐧 𝐈𝐧𝐬𝐭𝐚𝐥𝐥 𝐓𝐡𝐢𝐬 𝐕𝐞𝐫𝐬𝐢𝐨𝐧💥
• 𝐎𝐩𝐞𝐧-𝐬𝐨𝐮𝐫𝐜𝐞 𝐭𝐨𝐨𝐥𝐬 ☀️ #research #android #security

+1
SETUP VIDEO CLICK HERE

0 Rᴇᴘᴏʀᴛs ᴀʀᴇ Bʟᴏᴄᴋᴇᴅ ʙʏ @teleprotectorbot 315 Cʜᴀɴɴᴇʟs ᴀʀᴇ Sᴀᴠᴇᴅ Fʀᴏᴍ Rᴇᴘᴏʀᴛs ɪɴ Lᴀsᴛ 24 Hᴏᴜʀs

Repost from ライゼン —
Ban Cheker Api Python Code
import requests
import json
import time

app = Flask(__name__)

@app.route("/bancheck", methods=["GET"])
def bancheck():
    player_id = request.args.get("uid", "")
    
    if not player_id:
        return Response(json.dumps({"error": "UID required"}), mimetype="application/json")
    
    try:
        info_url = f"https://nirob-x-info.vercel.app/info?uid={player_id}"
        info_response = requests.get(info_url, timeout=10)
        
        ban_url = f"https://ff.garena.com/api/antihack/check_banned?lang=en&uid={player_id}"
        headers = {
            "User-Agent": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36",
            "Accept": "application/json, text/plain, */*",
            "referer": "https://ff.garena.com/en/support/",
            "x-requested-with": "B6FksShzIgjfrYImLpTsadjS86sddhFH"
        }
        ban_response = requests.get(ban_url, headers=headers, timeout=10)
        
        is_banned = False
        ban_period = 0
        if ban_response.status_code == 200:
            ban_data = ban_response.json().get("data", {})
            is_banned = bool(ban_data.get("is_banned", 0))
            ban_period = ban_data.get("period", 0)
        
        if info_response.status_code == 200:
            data = info_response.json()
            if 'basicInfo' in data:
                basic = data['basicInfo']
                nickname = basic.get('nickname', 'Unknown')
                level = basic.get('level', 0)
                region = basic.get('region', 'Unknown')
                last = basic.get('lastLoginAt', '0')
            else:
                nickname = data.get('nickname', 'Unknown')
                level = data.get('level', 0)
                region = data.get('region', 'Unknown')
                last = data.get('lastLoginAt', '0')
            
            try:
                if last and str(last).isdigit():
                    last_login = time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime(int(last)))
                else:
                    last_login = str(last)
            except:
                last_login = str(last)
            
            result = {
                "nickname": str(nickname),
                "uid": player_id,
                "AccountLevel": int(level) if level else 0,
                "region": str(region),
                "AccountLastLogin": str(last_login),
                "status": "BANNED" if is_banned else "NOT BANNED",
                "is_banned": is_banned,
                "ban_period": ban_period if is_banned else 0,
                "dev": "@MT_0G",
                "error": None
            }
        else:
            result = {
                "nickname": "Unknown",
                "uid": player_id,
                "AccountLevel": 0,
                "region": "Unknown",
                "AccountLastLogin": "Unknown",
                "status": "BANNED" if is_banned else "NOT BANNED",
                "is_banned": is_banned,
                "ban_period": ban_period if is_banned else 0,
                "dev": "@MT_0G",
                "error": "Info API failed"
            }
        
        return Response(json.dumps(result), mimetype="application/json")
        
    except Exception as e:
        return Response(json.dumps({"error": str(e)}), mimetype="application/json")

@app.route("/", methods=["GET"])
def home():
    return "Not Found", 404

@app.route("/<path:path>", methods=["GET"])
def catch_all(path):
    return "Not Found", 404

if __name__ == "__main__":
    app.run(debug=True, host='0.0.0.0', port=5000)
Credit: @MT_0G

AnimatedSticker.tgs0.04 KB

🐺🌟 We do not promote any illegal activities and strictly adhere to Telegram's new rules, ensuring that all discussions and
🐺🌟    We do not promote any illegal activities and strictly adhere to Telegram's new rules, ensuring that all discussions and resources in our channel, @TELEGRAM are solely for ethical h4cking and educational purposes. Our focus is on fostering a responsible environment where individuals can delve into cybersecurity concepts, learn best practices, and ultimately enhance their skills in a lawful and constructive manner. We believe in the power of education to promote safe online behaviors and protect  against cyber threats ✅ @TELEGRAM  ✅
Dear Telegram Team, Educational IL2CPP/game dev tutorials Open-source tools sharing #research #android #security This post doesn't promote any illegal activities https://telegra.ph/Disclaimer-11-25-17

Id price only 3999 Dm @CD_0G0

photo content
+5

Repost from N/a
Gazab ka diye ho
+1
Gazab ka diye ho