Jump to content
Check out discord.gg/fxap for the cheapest decryptions! First one is free! ×

Get LB-Phone!

Unlock the powerful LB-Phone for a fraction of the price you pay on tebex.

Download

Premium TOS Clothing MEGA Pack!

11GB of pure TOS premium clothing best clothing pack for your Server!

Download

5Decrypt

Automated Asset Decryption

Learn More

1 Screenshot

About This File

This file is still locked, but I am posting it here for you guys incase one of you can crack it but dont have the files. If u do crack it pls post it back on LL 

 

 

Thanks!! ?

  • Nice 3
  • Happy 1
  • Sad 1

User Feedback

Recommended Comments



dampedmayo78

Posted

If this is a server dumped, or stolen client, it will not work with those files alone.

I am 99% certain, SCN requires a website to base their radio from.

They use a license system which is very very hard to understand, and even crack itself. If you think this would be a free crack by anyone, you are sadly mistaken. This will take days, maybe even weeks just to understand the scripts, and figure out how to crack it. This isn't some 10-year old's software.

urmom124124216534653462

Posted

1 hour ago, dampedmayo78 said:

If this is a server dumped, or stolen client, it will not work with those files alone.

I am 99% certain, SCN requires a website to base their radio from.

They use a license system which is very very hard to understand, and even crack itself. If you think this would be a free crack by anyone, you are sadly mistaken. This will take days, maybe even weeks just to understand the scripts, and figure out how to crack it. This isn't some 10-year old's software.

Darn. This was leaked from DOJRPs server files. 

Sky

Posted

got it 

 

Raz3R

Posted

I managed to decompile the server shit, they authenticate with

 

        private static async Task<string> getAuthorization()
        {
            string arg = File.ReadAllText("server.authz");
            TaskAwaiter<RequestResponse> taskAwaiter = new Request().Http(string.Format("https://auth.sloosecannon.io/auth/radio-link/{0}", arg), "GET", "", null).GetAwaiter();
            if (!taskAwaiter.IsCompleted)
            {
                await taskAwaiter;
                TaskAwaiter<RequestResponse> taskAwaiter2;
                taskAwaiter = taskAwaiter2;
                taskAwaiter2 = default(TaskAwaiter<RequestResponse>);
            }
            return taskAwaiter.GetResult().content;
        }

sloosecannon

Posted

4 hours ago, Im ThatBug said:

I managed to decompile the server shit, they authenticate with

 

        private static async Task<string> getAuthorization()
        {
            string arg = File.ReadAllText("server.authz");
            TaskAwaiter<RequestResponse> taskAwaiter = new Request().Http(string.Format("https://auth.sloosecannon.io/auth/radio-link/{0}", arg), "GET", "", null).GetAwaiter();
            if (!taskAwaiter.IsCompleted)
            {
                await taskAwaiter;
                TaskAwaiter<RequestResponse> taskAwaiter2;
                taskAwaiter = taskAwaiter2;
                taskAwaiter2 = default(TaskAwaiter<RequestResponse>);
            }
            return taskAwaiter.GetResult().content;
        }

Oop, your C# highlight is broken

Raz3R

Posted

49 minutes ago, sloosecannon said:

Oop, your C# highlight is broken

Its the default highlighting of my software.

Dev01

Posted

1 hour ago, sloosecannon said:

Oop, your C# highlight is broken

lmao

CrypticAdmin

Posted

Has anyone Cracked This Yet?

  • Nice 1
Skeopp1

Posted

i got the working version 

BKDNKDDNAdadafas

Posted

On 6/7/2023 at 2:48 AM, Skeopp1 said:

i got the working version 

Can you send it?

 

calleanwyburn

Posted

On 5/29/2022 at 1:39 PM, Sky said:

got it 

 

post it then

 

mammjooe

Posted

On 6/7/2023 at 8:48 AM, Skeopp1 said:

i got the working version 

Pls Send It Bro

 

JO GAMER

Posted

Pls Send It Bro

 

 

  • Sad 1
Gator | Retired Staff

Posted

its impossible for anyone to have a working cracked version, scn uses a web system for the radio without it it will not work and they dont let you host it for that reason

Adamheheh

Posted

Guys i need help

2235.png

Anthony Dimichele

Posted

On 9/8/2024 at 1:21 PM, Adamheheh said:

Guys i need help

2235.png

