feat: support command template

This commit is contained in:
ReaJason
2025-12-08 01:43:41 +08:00
parent f1d42a9b3c
commit 544706352a
16 changed files with 253 additions and 82 deletions
+2 -1
View File
@@ -9,7 +9,7 @@ export interface ShellConfig {
obfuscate?: boolean;
shrink?: boolean;
probe?: boolean;
lambdaSuffix?:boolean;
lambdaSuffix?: boolean;
}
export interface ShellToolConfig {
@@ -17,6 +17,7 @@ export interface ShellToolConfig {
godzillaPass?: string;
godzillaKey?: string;
commandParamName?: string;
commandTemplate?: string;
behinderPass?: string;
antSwordPass?: string;
headerName?: string;
+1
View File
@@ -20,6 +20,7 @@ export const memShellFormSchema = yup.object({
behinderPass: yup.string().optional(),
antSwordPass: yup.string().optional(),
commandParamName: yup.string().optional(),
commandTemplate: yup.string().optional(),
implementationClass: yup.string().optional(),
headerName: yup.string().optional(),
headerValue: yup.string().optional(),