Update eliminate connection logic to refine firewall rules and upgrade Scurvy library to latest version

This commit is contained in:
Evan Hosinski
2025-10-11 18:06:42 -04:00
parent b855f0eaec
commit 9c54a22bcf
3 changed files with 7 additions and 5 deletions
+4 -4
View File
@@ -23,11 +23,11 @@ func EliminateConnection(dst string) error {
return fw.AddRule(firewall.FirewallRule{
Name: fmt.Sprintf("Block Outgoing %s", dst),
Direction: "outbound",
Protocol: "any",
LocalPort: "any",
RemotePort: "any",
Protocol: "*",
LocalPort: "",
RemotePort: "",
LocalAddress: "",
RemoteAddress: "",
RemoteAddress: "%s",
Action: "block",
Profile: "",
Destination: dst,