Skip to content

Commit 890fb74

Browse files
authored
Merge pull request #649 from Ana06/vbox-export
Improve vbox-export-snapshots.py
2 parents ea57b69 + 365a471 commit 890fb74

5 files changed

+248
-122
lines changed

virtualbox/README.md

+27-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,38 @@
44

55
## Export snapshots
66

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.
88
It also generates a file with the SHA256 hash of the exported `.ova`.
99
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).
1010
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`.
1111
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.
1214

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+
```
1339

1440
## Check internet adapter status
1541

virtualbox/configs/export_remnux.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"VM_NAME": "REMnux.testing",
3+
"EXPORTED_VM_NAME": "REMnux",
4+
"SNAPSHOTS": [
5+
[
6+
"DONE",
7+
".dynamic",
8+
"REMnux (based on Ubuntu) with improved configuration"
9+
]
10+
]
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"VM_NAME": "FLARE-VM.testing",
3+
"EXPORTED_VM_NAME": "FLARE-VM",
4+
"SNAPSHOTS": [
5+
[
6+
"FLARE-VM",
7+
".dynamic",
8+
"Windows 10 VM with FLARE-VM default configuration"
9+
],
10+
[
11+
"FLARE-VM.full",
12+
".full.dynamic",
13+
"Windows 10 VM with FLARE-VM default configuration + visualstudio.vm + pdbs.pdbresym.vm + microsoft-office.vm"
14+
],
15+
[
16+
"FLARE-VM.EDU",
17+
".EDU",
18+
"Windows 10 VM with FLARE-VM default configuration + FLARE-EDU materials"
19+
]
20+
]
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"VM_NAME": "FLARE-VM.Win11.testing",
3+
"EXPORTED_VM_NAME": "FLARE-VM",
4+
"SNAPSHOTS": [
5+
[
6+
"FLARE-VM",
7+
".win11.dynamic",
8+
"Windows 11 VM with FLARE-VM default configuration"
9+
],
10+
[
11+
"FLARE-VM.full",
12+
"win11.full.dynamic",
13+
"Windows 11 VM with FLARE-VM default configuration + visualstudio.vm + pdbs.pdbresym.vm + microsoft-office.vm"
14+
]
15+
]
16+
}

0 commit comments

Comments
 (0)