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.
 
 
 
 
 
 

49 lines
2.5 KiB

  1. --- app/Config/bootstrap.php.orig 2012-09-25 13:05:31.180283040 +0200
  2. +++ app/Config/bootstrap.php 2012-09-25 13:05:59.960283572 +0200
  3. @@ -85,6 +85,45 @@
  4. */
  5. Cache::config('default', array('engine' => 'File'));
  6. +//Configure::write('CyDefSIG.baseurl', 'https://sig.cyber-defence.be');
  7. +Configure::write('CyDefSIG.baseurl', 'http://localhost:8888');
  8. +Configure::write('CyDefSIG.name', 'CyDefSIG');
  9. +Configure::write('CyDefSIG.header', 'CyDefSIG: Cyber Defence Signature Sharing Platform');
  10. +Configure::write('CyDefSIG.footer', 'Powered by CyDefSIG © Belgian Defense CERT & NCIRC');
  11. +Configure::write('CyDefSIG.org', 'BE MOD'); // if sync this will be Event.org content on the peer side
  12. +Configure::write('CyDefSIG.logo', 'orgs/MIL.be.png'); // used in Events::index for owned events
  13. +
  14. +
  15. +Configure::write('CyDefSIG.showorg', 'true'); // show the name/flag of the organisation that uploaded the data
  16. +Configure::write('CyDefSIG.showowner', 'false'); // show the email of the owner that uploaded the data
  17. +Configure::write('CyDefSIG.sync', 'false'); // enable features related to syncing with other CyDefSIG instances
  18. +Configure::write('CyDefSIG.email', 'no-reply@sig.mil.be'); // email from for all the mails
  19. +
  20. +Configure::write('GnuPG.onlyencrypted', 'true'); // only allow encrypted email, do not allow plaintext mails
  21. +Configure::write('GnuPG.email', 'no-reply@sig.mil.be');
  22. +Configure::write('GnuPG.password', 'ii3naxoK|o2a');
  23. +Configure::write('GnuPG.homedir', '/Users/chri/Documents/Work/Projects/201107-CyDefSIG/.gnupg/');
  24. +
  25. +Configure::write('SecureAuth.amount', 5); // the maximum amount of failed logins
  26. +Configure::write('SecureAuth.expire', 300); // the time-window for the maximum amount of logins in seconds
  27. +
  28. +Configure::write('CyDefSIG.correlation', 'sql'); // correlation between attributes of events.
  29. + // possible values:
  30. + // - default, like it was
  31. + // - db, correlation in database
  32. + // - sql, selection on event i.s.o. per attribute (improvement possible)
  33. +/**
  34. + * Network activity, ip-src
  35. + * 30 class-C network ip addresses
  36. + * (time in ms)
  37. + *
  38. + * default db sql
  39. + * all 25366 16601 15941
  40. + * 24839 16604 15611
  41. + * paginated 16759 8447 6615
  42. + * 17734 8639 8846
  43. + */
  44. +
  45. /**
  46. * The settings below can be used to set additional paths to models, views and controllers.
  47. *