A portable volatile memory acquisition tool for Linux.
AVML is an X86_64 userland volatile memory acquisition tool written in Rust, intended to be deployed as a static binary. AVML can be used to acquire memory without knowing the target OS distribution or kernel a priori. No on-target compilation or fingerprinting is needed.
If the memory source is not specified on the commandline, AVML will iterate over the memory sources to find a functional source.
On the target host:
avml --compress output.lime.compressed
On the target host:
avml output.lime
On a secure host with az cli
credentials, generate a SAS URL.
EXPIRY=$(date -d '1 day' '+%Y-%m-%dT%H:%MZ')
SAS_URL=$(az storage blob generate-sas --account-name ACCOUNT --container CONTAINER test.lime --full-uri --permissions c --output tsv --expiry ${EXPIRY})
On the target host, execute avml with the generated SAS token.
avml --sas-url ${SAS_URL} --delete output.lime
On a secure host with az cli
credentials, do the following:
config.json
containing the following information:
{
"commandToExecute": "./avml --compress --sas-url <GENERATED_SAS_URL> --delete",
"fileUris": ["https://FULL.URL.TO.AVML.example.com/avml"]
}
config.json
az vm extension set -g RESOURCE_GROUP --vm-name VM_NAME --publisher Microsoft.Azure.Extensions -n customScript --settings config.json
On a secure host, generate a S3 pre-signed URL or generate a GCP pre-signed URL.
On the target host, execute avml with the generated pre-signed URL.
avml --put ${URL} --delete output.lime
avml-convert ./compressed.lime ./uncompressed.lime
avml-convert --source-format lime --format lime_compressed ./uncompressed.lime ./compressed.lime
```
USAGE:
avml [OPTIONS]
ARGS:
OPTIONS: --compress compress via snappy
--delete
delete upon successful upload
-h, --help
Print help information
--sas-block-concurrency <SAS_BLOCK_CONCURRENCY>
specify blob upload concurrency
--sas-block-size <SAS_BLOCK_SIZE>
specify maximum block size in MiB
--sas-url <SAS_URL>
upload via Azure Blob Store upon acquisition
--source <SOURCE>
specify input source [possible values: /dev/crash, /dev/mem, /proc/kcore]
--url <URL>
upload via HTTP PUT upon acquisition
-V, --version
Print version information
```
# Install MUSL
sudo apt-get install musl-dev musl-tools musl
# Install Rust via rustup
curl https://sh.rustup.rs -sSf | sh -s -- -y
# Add the MUSL target for Rust
rustup target add x86_64-unknown-linux-musl
# Build
cargo build --release --target x86_64-unknown-linux-musl
# Build without upload functionality
cargo build --release --target x86_64-unknown-linux-musl --no-default-features
The testing scripts will create, use, and cleanup a number of resource groups, virtual machines, and a storage account.
az login
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) at secure@microsoft.com. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the Security TechCenter.