updating settings to allow killing a virus process
This commit is contained in:
@@ -19,6 +19,7 @@ if($perms[5]!=="1"){
|
||||
$block=0;
|
||||
}
|
||||
$setting_virus_ctrl_virus_found_action = "not configured yet";
|
||||
$setting_virus_ctrl_virus_process_found_kill = 0;
|
||||
$setting_communication_unsafe_tls = "not configured yet";
|
||||
$setting_server_server_url="not configured yet";
|
||||
$setting_rtp_folder_scan_status=0;
|
||||
@@ -155,6 +156,16 @@ load_settings();
|
||||
</ul>
|
||||
</div>
|
||||
<br>
|
||||
<h7>Kill processes which are detected to be a virus?</h7>
|
||||
<div class="form-check form-switch">
|
||||
<?php if($setting_virus_ctrl_virus_process_found_kill=="true")
|
||||
echo ("<input class=\"form-check-input\" type=\"checkbox\" role=\"switch\" id=\"kill_virus_process\" onclick=\"update_switch('kill_virus_process','setting_virus_ctrl_virus_process_found_kill')\" checked>");
|
||||
else
|
||||
echo ("<input class=\"form-check-input\" type=\"checkbox\" role=\"switch\" id=\"kill_virus_process\" onclick=\"update_switch('kill_virus_process','setting_virus_ctrl_virus_process_found_kill')\">");
|
||||
?>
|
||||
<label class="form-check-label" for="flexSwitchCheckDefault">Check file modifications</label>
|
||||
</div>
|
||||
<br>
|
||||
<h7>Allow communication with unsafe ssl cert? (if you are using self signed certs, activate this option)</h7>
|
||||
<div class="dropdown">
|
||||
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton2" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
|
||||
Reference in New Issue
Block a user