Lawin0129 / LawinServer

LawinServer V1, codebase needs lots of improvements
GNU General Public License v3.0
122 stars 76 forks source link

FiddlerScript #53

Open U33r opened 2 years ago

U33r commented 2 years ago

Use something to redirect the fortnite servers to localhost:3551 (Which could be fiddler, ssl bypass that redirects servers, etc...)

Please tell me the FiddlerScript to redirect the Fortnite server

CrazyCSIW6 commented 2 years ago

please be joking

secret-pommes commented 2 years ago

LawinServer Fiddler Script

ThunderFN commented 1 year ago

how i addd this

NameLord commented 1 year ago

@ThunderFN If you want to redirect using that thing watch this https://www.google.com/search?q=Lawin+server+fortnite#fpstate=ive&vld=cid:4761ac20,vid:0Tn-R0-53XE idk if its really helpful or not.

AwindYT commented 1 year ago

please help me for lawinv2

zer0gra commented 8 months ago

dont use port 3551 use 8080

this script: import Fiddler;

class Handlers { static function OnBeforeRequest(oSession: Session) { if (oSession.hostname.Contains(".epicgames.")) { if (oSession.HTTPMethodIs("CONNECT")) { oSession["x-replywithtunnel"] = "ServerTunnel"; return; } oSession.fullUrl = "http://127.0.0.1:8080" + oSession.PathAndQuery } }
}