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? |
Beta Was this translation helpful? Give feedback.
Answered by
skylot
Jan 8, 2026
Replies: 1 comment 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.
|
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
nitanmarcel
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 …