PortalAuth, Papers, and CursedScreech Updates (#87)

* Version 1.9

* Version 2.0

* Version 1.6

* Updated Papers to v2.0

* Replaced readKeys.sh with cfgNginx.py

* Fixed PKCS12 export bug

Co-authored-by: combsn <combsn@usc.edu>
This commit is contained in:
Nick
2020-07-19 16:24:52 -04:00
committed by GitHub
parent f1ca07b311
commit aa43cb5e23
54 changed files with 4244 additions and 182 deletions

View File

@@ -313,7 +313,7 @@ class CursedScreech extends Module {
$data = array();
exec("pgrep -lf " . $procName, $data);
$output = explode(" ", $data[0]);
if (strpos($output[2], $procName) !== False) {
if (strpos($output[1], "python") !== False) {
return $output[0];
}
return false;
@@ -651,4 +651,4 @@ class CursedScreech extends Module {
return true;
}
}
}
}