Udemy Sections 12-14: Perimeter Security, Cloud Security, and Automation Flashcards
Security devices focused on the boundary between the LAN and the WAN in your organization’s network
Perimeter security
A security solution that screens traffic between two portions of a network
Firewall
A type of firewall that is run as a piece of software on a host or server
Software firewall
A physical device that filters traffic going into a computer, network, or server
Hardware firewall
One function out of many on a single device that filters traffic going into a computer, network, or server
Embedded firewall
A method used by firewalls. They inspect each packet passing through the firewall and accepts or rejects it based on defined rules (configuration, ACLs)
Packet filtering
A type of packet filtering where packets are accepted or rejected based on the IP address and port number requested.
Stateless packet filtering
A type of packet filtering where the firewall keeps track of which internal requests use which port numbers, and use that information to examine the headers of inbound packets. If the headers of the IP packets match what the firewall was expecting to receive, it is allowed; If not, it is rejected.
This type of packet filtering all but eliminates IP spoofing.
Stateful packet filtering
A type of filtering that filters traffic based upon the ports being utilized and the type of connection (TCP or UDP).
This type of filtering keeps track of which computer made a request by assigning each request a port number. If the incoming packet is not the response that the firewall expected on the port that it expected, it will reject the packet.
NAT filtering
ALG stands for
Application-layer gateway
AKA application proxy gateway
AKA Layer 7 firewall
A security solution that applies security mechanisms to specific applications, such as FTP or Telnet. It conducts an inspection based upon the application the incoming packet is destined for. It does NOT conduct these inspections based on port numbers; this firewall operates at Layer 7.
If a packet is destined for an application that it is protecting, it blocks it.
ALG (application-layer gateway)
AKA application proxy gateway
AKA Layer 7 firewall
Application-specific translation agents that allow an application on a host in one address realm to connect to its counterpart running on a host in a different realm transparently.
Application-level gateway
AKA application proxy gateway
AKA Layer 7 firewall
A security policy domain defined for a web or application server
Realm
A firewall that operates at the Session layer and only inspects the traffic during the establishment of the initial session over TCP or UDP.
After the session is established, the packets pass without any checks.
Circuit-level gateway
A type of filtering where a firewall filters traffic based on MAC addresses
MAC filtering
When traffic is allowed to enter or leave the network because there is an ACL rule that specifically allows it
Explicit allow
Translate this firewall rule:
allow TCP 10.0.0.2 any port 80
The host with the IP address 10.0.0.2 can send packets to any other IP address as long as it is requesting it over port 80.
When traffic is denied the ability to enter/leave the network because there is an ACL rule that specifically denies it
Explicit deny
Translate this firewall rule:
deny TCP any any port 23
Prevents any device in the network from sending packets to any device outside of the network over port 23
When traffic is denied the ability to enter or leave the network because there is no specific rule that allows it
Implicit deny
Translate this firewall rule:
deny TCP any any port any
Any host inside the network can’t send TCP packets to any host outside the network no matter which port it goes through.
What do firewalls do at Layer 3?
Block IP addresses
Layer 3 is the Network layer
What do firewalls do at layer 4?
Block ports
Layer 4 is the Transport layer
A type of firewall installed to protect your server by inspecting traffic being sent to and from your web application. It stands between the user and the web application to filter traffic.
Prevents XSS, SQL injection, and cookie poisoning
WAF (Web Application Firewall)