Nix13

Fiddler Script

May 13th, 2022 (edited)
1,082
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. import System;
  2. import Fiddler;
  3.  
  4. class Handlers {
  5.     static function OnBeforeRequest(oS: Session) {
  6.         if(oS.uriContains("http://overseauspider.yuanshen.com:8888/log")){
  7.             oS.oRequest.FailSession(404, "Blocked", "yourmom");
  8.         }
  9.         if(oS.host.EndsWith(".hoyoverse.com") || oS.host.EndsWith(".mihoyo.com") || oS.host.EndsWith(".yuanshen.com")) {
  10.             oS.host = "gi.nix13.pw";
  11.         }
  12.     }
  13. };
Advertisement
Add Comment
Please, Sign In to add comment