refactor: enhance web ux

This commit is contained in:
ReaJason
2025-01-18 20:00:24 +08:00
parent 70eef7faee
commit 88a26e9ba0
16 changed files with 649 additions and 480 deletions
+9 -1
View File
@@ -33,8 +33,16 @@ export interface GodzillaShellToolConfig {
headerValue?: string;
}
export interface BehinderShellToolConfig {
shellClassName?: string;
pass?: string;
headerName?: string;
headerValue?: string;
}
export interface InjectorConfig {
className?: string;
classInheritance?: string;
urlPattern?: string;
}
@@ -71,6 +79,6 @@ export interface GenerateResult {
injectorSize: number;
injectorBytesBase64Str: string;
shellConfig: ShellConfig;
shellToolConfig: CommandShellToolConfig | GodzillaShellToolConfig;
shellToolConfig: CommandShellToolConfig | GodzillaShellToolConfig | BehinderShellToolConfig;
injectorConfig: InjectorConfig;
}