mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
feat: support appendLambdaSuffix
This commit is contained in:
@@ -8,6 +8,8 @@ export interface ShellConfig {
|
||||
byPassJavaModule?: boolean;
|
||||
obfuscate?: boolean;
|
||||
shrink?: boolean;
|
||||
probe?: boolean;
|
||||
lambdaSuffix?:boolean;
|
||||
}
|
||||
|
||||
export interface ShellToolConfig {
|
||||
|
||||
@@ -17,6 +17,7 @@ export interface ProbeConfig {
|
||||
byPassJavaModule?: boolean;
|
||||
shrink?: boolean;
|
||||
staticInitialize?: boolean;
|
||||
lambdaSuffix?: boolean;
|
||||
}
|
||||
|
||||
export interface ProbeContentConfig {
|
||||
|
||||
@@ -26,6 +26,8 @@ export const memShellFormSchema = yup.object({
|
||||
injectorClassName: yup.string().optional(),
|
||||
packingMethod: yup.string().required().min(1),
|
||||
shrink: yup.boolean().optional(),
|
||||
lambdaSuffix: yup.boolean().optional(),
|
||||
probe: yup.boolean().optional(),
|
||||
shellClassBase64: yup.string().optional(),
|
||||
encryptor: yup.string().optional(),
|
||||
});
|
||||
@@ -165,6 +167,7 @@ export const probeShellFormSchema = yup.object().shape({
|
||||
byPassJavaModule: yup.boolean().optional(),
|
||||
shrink: yup.boolean().optional(),
|
||||
staticInitialize: yup.boolean().optional(),
|
||||
lambdaSuffix: yup.boolean().optional(),
|
||||
});
|
||||
|
||||
type ProbeValidationResult = ResolverResult<ProbeShellFormSchema>;
|
||||
|
||||
Reference in New Issue
Block a user