MISP (core software) - Open Source Threat Intelligence and Sharing Platform (formely known as Malware Information Sharing Platform) https://www.misp-project.org/
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
586 B

  1. --- app/webroot/index.php.orig 2012-09-20 15:51:02.508680629 +0200
  2. +++ app/webroot/index.php 2012-09-06 13:45:12.555544956 +0200
  3. @@ -86,6 +86,10 @@
  4. trigger_error("CakePHP core could not be found. Check the value of CAKE_CORE_INCLUDE_PATH in APP/webroot/index.php. It should point to the directory containing your " . DS . "cake core directory and your " . DS . "vendors root directory.", E_USER_ERROR);
  5. }
  6. + if (isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] == '/favicon.ico') {
  7. + return;
  8. + }
  9. +
  10. App::uses('Dispatcher', 'Routing');
  11. $Dispatcher = new Dispatcher();