Sign in to follow this  
BataBo

New and improved Multilangual c.to authentication library

Recommended Posts

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]

  1. @Luke.38 for providing premium group id and testing the tool
  2. @EliteEmper0r for providing infinity group id and testing the tool
  3. @xMoses for providing supreme group id
  4. @Vassilios for introducing me to the response of the server
  5. and to you for using it!

[/align]

Download link:

 

 

If you find any issue with my library feel free to contact me on discord:

BataBo#0680

 

I you c.to

Share this post


Link to post
Share on other sites

This is a bump

Share this post


Link to post
Share on other sites

i want to make custom auth system

can you help? im new to c# and developing with vs 2019

 

Felixx#1413

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this