| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695 |
- <?php
- /**
- * ZeroBin
- *
- * a zero-knowledge paste bin
- *
- * @link http://sebsauvage.net/wiki/doku.php?id=php:zerobin
- * @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
- * @license http://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
- * @version 0.21
- */
- /**
- * zerobin
- *
- * Controller, puts it all together.
- */
- class zerobin
- {
- /**
- * version
- *
- * @const string
- */
- const VERSION = '0.21';
- /**
- * show the same error message if the paste expired or does not exist
- *
- * @const string
- */
- const GENERIC_ERROR = 'Paste does not exist, has expired or has been deleted.';
- /**
- * configuration array
- *
- * @access private
- * @var array
- */
- private $_conf = array(
- 'model' => 'zerobin_data',
- );
- /**
- * data
- *
- * @access private
- * @var string
- */
- private $_data = '';
- /**
- * formatter
- *
- * @access private
- * @var string
- */
- private $_formatter = 'plaintext';
- /**
- * error message
- *
- * @access private
- * @var string
- */
- private $_error = '';
- /**
- * status message
- *
- * @access private
- * @var string
- */
- private $_status = '';
- /**
- * JSON message
- *
- * @access private
- * @var string
- */
- private $_json = '';
- /**
- * data storage model
- *
- * @access private
- * @var zerobin_abstract
- */
- private $_model;
- /**
- * constructor
- *
- * initializes and runs ZeroBin
- *
- * @access public
- * @return void
- */
- public function __construct()
- {
- if (version_compare(PHP_VERSION, '5.2.6') < 0)
- {
- throw new Exception(i18n::_('ZeroBin requires php 5.2.6 or above to work. Sorry.'), 1);
- }
- // in case stupid admin has left magic_quotes enabled in php.ini
- if (get_magic_quotes_gpc())
- {
- $_POST = array_map('filter::stripslashes_deep', $_POST);
- $_GET = array_map('filter::stripslashes_deep', $_GET);
- $_COOKIE = array_map('filter::stripslashes_deep', $_COOKIE);
- }
- // load config from ini file
- $this->_init();
- // create new paste or comment
- if (
- (array_key_exists('data', $_POST) && !empty($_POST['data'])) ||
- (array_key_exists('attachment', $_POST) && !empty($_POST['attachment']))
- )
- {
- $this->_create();
- }
- // delete an existing paste
- elseif (!empty($_GET['deletetoken']) && !empty($_GET['pasteid']))
- {
- $this->_delete($_GET['pasteid'], $_GET['deletetoken']);
- }
- // display an existing paste
- elseif (!empty($_SERVER['QUERY_STRING']))
- {
- $this->_read($_SERVER['QUERY_STRING']);
- }
- // output JSON or HTML
- if (strlen($this->_json))
- {
- header('Content-type: application/json');
- echo $this->_json;
- }
- else
- {
- $this->_view();
- }
- }
- /**
- * initialize zerobin
- *
- * @access private
- * @return void
- */
- private function _init()
- {
- foreach (array('cfg', 'lib') as $dir)
- {
- if (!is_file(PATH . $dir . DIRECTORY_SEPARATOR . '.htaccess')) file_put_contents(
- PATH . $dir . DIRECTORY_SEPARATOR . '.htaccess',
- 'Allow from none' . PHP_EOL .
- 'Deny from all'. PHP_EOL,
- LOCK_EX
- );
- }
- $this->_conf = parse_ini_file(PATH . 'cfg' . DIRECTORY_SEPARATOR . 'conf.ini', true);
- foreach (array('main', 'model') as $section) {
- if (!array_key_exists($section, $this->_conf)) {
- throw new Exception(i18n::_('ZeroBin requires configuration section [%s] to be present in configuration file.', $section), 2);
- }
- }
- $this->_model = $this->_conf['model']['class'];
- }
- /**
- * get the model, create one if needed
- *
- * @access private
- * @return zerobin_abstract
- */
- private function _model()
- {
- // if needed, initialize the model
- if(is_string($this->_model)) {
- $this->_model = forward_static_call(
- array($this->_model, 'getInstance'),
- $this->_conf['model_options']
- );
- }
- return $this->_model;
- }
- /**
- * Store new paste or comment
- *
- * POST contains one or both:
- * data = json encoded SJCL encrypted text (containing keys: iv,v,iter,ks,ts,mode,adata,cipher,salt,ct)
- * attachment = json encoded SJCL encrypted text (containing keys: iv,v,iter,ks,ts,mode,adata,cipher,salt,ct)
- *
- * All optional data will go to meta information:
- * expire (optional) = expiration delay (never,5min,10min,1hour,1day,1week,1month,1year,burn) (default:never)
- * formatter (optional) = format to display the paste as (plaintext,syntaxhighlighting,markdown) (default:syntaxhighlighting)
- * burnafterreading (optional) = if this paste may only viewed once ? (0/1) (default:0)
- * opendiscusssion (optional) = is the discussion allowed on this paste ? (0/1) (default:0)
- * nickname (optional) = in discussion, encoded SJCL encrypted text nickname of author of comment (containing keys: iv,v,iter,ks,ts,mode,adata,cipher,salt,ct)
- * parentid (optional) = in discussion, which comment this comment replies to.
- * pasteid (optional) = in discussion, which paste this comment belongs to.
- *
- * @access private
- * @return string
- */
- private function _create()
- {
- $error = false;
- $has_attachment = array_key_exists('attachment', $_POST);
- $has_attachmentname = $has_attachment && array_key_exists('attachmentname', $_POST) && !empty($_POST['attachmentname']);
- $data = array_key_exists('data', $_POST) ? $_POST['data'] : '';
- $attachment = $has_attachment ? $_POST['attachment'] : '';
- $attachmentname = $has_attachmentname ? $_POST['attachmentname'] : '';
- // Make sure last paste from the IP address was more than X seconds ago.
- trafficlimiter::setLimit($this->_conf['traffic']['limit']);
- trafficlimiter::setPath($this->_conf['traffic']['dir']);
- $ipKey = 'REMOTE_ADDR';
- if (array_key_exists('header', $this->_conf['traffic']))
- {
- $header = 'HTTP_' . $this->_conf['traffic']['header'];
- if (array_key_exists($header, $_SERVER) && !empty($_SERVER[$header]))
- {
- $ipKey = $header;
- }
- }
- if (!trafficlimiter::canPass($_SERVER[$ipKey])) return $this->_return_message(
- 1,
- i18n::_(
- 'Please wait %d seconds between each post.',
- $this->_conf['traffic']['limit']
- )
- );
- // Make sure content is not too big.
- $sizelimit = (int) $this->_getMainConfig('sizelimit', 2097152);
- if (
- strlen($data) + strlen($attachment) + strlen($attachmentname) > $sizelimit
- ) return $this->_return_message(
- 1,
- i18n::_(
- 'Paste is limited to %s of encrypted data.',
- filter::size_humanreadable($sizelimit)
- )
- );
- // Make sure format is correct.
- if (!sjcl::isValid($data)) return $this->_return_message(1, 'Invalid data.');
- // Make sure attachments are enabled and format is correct.
- if($has_attachment)
- {
- if (
- !$this->_getMainConfig('fileupload', false) ||
- !sjcl::isValid($attachment) ||
- !($has_attachmentname && sjcl::isValid($attachmentname))
- ) return $this->_return_message(1, 'Invalid attachment.');
- }
- // Read additional meta-information.
- $meta = array();
- // Read expiration date
- if (array_key_exists('expire', $_POST) && !empty($_POST['expire']))
- {
- $selected_expire = (string) $_POST['expire'];
- if (array_key_exists($selected_expire, $this->_conf['expire_options']))
- {
- $expire = $this->_conf['expire_options'][$selected_expire];
- }
- else
- {
- $expire = $this->_conf['expire_options'][$this->_conf['expire']['default']];
- }
- if ($expire > 0) $meta['expire_date'] = time() + $expire;
- }
- // Destroy the paste when it is read.
- if (array_key_exists('burnafterreading', $_POST) && !empty($_POST['burnafterreading']))
- {
- $burnafterreading = $_POST['burnafterreading'];
- if ($burnafterreading !== '0')
- {
- if ($burnafterreading !== '1') $error = true;
- $meta['burnafterreading'] = true;
- }
- }
- // Read open discussion flag.
- if (
- $this->_getMainConfig('discussion', true) &&
- array_key_exists('opendiscussion', $_POST) &&
- !empty($_POST['opendiscussion'])
- )
- {
- $opendiscussion = $_POST['opendiscussion'];
- if ($opendiscussion !== '0')
- {
- if ($opendiscussion !== '1') $error = true;
- $meta['opendiscussion'] = true;
- }
- }
- // Read formatter flag.
- if (array_key_exists('formatter', $_POST) && !empty($_POST['formatter']))
- {
- $formatter = $_POST['formatter'];
- if (!array_key_exists($formatter, $this->_conf['formatter_options']))
- {
- $formatter = $this->_getMainConfig('defaultformatter', 'plaintext');
- }
- $meta['formatter'] = $formatter;
- }
- // You can't have an open discussion on a "Burn after reading" paste:
- if (isset($meta['burnafterreading'])) unset($meta['opendiscussion']);
- // Optional nickname for comments
- if (!empty($_POST['nickname']))
- {
- // Generation of the anonymous avatar (Vizhash):
- // If a nickname is provided, we generate a Vizhash.
- // (We assume that if the user did not enter a nickname, he/she wants
- // to be anonymous and we will not generate the vizhash.)
- $nick = $_POST['nickname'];
- if (!sjcl::isValid($nick))
- {
- $error = true;
- }
- else
- {
- $meta['nickname'] = $nick;
- $vz = new vizhash16x16();
- $pngdata = $vz->generate($_SERVER['REMOTE_ADDR']);
- if ($pngdata != '')
- {
- $meta['vizhash'] = 'data:image/png;base64,' . base64_encode($pngdata);
- }
- // Once the avatar is generated, we do not keep the IP address, nor its hash.
- }
- }
- if ($error) return $this->_return_message(1, 'Invalid data.');
- // Add post date to meta.
- $meta['postdate'] = time();
- // We just want a small hash to avoid collisions:
- // Half-MD5 (64 bits) will do the trick
- $dataid = substr(hash('md5', $data), 0, 16);
- $storage = array('data' => $data);
- // Add meta-information only if necessary.
- if (count($meta)) $storage['meta'] = $meta;
- // The user posts a comment.
- if (
- !empty($_POST['parentid']) &&
- !empty($_POST['pasteid'])
- )
- {
- $pasteid = (string) $_POST['pasteid'];
- $parentid = (string) $_POST['parentid'];
- if (
- !filter::is_valid_paste_id($pasteid) ||
- !filter::is_valid_paste_id($parentid)
- ) return $this->_return_message(1, 'Invalid data.');
- // Comments do not expire (it's the paste that expires)
- unset($storage['expire_date']);
- unset($storage['opendiscussion']);
- // Make sure paste exists.
- if (
- !$this->_model()->exists($pasteid)
- ) return $this->_return_message(1, 'Invalid data.');
- // Make sure the discussion is opened in this paste.
- $paste = $this->_model()->read($pasteid);
- if (
- !$paste->meta->opendiscussion
- ) return $this->_return_message(1, 'Invalid data.');
- // Check for improbable collision.
- if (
- $this->_model()->existsComment($pasteid, $parentid, $dataid)
- ) return $this->_return_message(1, 'You are unlucky. Try again.');
- // New comment
- if (
- $this->_model()->createComment($pasteid, $parentid, $dataid, $storage) === false
- ) return $this->_return_message(1, 'Error saving comment. Sorry.');
- // 0 = no error
- return $this->_return_message(0, $dataid);
- }
- // The user posts a standard paste.
- else
- {
- // Check for improbable collision.
- if (
- $this->_model()->exists($dataid)
- ) return $this->_return_message(1, 'You are unlucky. Try again.');
- // Add attachment and its name, if one was sent
- if ($has_attachment) $storage['attachment'] = $attachment;
- if ($has_attachmentname) $storage['attachmentname'] = $attachmentname;
- // New paste
- if (
- $this->_model()->create($dataid, $storage) === false
- ) return $this->_return_message(1, 'Error saving paste. Sorry.');
- // Generate the "delete" token.
- // The token is the hmac of the pasteid signed with the server salt.
- // The paste can be delete by calling http://example.com/zerobin/?pasteid=<pasteid>&deletetoken=<deletetoken>
- $deletetoken = hash_hmac('sha1', $dataid, serversalt::get());
- // 0 = no error
- return $this->_return_message(0, $dataid, array('deletetoken' => $deletetoken));
- }
- }
- /**
- * Delete an existing paste
- *
- * @access private
- * @param string $dataid
- * @param string $deletetoken
- * @return void
- */
- private function _delete($dataid, $deletetoken)
- {
- // Is this a valid paste identifier?
- if (!filter::is_valid_paste_id($dataid))
- {
- $this->_error = 'Invalid paste ID.';
- return;
- }
- // Check that paste exists.
- if (!$this->_model()->exists($dataid))
- {
- $this->_error = self::GENERIC_ERROR;
- return;
- }
- // Get the paste itself.
- $paste = $this->_model()->read($dataid);
- // See if paste has expired.
- if (
- isset($paste->meta->expire_date) &&
- $paste->meta->expire_date < time()
- )
- {
- // Delete the paste
- $this->_model()->delete($dataid);
- $this->_error = self::GENERIC_ERROR;
- return;
- }
- if ($deletetoken == 'burnafterreading') {
- if (
- isset($paste->meta->burnafterreading) &&
- $paste->meta->burnafterreading
- )
- {
- // Delete the paste
- $this->_model()->delete($dataid);
- $this->_return_message(0, $dataid);
- }
- else
- {
- $this->_return_message(1, 'Paste is not of burn-after-reading type.');
- }
- return;
- }
- // Make sure token is valid.
- serversalt::setPath($this->_conf['traffic']['dir']);
- if (!filter::slow_equals($deletetoken, hash_hmac('sha1', $dataid, serversalt::get())))
- {
- $this->_error = 'Wrong deletion token. Paste was not deleted.';
- return;
- }
- // Paste exists and deletion token is valid: Delete the paste.
- $this->_model()->delete($dataid);
- $this->_status = 'Paste was properly deleted.';
- }
- /**
- * Read an existing paste or comment
- *
- * @access private
- * @param string $dataid
- * @return void
- */
- private function _read($dataid)
- {
- $isJson = false;
- if (($pos = strpos($dataid, '&json')) !== false) {
- $isJson = true;
- $dataid = substr($dataid, 0, $pos);
- }
- // Is this a valid paste identifier?
- if (!filter::is_valid_paste_id($dataid))
- {
- $this->_error = 'Invalid paste ID.';
- return;
- }
- // Check that paste exists.
- if ($this->_model()->exists($dataid))
- {
- // Get the paste itself.
- $paste = $this->_model()->read($dataid);
- // See if paste has expired.
- if (
- isset($paste->meta->expire_date) &&
- $paste->meta->expire_date < time()
- )
- {
- // Delete the paste
- $this->_model()->delete($dataid);
- $this->_error = self::GENERIC_ERROR;
- }
- // If no error, return the paste.
- else
- {
- // We kindly provide the remaining time before expiration (in seconds)
- if (
- property_exists($paste->meta, 'expire_date')
- ) $paste->meta->remaining_time = $paste->meta->expire_date - time();
- // The paste itself is the first in the list of encrypted messages.
- $messages = array($paste);
- // If it's a discussion, get all comments.
- if (
- property_exists($paste->meta, 'opendiscussion') &&
- $paste->meta->opendiscussion
- )
- {
- $messages = array_merge(
- $messages,
- $this->_model()->readComments($dataid)
- );
- }
- // set formatter for for the view.
- if (!property_exists($paste->meta, 'formatter'))
- {
- // support < 0.21 syntax highlighting
- if (property_exists($paste->meta, 'syntaxcoloring') && $paste->meta->syntaxcoloring === true)
- {
- $paste->meta->formatter = 'syntaxhighlighting';
- }
- else
- {
- $paste->meta->formatter = $this->_getMainConfig('defaultformatter', 'plaintext');
- }
- }
- $this->_data = json_encode($messages);
- }
- }
- else
- {
- $this->_error = self::GENERIC_ERROR;
- }
- if ($isJson)
- {
- if (strlen($this->_error))
- {
- $this->_return_message(1, $this->_error);
- }
- else
- {
- $this->_return_message(0, $dataid, array('messages' => $messages));
- }
- }
- }
- /**
- * Display ZeroBin frontend.
- *
- * @access private
- * @return void
- */
- private function _view()
- {
- // set headers to disable caching
- $time = gmdate('D, d M Y H:i:s \G\M\T');
- header('Cache-Control: no-store, no-cache, must-revalidate');
- header('Pragma: no-cache');
- header('Expires: ' . $time);
- header('Last-Modified: ' . $time);
- header('Vary: Accept');
- // label all the expiration options
- $expire = array();
- foreach ($this->_conf['expire_options'] as $time => $seconds)
- {
- $expire[$time] = ($seconds == 0) ? i18n::_(ucfirst($time)): filter::time_humanreadable($time);
- }
- // translate all the formatter options
- $formatters = array_map(array('i18n', 'translate'), $this->_conf['formatter_options']);
- // set language cookie if that functionality was enabled
- $languageselection = '';
- if ($this->_getMainConfig('languageselection', false))
- {
- $languageselection = i18n::getLanguage();
- setcookie('lang', $languageselection);
- }
- $page = new RainTPL;
- $page::$path_replace = false;
- // we escape it here because ENT_NOQUOTES can't be used in RainTPL templates
- $page->assign('CIPHERDATA', htmlspecialchars($this->_data, ENT_NOQUOTES));
- $page->assign('ERROR', i18n::_($this->_error));
- $page->assign('STATUS', i18n::_($this->_status));
- $page->assign('VERSION', self::VERSION);
- $page->assign('DISCUSSION', $this->_getMainConfig('discussion', true));
- $page->assign('OPENDISCUSSION', $this->_getMainConfig('opendiscussion', true));
- $page->assign('MARKDOWN', array_key_exists('markdown', $formatters));
- $page->assign('SYNTAXHIGHLIGHTING', array_key_exists('syntaxhighlighting', $formatters));
- $page->assign('SYNTAXHIGHLIGHTINGTHEME', $this->_getMainConfig('syntaxhighlightingtheme', ''));
- $page->assign('FORMATTER', $formatters);
- $page->assign('FORMATTERDEFAULT', $this->_getMainConfig('defaultformatter', 'plaintext'));
- $page->assign('NOTICE', i18n::_($this->_getMainConfig('notice', '')));
- $page->assign('BURNAFTERREADINGSELECTED', $this->_getMainConfig('burnafterreadingselected', false));
- $page->assign('PASSWORD', $this->_getMainConfig('password', true));
- $page->assign('FILEUPLOAD', $this->_getMainConfig('fileupload', false));
- $page->assign('BASE64JSVERSION', $this->_getMainConfig('base64version', '2.1.9'));
- $page->assign('LANGUAGESELECTION', $languageselection);
- $page->assign('LANGUAGES', i18n::getLanguageLabels(i18n::getAvailableLanguages()));
- $page->assign('EXPIRE', $expire);
- $page->assign('EXPIREDEFAULT', $this->_conf['expire']['default']);
- $page->draw($this->_getMainConfig('template', 'page'));
- }
- /**
- * get configuration option from [main] section, optionally set a default
- *
- * @access private
- * @param string $option
- * @param mixed $default (optional)
- * @return mixed
- */
- private function _getMainConfig($option, $default = false)
- {
- return array_key_exists($option, $this->_conf['main']) ?
- $this->_conf['main'][$option] :
- $default;
- }
- /**
- * return JSON encoded message and exit
- *
- * @access private
- * @param bool $status
- * @param string $message
- * @param array $other
- * @return void
- */
- private function _return_message($status, $message, $other = array())
- {
- $result = array('status' => $status);
- if ($status)
- {
- $result['message'] = i18n::_($message);
- }
- else
- {
- $result['id'] = $message;
- }
- $result += $other;
- $this->_json = json_encode($result);
- }
- }
|