SkillAgentSearch skills...

AKnightPS

A Proof-of-Concept Reverse1999 Private/Offline server

Install / Use

/learn @timing1337/AKnightPS
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

AKnightPS

A Proof-of-Concept Reverse1999 Private/Offline server

Installation

Fiddler script

import Fiddler;

const list = ["sl916.com"]

class Handlers {
    static function OnBeforeRequest(oS: Session) {
        for (var i = 0; i < list.length; i++) {
            if (oS.host.EndsWith(list[i]) && !oS.fullUrl.Contains("output_")) {
                //oS.oRequest.headers.UriScheme = "http";
                oS.host = "localhost"; // This can also be replaced with another IP address.
                //oS.oRequest.headers.Remove("Sec-WebSocket-Protocol");
            }
        }
    }
};
View on GitHub
GitHub Stars19
CategoryDevelopment
Updated1mo ago
Forks4

Languages

TypeScript

Security Score

95/100

Audited on Feb 9, 2026

No findings