From f63cb585b29e0fd448fc5509312575ea19dfa353 Mon Sep 17 00:00:00 2001 From: Nex Date: Tue, 11 Jan 2022 15:59:01 +0100 Subject: [PATCH] Shortened command to download-iocs --- docs/iocs.md | 2 +- mvt/android/cli.py | 4 ++-- mvt/ios/cli.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/iocs.md b/docs/iocs.md index c05b887..870e283 100644 --- a/docs/iocs.md +++ b/docs/iocs.md @@ -41,6 +41,6 @@ export MVT_STIX2="/home/user/IOC1.stix2:/home/user/IOC2.stix2" - [Predator from Cytrox](https://citizenlab.ca/2021/12/pegasus-vs-predator-dissidents-doubly-infected-iphone-reveals-cytrox-mercenary-spyware/) ([STIX2](https://raw.githubusercontent.com/AmnestyTech/investigations/master/2021-12-16_cytrox/cytrox.stix2)) - [This repository](https://github.com/Te-k/stalkerware-indicators) contains IOCs for Android stalkerware including [a STIX MVT-compatible file](https://raw.githubusercontent.com/Te-k/stalkerware-indicators/master/stalkerware.stix2). -You can automaticallly download the latest public indicator files with the command `mvt-ios download-indicators` or `mvt-android download-indicators`. +You can automaticallly download the latest public indicator files with the command `mvt-ios download-iocs` or `mvt-android download-iocs`. Please [open an issue](https://github.com/mvt-project/mvt/issues/) to suggest new sources of STIX-formatted IOCs. diff --git a/mvt/android/cli.py b/mvt/android/cli.py index b8d3e19..d262a19 100644 --- a/mvt/android/cli.py +++ b/mvt/android/cli.py @@ -200,8 +200,8 @@ def check_backup(ctx, iocs, output, backup_path, serial): run_module(m) #============================================================================== -# Command: download-indicators +# Command: download-iocs #============================================================================== -@cli.command("download-indicators", help="Download public STIX2 indicators") +@cli.command("download-iocs", help="Download public STIX2 indicators") def download_indicators(): download_indicators_files(log) diff --git a/mvt/ios/cli.py b/mvt/ios/cli.py index f803abd..045d7d1 100644 --- a/mvt/ios/cli.py +++ b/mvt/ios/cli.py @@ -296,8 +296,8 @@ def check_iocs(ctx, iocs, list_modules, module, folder): continue #============================================================================== -# Command: download-indicators +# Command: download-iocs #============================================================================== -@cli.command("download-indicators", help="Download public STIX2 indicators") +@cli.command("download-iocs", help="Download public STIX2 indicators") def download_indicators(): download_indicators_files(log)