Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 13.58.217.242
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lib /
node_modules /
npm /
node_modules /
make-fetch-happen /
[ HOME SHELL ]
Name
Size
Permission
Action
CHANGELOG.md
18.56
KB
-rw-r--r--
LICENSE
755
B
-rw-r--r--
README.md
16.48
KB
-rw-r--r--
agent.js
4.46
KB
-rw-r--r--
cache.js
7.63
KB
-rw-r--r--
index.js
13.46
KB
-rw-r--r--
package.json
2.75
KB
-rw-r--r--
warning.js
862
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : warning.js
const url = require('url') module.exports = setWarning function setWarning (reqOrRes, code, message, replace) { // Warning = "Warning" ":" 1#warning-value // warning-value = warn-code SP warn-agent SP warn-text [SP warn-date] // warn-code = 3DIGIT // warn-agent = ( host [ ":" port ] ) | pseudonym // ; the name or pseudonym of the server adding // ; the Warning header, for use in debugging // warn-text = quoted-string // warn-date = <"> HTTP-date <"> // (https://tools.ietf.org/html/rfc2616#section-14.46) const host = url.parse(reqOrRes.url).host const jsonMessage = JSON.stringify(message) const jsonDate = JSON.stringify(new Date().toUTCString()) const header = replace ? 'set' : 'append' reqOrRes.headers[header]( 'Warning', `${code} ${host} ${jsonMessage} ${jsonDate}` ) }
Close