ampedsoftware
Newbie
- Dec 25, 2012
- 26
- 12
That way it looks like all traffic is coming from the client IP, not your server. Your bot might not be so effective if everyone's traffic comes from a single source. You could send your own proxy address for the server to connect to, but people might not be so happy about their proxies being harvested (of course whatever other data you send can be harvested too).
You can also selectively decide what the client proxies and what it doesn't (less bandwidth issues for you when transferring non sensitive data), they'll share the same IP as far as the target server is concerned no matter where the request started, and you can share cookies between your server and client easily enough, all that will change is the SSL client's public key which is just random anyway (you could make your server key permanent if you so desired).
Also if it's only the request formation, not the response and post-processing, that's critically important then your server can just send the encrypted request ready for you to forward with the clients on public key so they can read the response, but not the request.
You can also selectively decide what the client proxies and what it doesn't (less bandwidth issues for you when transferring non sensitive data), they'll share the same IP as far as the target server is concerned no matter where the request started, and you can share cookies between your server and client easily enough, all that will change is the SSL client's public key which is just random anyway (you could make your server key permanent if you so desired).
Also if it's only the request formation, not the response and post-processing, that's critically important then your server can just send the encrypted request ready for you to forward with the clients on public key so they can read the response, but not the request.
Last edited: