ソースを参照

Check for AMT within tests, because it could get turned on after installation

Bob Mottram 8 年 前
コミット
cbddf8308f
共有2 個のファイルを変更した1 個の追加4 個の削除を含む
  1. 1
    0
      src/freedombone-tests
  2. 0
    4
      src/freedombone-utils-setup

+ 1
- 0
src/freedombone-tests ファイルの表示

1148
 
1148
 
1149
 test_app_functions
1149
 test_app_functions
1150
 test_unique_onion_ports
1150
 test_unique_onion_ports
1151
+check_for_AMT
1151
 fix_stig
1152
 fix_stig
1152
 test_stig
1153
 test_stig
1153
 
1154
 

+ 0
- 4
src/freedombone-utils-setup ファイルの表示

372
 }
372
 }
373
 
373
 
374
 function check_for_AMT {
374
 function check_for_AMT {
375
-    if [[ $ARCHITECTURE == 'arm'* ]]; then
376
-        return
377
-    fi
378
-
379
     pci_hardware=$(lspci)
375
     pci_hardware=$(lspci)
380
     if [[ "$pci_hardware" == *"MEI"* || "$pci_hardware" == *"HECI"* ]]; then
376
     if [[ "$pci_hardware" == *"MEI"* || "$pci_hardware" == *"HECI"* ]]; then
381
         echo $'Intel Active Management Technology (Management Engine) was detected. This is an active backdoor.'
377
         echo $'Intel Active Management Technology (Management Engine) was detected. This is an active backdoor.'