From c176d565bc903e1144b3e3213b3eb542ae4e6d37 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Tue, 25 Oct 2022 15:57:35 +0530 Subject: [PATCH] vt: add page (#9317) --- pages/common/vt.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages/common/vt.md diff --git a/pages/common/vt.md b/pages/common/vt.md new file mode 100644 index 0000000000..512a50ef1a --- /dev/null +++ b/pages/common/vt.md @@ -0,0 +1,37 @@ +# vt + +> Command-line interface for VirusTotal. +> API key from a VirusTotal account is required for this command. +> More information: . + +- Scan a specific file for viruses: + +`vt scan file {{path/to/file}}` + +- Scan a URL for viruses: + +`vt scan url {{url}}` + +- Display information from a specific analysis: + +`vt analysis {{file_id|analysis_id}}` + +- Download files in encrypted `.zip` format (requires premium account): + +`vt download {{file_id}} --output {{path/to/directory}} --zip --zip-password {{password}}` + +- Initialize or re-initialize `vt` to enter API key interactively: + +`vt init` + +- Display information about a domain: + +`vt domain {{url}}` + +- Display information for a specific URL: + +`vt url {{url}}` + +- Display information for a specific IP address: + +`vt domain {{ip_address}}`