⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
Core
/
Factory
/
Edit File: HttpClient.php
<?php /** * @category Horde * @package Core */ class Horde_Core_Factory_HttpClient extends Horde_Core_Factory_Base { /** * Get client object. * * @param array $opts Configuration options. * * @return Horde_Http_Client Client object. * @throws Horde_Http_Exception */ public function create(array $opts = array()) { global $conf; $copts = array(); if (!empty($conf['http']['proxy']['proxy_host'])) { $copts['request.proxyServer'] = $conf['http']['proxy']['proxy_host']; $copts['request.proxyPort'] = $conf['http']['proxy']['proxy_port']; if (!empty($conf['http']['proxy']['proxy_user'])) { $copts['request.proxyUsername'] = $conf['http']['proxy']['proxy_user']; if (!empty($conf['http']['proxy']['proxy_pass'])) { $copts['request.proxyPassword'] = $conf['http']['proxy']['proxy_pass']; } } } return new Horde_Http_Client(array_merge($copts, $opts)); } }
Simpan