Skip to content

Commit

Permalink
feat(glimps): add view token to analysis result
Browse files Browse the repository at this point in the history
  • Loading branch information
glimps-cbi committed Nov 19, 2024
1 parent aee667c commit 0adeecf
Show file tree
Hide file tree
Showing 25 changed files with 888 additions and 833 deletions.
9 changes: 5 additions & 4 deletions Glimps/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Waitfor action : submit a file to Glimps detect and wit for analysis to finish
- Get status action : get Glimps detect profile status
- export submission : export analysis result in a given format and layout
- Waitfor action: submit a file to GLIMPS detect and wait for analysis to finish
- Get status action: get GLIMPS detect profile status
- Export submission: export analysis result in a given format and layout

### Changed

- use Glimps py-gdetect client to perform actions
- Upgrade sekoia-automation-sdk
- Use GLIMPS py-gdetect client to perform actions

## 2024-05-28 - 1.13.0

Expand Down
16 changes: 8 additions & 8 deletions Glimps/action_analyse_a_file.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,42 @@
"name": "Analyse a file",
"description": "Submit file to Glimps Detect to be analysed",
"uuid": "14c3192f-532c-506d-ae0d-452b64d8718d",
"docker_parameters": "SubmitFileToBeAnalysed",
"docker_parameters": "SubmitFile",
"arguments": {
"title": "SubmitArgument",
"type": "object",
"properties": {
"file_name": {
"title": "File Name",
"description": "name of submitted file",
"description": "Name of submitted file",
"type": "string"
},
"bypass_cache": {
"title": "Bypass Cache",
"description": "If True, the file is analyzed, even if a result already exists",
"description": "If true, file is analyzed, even if a result already exists",
"default": false,
"type": "boolean"
},
"user_tags": {
"title": "User Tags",
"description": "If filled, the file will be tagged with those tags",
"description": "Analysis will be tagged with those tags",
"default": [],
"type": "array",
"items": {}
},
"description": {
"title": "Description",
"description": " If filled, a description will be added to the analysis",
"description": "Description added to the analysis",
"type": "string"
},
"archive_pwd": {
"title": "Archive Pwd",
"description": "If filled, the password used to extract archive",
"description": "Password used to extract archive",
"type": "string"
},
"push_timeout": {
"title": "Push Timeout",
"description": "The maximum time (in seconds) to wait for a response when submitting file",
"description": "Maximum time (in seconds) to wait for a response when submitting file",
"default": 30,
"type": "number"
}
Expand All @@ -58,7 +58,7 @@
},
"uuid": {
"title": "Uuid",
"description": "uuid of the submitted analysis",
"description": "UUID of the submitted analysis",
"type": "string"
}
}
Expand Down
Loading

0 comments on commit 0adeecf

Please sign in to comment.