From 912b62e91be3e9efe3fbb78c0302667c2aa48382 Mon Sep 17 00:00:00 2001 From: Andres Hermosilla Date: Tue, 8 May 2018 09:11:06 -0700 Subject: [PATCH] Added command for opening port in Windows firewall --- security-blue-team.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/security-blue-team.md b/security-blue-team.md index f4c092d..f1c8ab0 100644 --- a/security-blue-team.md +++ b/security-blue-team.md @@ -10,4 +10,11 @@ - https://github.com/adulau/MalwareClassifier/ - http://www.austintaylor.io/suricata/elasticsearch/logstash/continuous/monitoring/intrusion/detection/system/2016/12/17/build-a-world-class-monitoring-system-enterprise-small-office-home/ - https://blog.appsecco.com/automated-defense-using-serverless-computing-84ee04b9b129 -- https://github.com/nim4/DBShield \ No newline at end of file +- https://github.com/nim4/DBShield + + +**Windows Firewall open port** +```shell +netsh firewall add portopening protocol=TCP port=5151 name="Web Server (TCP 5151)" mode=ENABLE +netsh firewall reset +```