Skip to content

Commit

Permalink
feat: Adding additional custom type support
Browse files Browse the repository at this point in the history
  • Loading branch information
penwoodjon committed Nov 27, 2024
1 parent 07e5a82 commit 9db1da4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
25 changes: 13 additions & 12 deletions config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,22 @@
"name": "CrowdStrike",
"acronym": "CSTK",
"description": "Displays information from relevant Crowdstrike Falcon detections based on searching behavioral indicators (process hashes, filenames) and device information (IPv4 address).",
"entityTypes": [
"supportsAdditionalCustomTypes": true,
"dataTypes": [
"MD5",
"SHA256",
"IPv4",
"domain"
"domain",
{
"name": "Executable File Name",
"description": "File Names that end in exe, dll, dmg, doc, pdf, csv, or sh",
"editable": true,
"enabled": true,
"key": "exeFile",
"regex": "[\\w-]{2,}\\.(?:exe|dll|dmg|doc|pdf|csv|sh)"
}
],
"entityTypes": ["MD5", "SHA256", "IPv4", "domain"],
"customTypes": [
{
"key": "exeFile",
Expand All @@ -17,9 +27,7 @@
],
"onDemandOnly": true,
"defaultColor": "light-purple",
"styles": [
"./styles/crowdstrike.less"
],
"styles": ["./styles/crowdstrike.less"],
"block": {
"component": {
"file": "./components/crowdstrike-block.js"
Expand All @@ -28,13 +36,6 @@
"file": "./templates/crowdstrike-block.hbs"
}
},
"request": {
"cert": "",
"key": "",
"passphrase": "",
"ca": "",
"proxy": ""
},
"logging": {
"level": "info"
},
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crowdstrike",
"version": "3.7.3",
"version": "3.7.4",
"main": "./integration.js",
"private": true,
"license": "MIT",
Expand Down

0 comments on commit 9db1da4

Please sign in to comment.