style(web): format code

This commit is contained in:
ReaJason
2025-08-13 23:53:40 +08:00
parent cf05f5f79e
commit 7ce71856d3
40 changed files with 551 additions and 308 deletions
+5 -1
View File
@@ -105,7 +105,11 @@ export interface MemShellResult {
injectorSize: number;
injectorBytesBase64Str: string;
shellConfig: ShellConfig;
shellToolConfig: CommandShellToolConfig | GodzillaShellToolConfig | BehinderShellToolConfig | AntSwordShellToolConfig;
shellToolConfig:
| CommandShellToolConfig
| GodzillaShellToolConfig
| BehinderShellToolConfig
| AntSwordShellToolConfig;
injectorConfig: InjectorConfig;
}
+8 -2
View File
@@ -1,6 +1,12 @@
export type ProbeMethod = "ResponseBody" | "DNSLog" | "Sleep";
export type ProbeContent = "BasicInfo" | "Server" | "OS" | "JDK" | "Bytecode" | "Command";
export type ProbeContent =
| "BasicInfo"
| "Server"
| "OS"
| "JDK"
| "Bytecode"
| "Command";
export interface ProbeConfig {
probeMethod: string;
@@ -63,4 +69,4 @@ export interface ProbeShellResult {
shellBytesBase64Str: string;
probeConfig: ProbeConfig;
probeContentConfig: DNSLogConfig | ResponseBodyConfig | SleepConfig;
}
}