Proxyman
Proxyman copied to clipboard
Is there a way to decrypt the data response in the script with RSA?
Description
I want to process the response, decrypt it, and can write a script or use other methods, such as sending the request again to process the data?
@UknowHui it's what the Scripting Tool is built for:
- Right Click on your request -> Tools -> Scripting
- Learn to use Scripting with Addons, with
CryptoJS.js
. It has RSA encryption/decryption.
You can check out the Snippet code: https://docs.proxyman.io/scripting/snippet-code
I see AES and DES, but there is no way to support RSA
As I mentioned, you can build your own add-ons.
- find simple RSA npm packge
- Use
webpack
orBrowserlify
to build your addons with a single JS. - Import to Proxyman to use.