Commit 26b8e67e by sikang

update

parent 26e075c3
......@@ -122,7 +122,7 @@ elif command == 12:
elif command == 13 or command == 133:
Function().print_checklist(config, command == 133)
print("Api混淆、包路径全混淆、四大组件混淆、manifest混淆、随机插入乱码、随机插入Activity、字符串加密、随机插入字符串、随机插入图片、免费加固")
print("Api混淆、包路径全混淆、四大组件混淆、manifest混淆、随机插入乱码、随机插入Activity、字符串加密、随机插入字符串、随机插入图片")
print(" ")
elif command == 14:
......
......@@ -118,9 +118,9 @@ class JavaGarble:
items = self.__variables[random.randint(0, vars_size)].split(" ")
if "String" in items[1]:
condition = "%s.length()%s%s" % (
items[2], random.sample("><", 1), items[4])
items[2], ''.join(random.sample("><", 1)), items[4])
else:
condition = "%s%s%s" % (items[2], random.sample("><", 1), items[4])
condition = "%s%s%s" % (items[2], ''.join(random.sample("><", 1)), items[4])
code = code.replace("${condition}", condition)
content = ""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment