403Webshell
Server IP : 162.0.232.140  /  Your IP : 3.133.144.147
Web Server : LiteSpeed
System : Linux premium139.web-hosting.com 4.18.0-513.24.1.lve.2.el8.x86_64 #1 SMP Fri May 24 12:42:50 UTC 2024 x86_64
User : micrcvoy ( 740)
PHP Version : 8.1.32
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/proc/self/root/usr/src/litespeed-wp-plugin/7.1/litespeed-cache/src/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/self/root/usr/src/litespeed-wp-plugin/7.1/litespeed-cache/src//str.cls.php
<?php

/**
 * LiteSpeed String Operator Library Class
 *
 * @since 1.3
 */

namespace LiteSpeed;

defined('WPINC') || exit();

class Str
{
	/**
	 * Translate QC HTML links from html. Convert `<a href="{#xxx#}">xxxx</a>` to `<a href="xxx">xxxx</a>`
	 *
	 * @since 7.0
	 */
	public static function translate_qc_apis($html)
	{
		preg_match_all('/<a href="{#(\w+)#}"/U', $html, $matches);
		if (!$matches) {
			return $html;
		}

		foreach ($matches[0] as $k => $html_to_be_replaced) {
			$link = '<a href="' . Utility::build_url(Router::ACTION_CLOUD, Cloud::TYPE_API, false, null, array('action2' => $matches[1][$k])) . '"';
			$html = str_replace($html_to_be_replaced, $link, $html);
		}
		return $html;
	}

	/**
	 * Return safe HTML
	 *
	 * @since 7.0
	 */
	public static function safe_html($html)
	{
		$common_attrs = array(
			'style' => array(),
			'class' => array(),
			'target' => array(),
			'src' => array(),
			'color' => array(),
			'href' => array(),
		);
		$tags = array('hr', 'h3', 'h4', 'h5', 'ul', 'li', 'br', 'strong', 'p', 'span', 'img', 'a', 'div', 'font');
		$allowed_tags = array();
		foreach ($tags as $tag) {
			$allowed_tags[$tag] = $common_attrs;
		}

		return wp_kses($html, $allowed_tags);
	}

	/**
	 * Generate random string
	 *
	 * @since  1.3
	 * @access public
	 * @param  int  $len  	 Length of string
	 * @param  int  $type    1-Number 2-LowerChar 4-UpperChar
	 * @return string
	 */
	public static function rrand($len, $type = 7)
	{
		switch ($type) {
			case 0:
				$charlist = '012';
				break;

			case 1:
				$charlist = '0123456789';
				break;

			case 2:
				$charlist = 'abcdefghijklmnopqrstuvwxyz';
				break;

			case 3:
				$charlist = '0123456789abcdefghijklmnopqrstuvwxyz';
				break;

			case 4:
				$charlist = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
				break;

			case 5:
				$charlist = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
				break;

			case 6:
				$charlist = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
				break;

			case 7:
				$charlist = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
				break;
		}

		$str = '';

		$max = strlen($charlist) - 1;
		for ($i = 0; $i < $len; $i++) {
			$str .= $charlist[random_int(0, $max)];
		}

		return $str;
	}

	/**
	 * Trim double quotes from a string to be used as a preformatted src in HTML.
	 * @since 6.5.3
	 */
	public static function trim_quotes($string)
	{
		return str_replace('"', '', $string);
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit