forked from librenms/librenms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SNMPCapabilities.php
105 lines (90 loc) · 2.58 KB
/
SNMPCapabilities.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
/*
* SNMP.php
*
* -Description-
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2021 Tony Murray
* @author Tony Murray <[email protected]>
*/
namespace LibreNMS;
use Illuminate\Support\Str;
use Symfony\Component\Process\Process;
class SNMPCapabilities
{
/**
* @var bool
*/
private static $sha2;
/**
* @var bool
*/
private static $aes256;
public static function supportsSHA2(): bool
{
if (self::$sha2 === null) {
self::detectCapabilities();
}
return self::$sha2;
}
public static function supportsAES256(): bool
{
if (self::$aes256 === null) {
self::detectCapabilities();
}
return self::$aes256;
}
public static function supportedAuthAlgorithms(): array
{
return array_keys(array_filter(self::authAlgorithms()));
}
public static function supportedCryptoAlgorithms(): array
{
return array_keys(array_filter(self::cryptoAlgoritms()));
}
public static function authAlgorithms(): array
{
$sha2 = self::supportsSHA2();
return [
'SHA' => true,
'SHA-224' => $sha2,
'SHA-256' => $sha2,
'SHA-384' => $sha2,
'SHA-512' => $sha2,
'MD5' => true,
];
}
public static function cryptoAlgoritms(): array
{
$aes256 = self::supportsAES256();
return [
'AES' => true,
'AES-192' => $aes256,
'AES-256' => $aes256,
'AES-256-C' => $aes256,
'DES' => true,
];
}
private static function detectCapabilities(): void
{
$process = new Process([Config::get('snmpget', 'snmpget'), '--help']);
$process->run();
self::$sha2 = Str::contains($process->getErrorOutput(), 'SHA-512');
self::$aes256 = Str::contains($process->getErrorOutput(), 'AES-256');
}
}