How to Upload a Single File to Cado
You can upload a single file, such as a disk image or a previously collected Cado Host zip file, using Cado Host with the upload
command. This method is useful when you do not have direct access to AWS, Azure, or GCP, as Cado will generate the required credentials during the import process.
Steps to Upload a Single File:
-
Generate Upload Credentials
In the Cado Platform, go to Import > Cado Host to generate the credentials for the upload. -
Copy Presigned Data
In the investigator system, copy the--presigned_data
portion of the script to your clipboard. -
Execute the Command
Run the following command on the investigator system:./cado-host upload $file <paste clipboard presigned_data>
Replace
$file
with the path to the file you wish to upload. -
Automatic Processing
Cado Host will upload the specified file, and Cado will automatically begin the import and processing of the file.
Here’s the full Markdown section ready to paste into your documentation:
Manual Upload: Example Workflow
This example demonstrates how to extract files from a macOS disk image and upload the resulting collection to Cado for processing.
1. Attach the Disk Image
Use hdiutil
to mount the disk image in read-only mode:
hdiutil attach -readonly /path/to/disk-image.dmg
Example output:
/dev/disk6s1 41504600-0000-00AA-AA11-0030654 /Volumes/DISK
/dev/disk6s2 41504600-0000-00AA-AA11-0030654
/dev/disk6s3 41504600-0000-00AA-AA11-0030654
/dev/disk6s4 41504600-0000-00AA-AA11-0030654
Take note of the mount point (e.g., /Volumes/DISK
).
2. Download and Extract UAC
Download the UAC tool and extract it.
Open the extracted directory in a terminal window.