From 78f2e7572acf90aa109eeba0e221970900b535b3 Mon Sep 17 00:00:00 2001 From: Gray <84999745+Milxnor@users.noreply.github.com> Date: Sun, 28 May 2023 08:47:24 -0400 Subject: [PATCH] Update README.md --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index 4e61897..5e08840 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,32 @@ # 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 (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 Memcury - https://github.com/kem0x/Memcury