X7ROOT File Manager
Current Path:
/home/katmhsmi/public_html/wp-content/plugins/duplicator-pro/src/Libs/Snap
home
/
katmhsmi
/
public_html
/
wp-content
/
plugins
/
duplicator-pro
/
src
/
Libs
/
Snap
/
📁
..
📄
.htaccess
(420 B)
📄
FunctionalityCheck.php
(3.73 KB)
📄
Snap32BitSizeLimitException.php
(174 B)
📄
SnapCode.php
(1.65 KB)
📄
SnapDB.php
(23.12 KB)
📄
SnapIO.php
(51.8 KB)
📄
SnapJson.php
(9.37 KB)
📄
SnapLog.php
(5.45 KB)
📄
SnapNet.php
(1.16 KB)
📄
SnapOS.php
(834 B)
📄
SnapObjUtils.php
(4.5 KB)
📄
SnapOrigFileManager.php
(11.1 KB)
📄
SnapString.php
(3.93 KB)
📄
SnapURL.php
(7.95 KB)
📄
SnapUtil.php
(27.52 KB)
📄
SnapWP.php
(22.48 KB)
📄
TraitAccessPrivate.php
(6.36 KB)
📄
index.php
(16 B)
📄
wordpress_core_files.php
(132.6 KB)
Editing: SnapNet.php
<?php /** * * @package Duplicator * @copyright (c) 2022, Snap Creek LLC * */ namespace Duplicator\Libs\Snap; class SnapNet { /** * Execute a post request * * @param string $url url * @param array $params post params * * @return void */ 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); } }
Upload File
Create Folder