目录
Connect to the HackTheBox server and spawn target machine
Infomation Collection
Use Rustscan to perform oepn scanning on the TCP port of the target
Use Nmap to perform script and service scanning on the TCP port of the target
Use Curl accessing p…
前言 命令模式的关键通过将请求封装成一个对象,使命令的发送者和接收者解耦。这种方式能更方便地添加新的命令,如执行命令的排队、延迟、撤销和重做等操作。 代码
#region 基础的命令模式
//命令(抽象类)
public abstract class …