Garantizar la seguridad de redes y sistemas es una prioridad en TI y una de las principales defensas en un entorno Windows es el Firewall de Windows, que se encarga de controlar el flujo de tráfico entrante y saliente, actuando como portero. Este artículo profundiza en un script de PowerShell que proporciona un método simplificado para activar o desactivar los perfiles del Firewall de Windows, una tarea crucial para los profesionales de TI.
Antecedentes
El script presentado está diseñado para activar o desactivar todos los perfiles de red de Firewall de Windows: dominio, público y privado. Estos perfiles determinan la configuración y las reglas que se aplican en función del tipo de red al que está conectado un ordenador. Para los proveedores de servicios gestionados (MSP) y los profesionales de TI, una herramienta que pueda alternar rápidamente estos perfiles tiene un valor incalculable. Ya sea para solucionar problemas, reforzar la seguridad o configurar la red, este script ofrece una solución rápida.
El script para activar o desactivar perfiles del Firewall de Windows
#Requires -Version 5.1 <# .SYNOPSIS Enable or disable all Windows Firewall profiles(Domain, Public, Private). .DESCRIPTION Enable or disable all Windows Firewall profiles(Domain, Public, Private). .EXAMPLE -Disable Disables all Windows Firewall profiles(Domain, Public, Private). .EXAMPLE -Enable Enables all Windows Firewall profiles(Domain, Public, Private). .EXAMPLE -Enable -BlockAllInbound Enables all Windows Firewall profiles(Domain, Public, Private). Blocks all inbound traffic on the Domain, Public, Private profiles .OUTPUTS String[] .OUTPUTS PSCustomObject[] .NOTES Minimum OS Architecture Supported: Windows 10, Windows Server 2016 Release Notes: Initial Release By using this script, you indicate your acceptance of the following legal terms as well as our Terms of Use at https://www.ninjaone.com/terms-of-use. Ownership Rights: NinjaOne owns and will continue to own all right, title, and interest in and to the script (including the copyright). NinjaOne is giving you a limited license to use the script in accordance with these legal terms. Use Limitation: You may only use the script for your legitimate personal or internal business purposes, and you may not share the script with another party. Republication Prohibition: Under no circumstances are you permitted to re-publish the script in any script library or website belonging to or under the control of any other software provider. Warranty Disclaimer: The script is provided “as is” and “as available”, without warranty of any kind. NinjaOne makes no promise or guarantee that the script will be free from defects or that it will meet your specific needs or expectations. Assumption of Risk: Your use of the script is at your own risk. You acknowledge that there are certain inherent risks in using the script, and you understand and assume each of those risks. Waiver and Release: You will not hold NinjaOne responsible for any adverse or unintended consequences resulting from your use of the script, and you waive any legal or equitable rights or remedies you may have against NinjaOne relating to your use of the script. EULA: If you are a NinjaOne customer, your use of the script is subject to the End User License Agreement applicable to you (EULA). .COMPONENT ProtocolSecurity #> [CmdletBinding(DefaultParameterSetName = "Enable")] param ( [Parameter( Mandatory = $true, ParameterSetName = "Enable" )] [Switch] $Enable, [Parameter( Mandatory = $true, ParameterSetName = "Disable" )] [Switch] $Disable, [Parameter( ParameterSetName = "Enable" )] [Switch] $BlockAllInbound ) begin { function Test-IsElevated { $id = [System.Security.Principal.WindowsIdentity]::GetCurrent() $p = New-Object System.Security.Principal.WindowsPrincipal($id) $p.IsInRole([System.Security.Principal.WindowsBuiltInRole]::Administrator) } } process { if (-not $(Test-IsElevated)) { Write-Error -Message "Access Denied. Please run with Administrator privileges." exit 1 } if ($(Get-Command "Get-NetFirewallProfile" -ErrorAction SilentlyContinue).Name -like "Get-NetFirewallProfile") { # Use Get-NetFirewallProfile if available try { $NetFirewallSplat = @{ Profile = @("Domain", "Public", "Private") Enabled = $(if ($Enable) { "True" }elseif ($Disable) { "False" }) ErrorAction = "Stop" } if ($Enable -and $BlockAllInbound) { $NetFirewallSplat.Add('DefaultInboundAction', 'Block') $NetFirewallSplat.Add('DefaultOutboundAction', 'Allow') } Set-NetFirewallProfile @NetFirewallSplat } catch { Write-Error $_ Write-Host "Failed to turn $(if ($Enable) { "on" }elseif ($Disable) { "off" }) the firewall." exit 1 } # Proof of work Get-NetFirewallProfile -ErrorAction Stop | Format-Table Name, Enabled } else { # Fall back onto netsh netsh.exe AdvFirewall set AllProfiles state $(if ($Enable) { "on" }elseif ($Disable) { "off" }) if ($LASTEXITCODE -gt 0) { exit $LASTEXITCODE } netsh.exe AdvFirewall set DomainProfile state $(if ($Enable) { "on" }elseif ($Disable) { "off" }) if ($LASTEXITCODE -gt 0) { exit $LASTEXITCODE } netsh.exe AdvFirewall set PrivateProfile state $(if ($Enable) { "on" }elseif ($Disable) { "off" }) if ($LASTEXITCODE -gt 0) { exit $LASTEXITCODE } netsh.exe AdvFirewall set PublicProfile state $(if ($Enable) { "on" }elseif ($Disable) { "off" }) if ($LASTEXITCODE -gt 0) { exit $LASTEXITCODE } if ($Enable -and $BlockAllInbound) { try { netsh.exe AdvFirewall set DomainProfile FirewallPolicy "BlockInbound,AllowOutbound" if ($LASTEXITCODE -gt 0) { exit $LASTEXITCODE } netsh.exe AdvFirewall set PrivateProfile FirewallPolicy "BlockInbound,AllowOutbound" if ($LASTEXITCODE -gt 0) { exit $LASTEXITCODE } netsh.exe AdvFirewall set PublicProfile FirewallPolicy "BlockInbound,AllowOutbound" if ($LASTEXITCODE -gt 0) { exit $LASTEXITCODE } } catch { Write-Error $_ Write-Host "Could not set Block All Inbound Traffic to 1" } } # Proof of work netsh.exe AdvFirewall show AllProfiles state if ($LASTEXITCODE -gt 0) { exit $LASTEXITCODE } } } end {}
Accede a más de 300 scripts en el Dojo de NinjaOne
Desglose detallado
Básicamente, el script comprueba si se dispone de privilegios de administrador, algo esencial ya que para modificar la configuración del firewall se necesitan derechos elevados. A continuación, comprueba la presencia del cmdlet Get-NetFirewallProfile, un moderno comando de PowerShell para gestionar perfiles de firewalls.
Si este cmdlet está disponible, el script lo emplea para activar o desactivar los perfiles especificados. La opción de bloquear todo el tráfico entrante y permitir el saliente añade una capa adicional de seguridad.
En ausencia del cmdlet Get-NetFirewallProfile, el script vuelve a la antigua herramienta de línea de comandos netsh.exe.
Posibles casos de uso
Imaginemos a Marta, profesional de TI en una multinacional. Están introduciendo una nueva aplicación, pero durante las pruebas descubren que ésta no puede comunicarse con su servidor. Ante la sospecha de un problema con el firewall, Marta utiliza este script para desactivar temporalmente los perfiles del firewall, probar la aplicación y, a continuación, volver a activarlos. Esta acción rápida ayuda a diagnosticar el problema sin navegación manual.
Comparaciones
El script proporciona un enfoque programático para la gestión de perfiles de firewalls. Las alternativas incluyen el ajuste manual a través de la GUI del Firewall de Windows o el uso de Objetos de Directiva de Grupo (GPO) para máquinas unidas a un dominio. Sin embargo, ninguno cuenta con la inmediatez de este script.
Preguntas frecuentes
- ¿Puedo ejecutar este script en cualquier equipo Windows?
Está diseñado para Windows 10 y Windows Server 2016 y superiores. - ¿Necesito permisos especiales para ejecutar este script?
Sí, se necesitan privilegios de administrador.
Implicaciones para la seguridad
La posibilidad de cambiar rápidamente los perfiles de firewall es un arma de doble filo. Desactivarlas, aunque sea momentáneamente, puede exponer los sistemas a amenazas. Es vital comprender las implicaciones para la seguridad y garantizar que los sistemas permanezcan protegidos.
Recomendaciones
- Prueba el script en un entorno controlado primero.
- Si desactivas el firewall para realizar el diagnóstico, vuelve a activarlo inmediatamente después.
- Relee periódicamente las reglas del firewall para garantizar su conformidad con las políticas de seguridad.
Reflexiones finales
La gestión de los perfiles del Firewall de Windows es esencial para la seguridad de la red y del sistema. Mientras que herramientas como NinjaOne ofrecen soluciones integrales de gestión de TI, scripts como el que acabamos de ver son muy valiosos para tareas específicas. Como siempre, comprender su funcionamiento y sus implicaciones garantiza un uso eficaz y seguro.