List File Names In Zipped File
LAST UPDATED: AUG 08, 2024
Return a list of the names of all the files contained in the zip archive(zip, jar, apk)
Implementation | System |
Command Category | System Utility |
Tags | INCIDENT ARTIFACT FILE |
Inputs
Parameter Name | Required/Optional | Description | Sample Data |
---|---|---|---|
File ID | Required | The ID of the zip file | 271 |
File Source | Required | Source of the file | Sample Data |
File Password | Required | The password of the zip file | password |
Output
Remote Command API
The D3 command API allows you to send requests to D3 SOAR to execute this utility command via REST API.
Request
POST
https:/{base_url}/{api_namespace}/api/Command/ListFileNamesInZippedFile
Headers
Please refer to the page Webhook Configuration Guide - Authentication Method: API Keys for more details.
Request Body
{
"Username": <Username here>,
"Site": <Site here>,
"CommandParams": {
"File ID": <File ID here>,
"File Source": <File Source here>,
"File Password": <File Password here>
}
}
Body Parameters
Parameter Name | Type | Required/Optional | Description |
---|---|---|---|
Username |
| Required | The username of your D3 SOAR account. |
Site |
| Required | The D3 SOAR site to run the remote command. |
File ID |
| Required | The ID of the zip file |
File Source |
| Required | Source of the file |
File Password |
| Required | The password of the zip file |
Sample Request
SAMPLE DATA
{
"Username": "Admin",
"Site": "Security Operations",
"CommandParams": {
"File ID": 271,
"File Source": "Playbook File",
"File Password": "password"
}
}
Response
Response Fields
Field Name | Type | Description |
---|---|---|
error |
| The error message if the API request has failed. |
returnData |
| The return data from the API request. |
contextData |
| The context data from the API request. |
Sample Response
{
"error": "",
"returnData": "Successful",
"contextData": [
"file1.txt",
"file2.csv",
"file3.pdf"
]
}