����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
if(!class_exists('SnapLibNetU')) {
class SnapLibNetU
{
public static function postWithoutWait($url, $params)
{
foreach ($params as $key => &$val) {
if (is_array($val)) $val = implode(',', $val);
{
$post_params[] = $key.'='.urlencode($val);
}
}
$post_string = implode('&', $post_params);
$parts = parse_url($url);
$fp = fsockopen($parts['host'], isset($parts['port']) ? $parts['port'] : 80, $errno, $errstr, 60);
$out = "POST ".$parts['path']." HTTP/1.1\r\n";
$out.= "Host: ".$parts['host']."\r\n";
$out.= "Content-Type: application/x-www-form-urlencoded\r\n";
$out.= "Content-Length: ".strlen($post_string)."\r\n";
$out.= "Connection: Close\r\n\r\n";
if (isset($post_string)) {
$out.= $post_string;
}
fwrite($fp, $out);
fclose($fp);
}
public static function getRequestValue($paramName, $isRequired = true, $default = null)
{
if (isset($_REQUEST[$paramName])) {
return $_REQUEST[$paramName];
} else {
if ($isRequired) {
throw new Exception("Parameter $paramName not present");
}
return $default;
}
}
}
}| 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 |
|