0% found this document useful (0 votes)
175 views1 page

Mihoyo SDK Script Server Configuration

This script modifies Genshin Impact network requests by intercepting them using Fiddler and redirecting URLs to force HTTPS and change the host. It blocks logging to a specific URL and redirects over 20 Genshin Impact API domains to HTTPS with a custom host.

Uploaded by

Dillan Slender
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
175 views1 page

Mihoyo SDK Script Server Configuration

This script modifies Genshin Impact network requests by intercepting them using Fiddler and redirecting URLs to force HTTPS and change the host. It blocks logging to a specific URL and redirects over 20 Genshin Impact API domains to HTTPS with a custom host.

Uploaded by

Dillan Slender
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

/* Original script by NicknameGG Been Renamed By VincDev*/

import System;
import [Link];
import Fiddler;
import [Link];
var list = [
"[Link] //1
"[Link] //2
"[Link]
"[Link]
"[Link] // 5
"[Link]
"[Link]
"[Link]
"[Link]
"[Link] // 10
"[Link]
"[Link]
"[Link]
"[Link]
"[Link] // 15
"[Link]
"[Link]
"[Link]
"[Link]
"[Link] // 20
"[Link]
"[Link]
"[Link]
"[Link]
];
class Handlers
{
static function OnBeforeRequest(oS: Session) {
var active = true;
if(active) {
if([Link]("[Link]
[Link](404, "Blocked", "yourmom");
}
for(var i = 0; i < 24 ;i++) {
if([Link](list[i])) {
[Link] = [Link]("[Link] "[Link]
[Link] = "[Link]";
break;
}
}
}
}
};

You might also like