security.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /* Copyright (C) 2011-2015 Regis Houssin <regis.houssin@capnetworks.com>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. /**
  18. * \file htdocs/core/ajax/security.php
  19. * \brief This ajax component is used to generated has keys for security purposes
  20. * like key to use into URL to protect them.
  21. */
  22. if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); // Disables token renewal
  23. if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1');
  24. if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1');
  25. if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1');
  26. if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1');
  27. if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1');
  28. if (! defined('NOREQUIREHOOK')) define('NOREQUIREHOOK','1');
  29. require '../../main.inc.php';
  30. /*
  31. * View
  32. */
  33. //top_htmlhead("", "", 1); // Replaced with top_httphead. An ajax page does not need html header.
  34. top_httphead();
  35. //print '<!-- Ajax page called with url '.$_SERVER["PHP_SELF"].'?'.$_SERVER["QUERY_STRING"].' -->'."\n";
  36. // Registering the location of boxes
  37. if (isset($_GET['action']) && ! empty($_GET['action']))
  38. {
  39. if ($_GET['action'] == 'getrandompassword' && $user->admin)
  40. {
  41. require_once DOL_DOCUMENT_ROOT.'/core/lib/security2.lib.php';
  42. $generic = $_GET['generic'] ? true : false;
  43. echo getRandomPassword($generic);
  44. }
  45. }