From 1d2fa6c47061711931c2f840f722cfea4237b41a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=B1=E8=88=9E=E8=80=85?= Date: Mon, 21 Nov 2022 11:33:02 +0800 Subject: [PATCH] Use aes encryption to store payloads to avoid AV detection --- Plugins/base.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Plugins/base.go b/Plugins/base.go index c509738..36a206c 100644 --- a/Plugins/base.go +++ b/Plugins/base.go @@ -1,6 +1,12 @@ package Plugins -import "net" +import ( + "bytes" + "crypto/aes" + "crypto/cipher" + "encoding/base64" + "net" +) var PluginList = map[string]interface{}{ "21": FtpScan,