create_smb_repository
Set up an SMB evidence repository by defining a network share path, authentication credentials, and organization associations. Streamline forensic data storage and access for incident response.
Instructions
Create a new SMB evidence repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name for the SMB repository | |
organizationIds | No | Organization IDs to associate the repository with. Defaults to empty array. | |
password | Yes | Password for SMB authentication | |
path | Yes | Network share path (e.g. \\Network\Share) | |
username | Yes | Username for SMB authentication |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name for the SMB repository",
"type": "string"
},
"organizationIds": {
"description": "Organization IDs to associate the repository with. Defaults to empty array.",
"items": {
"type": "number"
},
"type": "array"
},
"password": {
"description": "Password for SMB authentication",
"type": "string"
},
"path": {
"description": "Network share path (e.g. \\\\Network\\Share)",
"type": "string"
},
"username": {
"description": "Username for SMB authentication",
"type": "string"
}
},
"required": [
"name",
"path",
"username",
"password"
],
"type": "object"
}