This commit is contained in:
cdle
2023-06-01 14:18:56 +08:00
parent 1c6f60f819
commit 1ee28c45c4
47 changed files with 1058 additions and 26 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ func DecryptByAes(data string) ([]byte, error) {
func halfEct(str string) string {
ss := regexp.MustCompile(`/\*hidden\*/([\s\S]+?)/\*neddih\*/`).FindAllString(str, -1)
for _, v := range ss {
fmt.Println(v)
// fmt.Println(v)
// panic("")
c_, _ := EncryptByAes([]byte(v))
str = strings.Replace(str, v, fmt.Sprintf(`/** Here is hidden scripts %s */`, c_), 1)