コード例 #1
0
ファイル: Exploit.cs プロジェクト: carverh/ShiftOS-1
 public virtual void SendToMUD(string target_user, string command, string json = "")
 {
     ThisContext.IsMUDHack = false;
     if (command == "hack_getcontext")
     {
         MessageReceived?.Invoke(target_user, "context_info", ExploitContext.CreateRandom());
     }
 }
コード例 #2
0
ファイル: Exploit.cs プロジェクト: carverh/ShiftOS-1
        public void BeginExploit(string remote_user, bool isMud)
        {
            var ctx = new ExploitContext();

            SendToMUD(remote_user, "hack_getcontext");
            MessageReceived += (u, c, j) =>
            {
            };
            ThisContext = ctx;
        }
コード例 #3
0
ファイル: Exploit.cs プロジェクト: carverh/ShiftOS-1
 public abstract void OnRun(ExploitContext ctx);