Skip to content

Commit

Permalink
Fixing IOC test for XL4MA
Browse files Browse the repository at this point in the history
  • Loading branch information
phutelmyer committed Nov 3, 2023
1 parent 714b5d8 commit 8244c4a
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/python/strelka/tests/test_scan_xl4ma.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,20 @@ def test_scan_xl4ma(mocker):
"https://www.example.com/path/to/resource",
]
),
"iocs": ["https://www.example.com/path/to/resource"],
"iocs": [
{
"ioc": "example.com",
"ioc_type": "domain",
"scanner": "ScanXl4ma",
"description": "extracted from excel4 macro",
},
{
"ioc": "https://www.example.com/path/to/resource",
"ioc_type": "url",
"scanner": "ScanXl4ma",
"description": "extracted from excel4 macro",
},
],
}

scanner_event = run_test_scan(
Expand Down

0 comments on commit 8244c4a

Please sign in to comment.