|
4 | 4 |
|
5 | 5 | ## Export snapshots
|
6 | 6 |
|
7 |
| -[`vbox-export-snapshots.py`](vbox-export-snapshots.py) export one or more snapshots in the same VirtualBox virtual machine (VM) as `.ova`, changing the network adapter to Host-Only. |
| 7 | +[`vbox-export-snapshots.py`](vbox-export-snapshots.py) export one or more snapshots in the same VirtualBox VM as .ova, changing the network to a single Host-Only interface. |
8 | 8 | It also generates a file with the SHA256 hash of the exported `.ova`.
|
9 | 9 | This script is useful to export several versions of FLARE-VM after its installation consistently and with the internet disabled by default (desired for malware analysis).
|
10 | 10 | For example, you may want to export a VM with the default FLARE-VM configuration and another installing in addition the packages `visualstudio.vm` and `pdbs.pdbresym.vm`.
|
11 | 11 | These packages are useful for malware analysis but are not included in the default configuration because of the consequent increase in size.
|
| 12 | +The scripts receives the path of the JSON configuration file as argument. |
| 13 | +See configuration example files in the [`configs`](configs/) directory. |
12 | 14 |
|
| 15 | +### Example |
| 16 | + |
| 17 | +``` |
| 18 | +$ ./vbox-export-snapshots.py configs/export_win10_flare-vm.json |
| 19 | +
|
| 20 | +Exporting snapshots from "FLARE-VM.testing" {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} |
| 21 | +Export directory: "/home/anamg/EXPORTED VMS" |
| 22 | +
|
| 23 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} state: running. Shutting down VM... |
| 24 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} ✨ restored snapshot "FLARE-VM" |
| 25 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} state: saved. Starting VM... |
| 26 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} state: running. Shutting down VM... |
| 27 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} ⚙️ network set to single hostonly adapter |
| 28 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} 🔄 power cycling before export... (it will take some time, go for an 🍦!) |
| 29 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} state: poweroff. Starting VM... |
| 30 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} state: running. Shutting down VM... |
| 31 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} 🚧 exporting "FLARE-VM.20250129.dynamic"... (it will take some time, go for an 🍦!) |
| 32 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} ✅ EXPORTED "/home/anamg/EXPORTED VMS/FLARE-VM.20250129.dynamic.ova" |
| 33 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} ✅ GENERATED "/home/anamg/EXPORTED VMS/FLARE-VM.20250129.dynamic.ova.sha256": 73c3de4175449987ef6047f6e0bea91c1036a8599b43113b3f990104ab294a47 |
| 34 | +
|
| 35 | +VM {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} ❌ ERROR exporting "FLARE-VM.full":Command 'VBoxManage snapshot {2bc66f50-9ecb-4b10-a4dd-0cc329bc383d} restore FLARE-VM.full' failed: Could not find a snapshot named 'FLARE-VM.full' |
| 36 | +
|
| 37 | +Done! 🙃 |
| 38 | +``` |
13 | 39 |
|
14 | 40 | ## Check internet adapter status
|
15 | 41 |
|
|
0 commit comments