Scenario 1: Block Web Access to a Specific Website

Objective: Block web access to a specific website (e.g., www.umfst.ro) using Windows Firewall.

Steps:

    Using Windows Firewall GUI:
        Open Windows Defender Firewall from the Control Panel.
        Click Advanced settings to open the Windows Firewall with Advanced Security window.
        Select Outbound Rules on the left-hand side.
        Click New Rule on the right-hand side.
        Select Custom for the rule type.
        Choose This program path and enter the path for your browser (e.g., C:\Program Files\Google\Chrome\Application\chrome.exe for Chrome).
        Choose This IP address and enter the IP address of the website (www.umfst.ro) you want to block.
        Select Block the connection and click Next until the rule is created.
        Name the rule and finish the process.

    PowerShell Command: New-NetFirewallRule -DisplayName "SSI-Lab-Block Website Example" -Direction Outbound -Protocol TCP -RemoteAddress "85.121.32.178" -Action Block

Verification: Try accessing www.umfst.ro from your browser. The connection should be blocked.