mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
feat: support command template
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user