2023-05-28 08:48:18 -04:00
2023-05-20 21:56:52 -04:00
2023-05-20 21:11:25 -04:00
2023-05-20 21:11:25 -04:00
2023-05-20 21:11:25 -04:00
2023-05-20 21:11:25 -04:00
2023-05-28 08:48:18 -04:00

Cobalt

SSL Bypass for Fortnite.

Changing port or ip.

Go to settings.h and change URL_HOST and URL_PORT to what you want.

Enabling hybrid

Go to settings.h and change the variable CobaltUsage to ECobaltUsage::Hybrid.

How to connect to XMPP with fiddler open ()

Thanks Lawin for this method.
All you have to do is put this into your fiddler script.

import Fiddler;

class Handlers
{
    static function OnBeforeRequest(oSession: Session) {
        if (oSession.hostname.StartsWith("xmpp-service")) 
        {
            oSession.oRequest.headers.UriScheme = "https";
        }
    }
}

Credits

Memcury - https://github.com/kem0x/Memcury
Neonite++ for the signatures and curl hook - https://github.com/PeQuLeaks/NeonitePP-Fixed/tree/1.4

Description
Universal SSL Bypass for Fortnite.
Readme BSD-3-Clause 221 KiB
Languages
C++ 100%