u ghotta do /setradioagnecy (fire,leo,do THEN /RADIO

Adamheheh

Posted

10 hours ago, Anthony Dimichele said:

u ghotta do /setradioagnecy (fire,leo,do THEN /RADIO

Thats what i did it still says that tho do i have to config it?

Dasten_Hola

Posted

Does anyone have it?

Raz3R

Posted

For those who want to bypass the authenticator. I won't release the cracked version i have made but you can do something like this by modifying the dll and recoding the decompiled code.

 

private static string verifyUsingPublic(string licenseKey, string publicKey)
{
    // Skip the actual verification process and return an approved message
    return "Authorization Approved";
}
private async void handleInit([FromSource] Player source)
{
    // Skip authorization check and simply set a dummy approval
    this.authorization = "approved"; // Bypass the authorization process

    // Log that we've bypassed the auth process
    RadioLinkServer.writeDebug(string.Format("Bypassing auth, setting to [{0}]", this.authorization));

    // Instead of verifying, just return a static valid string
    string str = "Authorization Approved";

    // Trigger the initACK event with the bypassed approval
    source.TriggerEvent("radiolink:initACK", new object[1]
    {
        (object) (str + "␝")
    });

    // Proceed with the rest of the function as normal
    string input = File.ReadAllText("server.authz");
    source.TriggerEvent("radioInternal:initVOIP", new object[2]
    {
        (object) RadioLinkServer.createMD5(input),
        (object) API.GetConvar("scnp25:signalingserveraddr", "https://main-1.cc.p25.scncomms.app")
    });
}

 

This sets the authorization as approved and bypasses the cryptography validations, It will also send the authorized message back down to the client. 

 

The only issues you may come and find is the actual VOIP server url being changed by SCNP as its currently:
https://main-1.cc.p25.scncomms.app

 

  • Nice 1
Raz3R

Posted

On 2/8/2024 at 7:21 PM, Gator | Retired Staff said:

its impossible for anyone to have a working cracked version, scn uses a web system for the radio without it it will not work and they dont let you host it for that reason

They're just hosting the actual VOIP server, you can just make your own and reverse engineer the functions they send to make it actually all work. 

With the work you can make it functionally work. 

Dasten_Hola

Posted

On 15/10/2024 at 12:54, Raz3R said:

Solo están alojando el servidor VOIP real, solo puede hacer su propia ingeniería inversa de las funciones que envían para que realmente todo funcione. 

Con el trabajo puedes hacer que funcione funcionalmente. 

Hey bro, I want this script, but the problem is that I don't know how to decrypt the DLL files. I don't know if you could help me. If you want, I can give you my Discord and we can talk there.

Raz3R

Posted

On 10/18/2024 at 5:52 PM, Dasten_Hola said:

Hey bro, I want this script, but the problem is that I don't know how to decrypt the DLL files. I don't know if you could help me. If you want, I can give you my Discord and we can talk there.

DNSpy can do it. I use a paid program to do it.

K5sdasd

Posted

On 10/14/2024 at 4:05 PM, Dasten_Hola said:

Does anyone have it?

 

On 10/15/2024 at 11:51 AM, Raz3R said:

For those who want to bypass the authenticator. I won't release the cracked version i have made but you can do something like this by modifying the dll and recoding the decompiled code.

 

private static string verifyUsingPublic(string licenseKey, string publicKey)
{
    // Skip the actual verification process and return an approved message
    return "Authorization Approved";
}
private async void handleInit([FromSource] Player source)
{
    // Skip authorization check and simply set a dummy approval
    this.authorization = "approved"; // Bypass the authorization process

    // Log that we've bypassed the auth process
    RadioLinkServer.writeDebug(string.Format("Bypassing auth, setting to [{0}]", this.authorization));

    // Instead of verifying, just return a static valid string
    string str = "Authorization Approved";

    // Trigger the initACK event with the bypassed approval
    source.TriggerEvent("radiolink:initACK", new object[1]
    {
        (object) (str + "␝")
    });

    // Proceed with the rest of the function as normal
    string input = File.ReadAllText("server.authz");
    source.TriggerEvent("radioInternal:initVOIP", new object[2]
    {
        (object) RadioLinkServer.createMD5(input),
        (object) API.GetConvar("scnp25:signalingserveraddr", "https://main-1.cc.p25.scncomms.app")
    });
}

 

This sets the authorization as approved and bypasses the cryptography validations, It will also send the authorized message back down to the client. 

 

The only issues you may come and find is the actual VOIP server url being changed by SCNP as its currently:
https://main-1.cc.p25.scncomms.app

 

 Which dll do I insert it in?

 

zzn

Posted

If you cashapp me $25 ill give you a cracked version (i can show proof) if you want to, text me here on LL


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.


×
×
  • Create New...

Important Information

By continuing on Launcherleaks.net, you agree to our Terms of Use, Guidelines & Privacy Policy