Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lib_base
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sikang
lib_base
Commits
26b8e67e
Commit
26b8e67e
authored
Oct 29, 2019
by
sikang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
26e075c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
python/main.py
+1
-1
python/tools/garble/java_garble.py
+2
-2
No files found.
python/main.py
View file @
26b8e67e
...
...
@@ -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
:
...
...
python/tools/garble/java_garble.py
View file @
26b8e67e
...
...
@@ -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
=
""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment