2013-11-01 00:15:14 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-11 09:58:15 +00:00
|
|
|
* PrivateBin
|
2013-11-01 00:15:14 +00:00
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
2016-07-11 09:58:15 +00:00
|
|
|
* @link https://github.com/PrivateBin/PrivateBin
|
2013-11-01 00:15:14 +00:00
|
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
2016-07-19 11:56:52 +00:00
|
|
|
* @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
2018-08-11 17:29:58 +00:00
|
|
|
* @version 1.2.1
|
2013-11-01 00:15:14 +00:00
|
|
|
*/
|
2016-12-12 17:43:23 +00:00
|
|
|
|
2016-12-12 17:49:08 +00:00
|
|
|
namespace PrivateBin\Persistence;
|
2016-07-21 15:09:48 +00:00
|
|
|
|
|
|
|
use Exception;
|
|
|
|
|
2013-11-01 00:15:14 +00:00
|
|
|
/**
|
2016-08-09 09:54:42 +00:00
|
|
|
* ServerSalt
|
2013-11-01 00:15:14 +00:00
|
|
|
*
|
2016-07-11 09:58:15 +00:00
|
|
|
* This is a random string which is unique to each PrivateBin installation.
|
2013-11-01 00:15:14 +00:00
|
|
|
* It is automatically created if not present.
|
|
|
|
*
|
|
|
|
* Salt is used:
|
2016-07-11 09:58:15 +00:00
|
|
|
* - to generate unique VizHash in discussions (which are not reproductible across PrivateBin servers)
|
|
|
|
* - to generate unique deletion token (which are not re-usable across PrivateBin servers)
|
2013-11-01 00:15:14 +00:00
|
|
|
*/
|
2016-08-09 09:54:42 +00:00
|
|
|
class ServerSalt extends AbstractPersistence
|
2013-11-01 00:15:14 +00:00
|
|
|
{
|
2016-08-10 21:15:06 +00:00
|
|
|
/**
|
|
|
|
* file where salt is saved to
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private static $_file = 'salt.php';
|
|
|
|
|
2013-11-01 00:15:14 +00:00
|
|
|
/**
|
2015-08-16 13:55:31 +00:00
|
|
|
* generated salt
|
|
|
|
*
|
2013-11-01 00:15:14 +00:00
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private static $_salt = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* generate a large random hexadecimal salt
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function generate()
|
|
|
|
{
|
2016-08-10 21:15:06 +00:00
|
|
|
$randomSalt = bin2hex(random_bytes(256));
|
2015-08-27 19:41:21 +00:00
|
|
|
return $randomSalt;
|
2013-11-01 00:15:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get server salt
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
2015-08-27 19:41:21 +00:00
|
|
|
* @throws Exception
|
2013-11-01 00:15:14 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function get()
|
|
|
|
{
|
2016-07-26 06:19:35 +00:00
|
|
|
if (strlen(self::$_salt)) {
|
|
|
|
return self::$_salt;
|
|
|
|
}
|
2013-11-01 00:15:14 +00:00
|
|
|
|
2016-08-10 21:15:06 +00:00
|
|
|
if (self::_exists(self::$_file)) {
|
|
|
|
if (is_readable(self::getPath(self::$_file))) {
|
|
|
|
$items = explode('|', file_get_contents(self::getPath(self::$_file)));
|
2016-08-09 09:54:42 +00:00
|
|
|
}
|
|
|
|
if (!isset($items) || !is_array($items) || count($items) != 3) {
|
2016-08-10 21:15:06 +00:00
|
|
|
throw new Exception('unable to read file ' . self::getPath(self::$_file), 20);
|
2015-08-27 19:41:21 +00:00
|
|
|
}
|
|
|
|
self::$_salt = $items[1];
|
|
|
|
} else {
|
|
|
|
self::$_salt = self::generate();
|
2013-02-24 16:41:32 +00:00
|
|
|
self::_store(
|
2016-08-10 21:15:06 +00:00
|
|
|
self::$_file,
|
2018-07-29 13:50:36 +00:00
|
|
|
'<?php # |' . self::$_salt . '|'
|
2013-02-24 16:41:32 +00:00
|
|
|
);
|
2013-11-01 00:15:14 +00:00
|
|
|
}
|
2015-08-27 19:41:21 +00:00
|
|
|
return self::$_salt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set the path
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
* @param string $path
|
|
|
|
*/
|
|
|
|
public static function setPath($path)
|
|
|
|
{
|
2016-07-26 06:19:35 +00:00
|
|
|
self::$_salt = '';
|
2015-08-27 19:41:21 +00:00
|
|
|
parent::setPath($path);
|
2013-11-01 00:15:14 +00:00
|
|
|
}
|
|
|
|
}
|