From 7a28b5be72f8f93014c68acf726eb672f4555359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Andr=C3=A9?= Date: Wed, 20 Jan 2016 13:38:18 +0100 Subject: [PATCH] Updated version check for cybox to be consistent with documentation Related to installation documentation update recommending to use 2.1.0.12 as cybox version (a23027eee4ea9c09d92cf1d5b6f9e69fa9934057) --- app/Model/Server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Model/Server.php b/app/Model/Server.php index 9dee55bec..b6c1951da 100755 --- a/app/Model/Server.php +++ b/app/Model/Server.php @@ -1480,7 +1480,7 @@ class Server extends AppModel { public function stixDiagnostics(&$diagnostic_errors, &$stixVersion, &$cyboxVersion) { $result = array(); - $expected = array('stix' => '1.1.1.4', 'cybox' => '2.1.0.10'); + $expected = array('stix' => '1.1.1.4', 'cybox' => '2.1.0.12'); // check if the STIX and Cybox libraries are working using the test script stixtest.py $scriptResult = shell_exec('python ' . APP . 'files' . DS . 'scripts' . DS . 'stixtest.py'); $scriptResult = json_decode($scriptResult, true);