Update README.md

This commit is contained in:
Gray
2023-05-28 08:47:24 -04:00
committed by GitHub
parent 5f9a5509d3
commit 78f2e7572a

View File

@@ -1,6 +1,32 @@
# Cobalt # Cobalt
SSL Bypass for Fortnite. 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 (credits Lawin)
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 # Credits
Memcury - https://github.com/kem0x/Memcury<br> Memcury - https://github.com/kem0x/Memcury<br>