Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.128.223
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
is-dotfile /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.06
KB
-rw-r--r--
2017-05-30 14:12
README.md
3.66
KB
-rw-r--r--
2017-05-30 14:21
index.js
391
B
-rw-r--r--
2017-05-30 14:20
package.json
2.17
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
/*! * is-dotfile <https://github.com/jonschlinkert/is-dotfile> * * Copyright (c) 2015-2017, Jon Schlinkert. * Released under the MIT License. */ module.exports = function(str) { if (str.charCodeAt(0) === 46 /* . */ && str.indexOf('/', 1) === -1) { return true; } var slash = str.lastIndexOf('/'); return slash !== -1 ? str.charCodeAt(slash + 1) === 46 /* . */ : false; };