Reconstructing a Cloud Attack with Splunk - focodecided/ops401-cybersecurity GitHub Wiki
What are the benefits of a forward proxy?
Some benefits of a forward proxy include:
- Avoiding browsing restrictions imposed by governments, schools, or companies by circumventing firewalls
- Allowing organizations to block access to certain web sites and content
- Providing anonymity for users who want to hide their browsing activity
- Making it harder to trace online activity back to a specific user
Explain the differences between a forward and a reverse proxy?
- A forward proxy sits in front of client devices like computers and phones. It receives requests from clients and forwards them to servers on the internet.
- A reverse proxy sits in front of web servers and originates requests to servers on behalf of clients. Client requests go to the reverse proxy, which then sends requests to and receives responses from web servers.
- So in short, a forward proxy sits between clients and internet servers while a reverse proxy sits between clients and origin servers.
Explain to your manager why our organization might benefit from implementing a reverse proxy?
Implementing a reverse proxy can benefit our organization in several ways:
- It can balance traffic loads across our web servers to prevent overload and improve uptime.
- It adds an extra layer of protection from cyberattacks targeting our public-facing servers.
- We can enable caching in the proxy to accelerate content delivery to users around the world.
- A reverse proxy simplifies deploying SSL encryption for our web services. Overall, adding a reverse proxy will enhance performance, security, and reliability of our web services for both employees and customers without major infrastructure changes. I think it's a worthwhile investment given the potential benefits.
Source:
https://www.cloudflare.com/learning/cdn/glossary/reverse-proxy/