mirror of
https://github.com/Milxnor/Cobalt.git
synced 2026-01-13 10:32:23 +01:00
Update README.md
This commit is contained in:
26
README.md
26
README.md
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user