How to prevent HttpSpy in my script?

I have a script with URL requests, how can I avoid HttpSpy?

Realistically, there is not much you can do. Http requests are handled on the server so any exploit that could “spy” on your http requests would have to go about it that way.

You could try encrypting any information, but if an exploit can get to the server to spy on your http requests, it can probably access your scripts.

If api keys, etc are your concern, you could try the new SecretStore

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.