policedog.php 296 B

12345678910111213141516
  1. <?php
  2. /*
  3. * PoliceDog processing
  4. */
  5. if (ubRouting::get('action') == 'policedog') {
  6. if ($alterconf['POLICEDOG_ENABLED']) {
  7. $runPoliceDog = new PoliceDog();
  8. $runPoliceDog->fastScan();
  9. die('OK:POLICEDOG');
  10. } else {
  11. die('ERROR:POLICEDOG_DISABLED');
  12. }
  13. }