Skip to content

Commit

Permalink
Merge pull request #54 from jinyoungmoonDEV/master
Browse files Browse the repository at this point in the history
fix: fix vulnerable_ports field name
  • Loading branch information
jinyoungmoonDEV authored Dec 5, 2024
2 parents 648a0dd + 1ec4985 commit 549a079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin/manager/ec2/security_group_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def custom_security_group_inbound_rule_info(self, raw_rule, remote, remote_type,
raw_rule.update(
{
"vulnerable_ports": ports,
"has_vulnerable_ports": "true" if ports else "false"
"detected_vulnerable_ports": True if ports else False
}
)

Expand Down

0 comments on commit 549a079

Please sign in to comment.