Skip to content

Commit

Permalink
Merge branch 'tkt_350_fix_crowndstike_ip_resolution' into 'dev'
Browse files Browse the repository at this point in the history
Resolve "fix crowdstike ip resolution"

Closes #350

See merge request faradaysec/faraday-plugins!263
  • Loading branch information
David Kraus committed Sep 11, 2024
2 parents fc0dd95 + bfa74b7 commit e4554e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG/current/350.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[FIX] Crowdstrike IP resolution for asset #350
2 changes: 1 addition & 1 deletion faraday_plugins/plugins/repo/crowdstrike/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(self, *arg, **kwargs):
def parseOutputString(self, output):
parser = loads(output)
for site in parser:
site_name = site.get('site_name')
site_name = site.get('local_ip')
hostname = site.get('hostname')
host_tags = site.get('host_tags')
os_version = site.get('os_version')
Expand Down

0 comments on commit e4554e3

Please sign in to comment.