-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new: [doc] Added a verify.txt to explain how to verify
new: [deploy] Addded symlinks to have an easier latest for actual files.
- Loading branch information
1 parent
d0b7ede
commit 39da435
Showing
2 changed files
with
68 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
How to verify the Automate MISP-VMs? | ||
------------------------------------ | ||
|
||
In this directory you will find the following files: | ||
|
||
- OVA File (VirtualBox export of the VM) | ||
- ZIP File (ZIP Packae of the VMware VM) | ||
- ASC File (PGP Armored file of the above files) | ||
- checksums Directory (The directory with all the checksums of the above files) | ||
|
||
Verify VirtualBox OVA | ||
--------------------- | ||
|
||
1. Download signatures | ||
|
||
Download the OVA and the ASC into the same directory. | ||
|
||
2. Verify signatures | ||
|
||
On the command line verify the PGP signature first, example: | ||
|
||
$ gpg --verify [email protected] [email protected] | ||
|
||
TODO: Include output. | ||
|
||
3. Download SFV files | ||
|
||
Now download the checksum file and its signature, and verify. | ||
|
||
$ wget https://www.circl.lu/misp-images/[email protected] | ||
$ wget https://www.circl.lu/misp-images/[email protected] | ||
$ gpg --verify /[email protected] [email protected] | ||
|
||
Next, use rhash or go with the manual way. | ||
|
||
rhash | ||
----- | ||
|
||
$ rhash -c [email protected] | ||
|
||
Verify VMware | ||
------------- | ||
|
||
1. Download signatures | ||
|
||
Download the ZIP and the ASC into the same directory. | ||
|
||
2. Verify signatures | ||
|
||
On the command line verify the PGP signature first, example: | ||
|
||
$ gpg --verify [email protected] [email protected] | ||
|
||
TODO: Include output. | ||
|
||
Do steps number 3 from above. |