BataBo

Members
  • Content Count

    128
  • Last visited

Everything posted by BataBo

  1. How do I use services like deathbycapthca,2captcha or anticapthca. If you have any experience with these contact me here:BataBo#0680
  2. I've made a lib that does that and it has full documentation you should check it out
  3. Why even use confuserex its fairly easy to unpack
  4. Why not just use xnet making checkers is simple and I think learning it yourself will be way better than using some lib out there
  5. I have a feeling its gonna be one of those invite 20 people to the server
  6. AntiDebug lib By BataBo [align=center] Recently I've noticed that cracking programs that were made by some really good developers have a flaw where you can use an http debugger to get endpoints.[/align] So I decided to make a library that prevents detects http debuggers and than I thought about expanding its usability and also added unpacking program detection. [align=center] This library was made in c++ because I'm a masochist,I mean so it can be used by all of our developers to protect their checker regardless of their language preference.[/align] In theory it should work for every language but in practice it was testes with c#,java and python It as the title says protects you from debuggers it protects you from every http debugger and it also protects you from: OllyDBG, MegaDumper and DnSpy [align=center] [/align] Before I get to any examples of usage lets discuss how you should implement it. It's pretty simple start another thread in your language of choice run dll method inside after that say what should happen if debugger is detected. Your language of choice wont be able to pass dll method unless there is a debugger present. [align=center] [/align] Examples: C#: [align=left] class Test { private static Thread thread2 = new Thread(ListNum); const string _dllLocation = "DebuggerCheck.dll"; [DllImport(_dllLocation)] public static extern int DebuggerCheck(); static void Main() { Thread thread = new Thread(AntiDebug); thread.Start(); thread2.Start(); } private static void AntiDebug() { DebuggerCheck(); Console.WriteLine("Bad guys detected!"); Environment.Exit(0); } private static void ListNum() { int i; for (i = 0; i < 1000000; i++) { Console.WriteLine(i); } } } [/align] Java: You'll need to use jna(java native access) Test:src:javaexport:AntiDebug [align=left] package javaexport; import com.sun.jna.Library; import com.sun.jna.Native; public interface AntiDebug extends Library{ AntiDebug INSTANCE = (AntiDebug)Native.loadLibrary("DebuggerCheck", AntiDebug.class); public int DebuggerCheck(); } [/align] Test:src:main:Runnable [align=left] package main; import javaexport.AntiDebug; class Runnable2 implements Runnable { public void run() { AntiDebug a = AntiDebug.INSTANCE; a.DebuggerCheck(); System.exit(0); } } [/align] Test:src:main:Main [align=center][align=left] package main; public class Main { public static void main(String[] args) { Thread t = new Thread(new Runnable2()); t.start(); int i; for(i = 0;i<1000000;i++) { System.out.print(i + "\n"); } } } [/align] [/align] Python: [align=left] import threading import _thread import ctypes import sys import time testlib = ctypes.CDLL('DebuggerCheck.dll') def AntiDebug(): testlib.DebuggerCheck() //Whatever terminates the program thread = threading.Thread(target=AntiDebug) thread.start() i = 0 while i < 1000000: print(i) time.sleep(1) i += 1 [/align] [align=center] Here is my lib in action:[/align] As soon as http analyzer has been opened test app closed Here is a download link: https://anonfile.com/64M5f0udn8/antiDebbuger_zip If you have any issue with this lib feel free to contact me :)
  7. CashApp checker Looks better on win10 Use US proxies Combo should be in the form email as the site doesnt use passwords it just lets you in with email [hide] https://anonfile.com/ncRaI8tcn4/CashAppChecker_zip[/hide] VT : https://www.virustotal.com/gui/file/08ce4973ebbd9703218bc2dd912fa764274aa0db801b4ad8b1e562a4ee0a2db9/detection
  8. Now wait I you said paid but I can jusr comment
  9. CRACKED.TO AUTHENTICATION LIBRARY by BataBo Recently I've noticed that one of my friends was making an c.to authentication system for python so I decided to contribute to c.to community by developing an authentication library for every language for all of our wonderful developers :). This library is written in c++ and exported in a way that makes it compatible with every advanced programming language. But as of right now(5/22/2019) it has been tested and proven to work with c#,java and python. And it is very easy to implement so here are examples: C#: [align=left] using System.Runtime.InteropServices; ... [DllImport("Authentication.dll", CallingConvention = CallingConvention.Cdecl)] public static extern int Authenticate(string key); ... Console.WriteLine("Cracked auth key..."); string key = Console.ReadLine(); int auth = Authenticate(key); [/align] Java: For java you'll need to include jna for this to work Test:src:javaexport:AUTH.java [align=left] package javaexport; import com.sun.jna.Library; import com.sun.jna.Native; public interface AUTH extends Library{ AUTH INSTANCE = (AUTH)Native.loadLibrary("Authentication", AUTH.class); public int Authenticate(String key); } [/align] [align=center]Test:src:main:Main.java [align=left] package main; import javaexport.AUTH; public class Main { public static void main(String[] args) { AUTH a = AUTH.INSTANCE; /*Get user input*/ String test = /*User input you got */; int b = a.Authenticate(test); } } [/align] I'm sure this can be done way easier I'm just not good at java[/align] Python: [align=left] >>> from ctypes import * >>> mydll = cdll.LoadLibrary("C:\\Users\\[REDACTED]\\source\\repos\\mldll\\Debug\\zlibd1.dll") >>> mydll = cdll.LoadLibrary("C:\\Users\\[REDACTED]\\source\\repos\\mldll\\Debug\\libcurl-d.dll") ...//Do this for all dependancies before Authentication.dll >>> mydll = cdll.LoadLibrary("C:\\Users\\[REDACTED]\\source\\repos\\mldll\\Debug\\Authentication.dll") //Get user input test = /*User input*/ >>> mydll.Authenticate(bytes(test, encoding='utf8')) //Get integer from mydll.Authenticate(bytes(test, encoding='utf8')) i dont know how to do it myself [/align] This library only works in 32-bit environment Hope it wasn't too hard to understand Here are output codes: 0-Valid key,no rank 1-Invalid key 2-Problem occurred while running 3-premium 4-infinity 5-supreme Before I drop download link I want to give a special thanks to people who contributed to this project: [align=center] @Luke.38 for providing premium group id and testing the tool @EliteEmper0r for providing infinity group id and testing the tool @xMoses for providing supreme group id @Vassilios for introducing me to the response of the server and to you for using it! [/align] Download link: https://anonfile.com/C3ld3bs6n8/auth_zip If you find any issue with my library feel free to contact me on discord: BataBo#0680 I ♥ you c.to