Decrypting strings #2742
Answered
by
skylot
nitanmarcel
asked this question in
Q&A
Decrypting strings
#2742
|
If I know how to decrypt a string, is it possible to have a plugin doing the decryption for me? If yes what methods should I use to build the said plugin? |
Answered by
skylot
Jan 8, 2026
Replies: 3 comments 3 replies
|
@nitanmarcel looks like your request is similar to this scripts example: It searches for method usage and replaces it with a string calculated based on method argument.
|
3 replies
Answer selected by
nitanmarcel
|
@skylot any way to use the normalized method/class name created by jadx? To avoid having trouble with obfuscation such as: |
0 replies
|
@nitanmarcel not sure if I understand your question. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@nitanmarcel looks like your request is similar to this scripts example:
jadx/jadx-plugins/jadx-script/examples/scripts/replace_method_call.jadx.kts
Lines 18 to 24 in 2dc0db2
It searches for method usage and replaces it with a string calculated based on method argument.
You can use this script directly.
If you want to create a plugin, you can check implementation of …