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 | : 3.145.188.16
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
/
opt /
alt /
alt-nodejs16 /
root /
usr /
lib /
node_modules /
npm /
node_modules.bundled /
@npmcli /
git /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
clone.js
4.78
KB
-rw-r--r--
errors.js
600
B
-rw-r--r--
find.js
300
B
-rw-r--r--
index.js
242
B
-rw-r--r--
is-clean.js
222
B
-rw-r--r--
is.js
271
B
-rw-r--r--
lines-to-revs.js
3.97
KB
-rw-r--r--
make-error.js
861
B
-rw-r--r--
opts.js
371
B
-rw-r--r--
revs.js
638
B
-rw-r--r--
spawn.js
1.27
KB
-rw-r--r--
utils.js
109
B
-rw-r--r--
which.js
339
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : revs.js
const pinflight = require('promise-inflight') const spawn = require('./spawn.js') const LRU = require('lru-cache') const revsCache = new LRU({ max: 100, ttl: 5 * 60 * 1000, }) const linesToRevs = require('./lines-to-revs.js') module.exports = async (repo, opts = {}) => { if (!opts.noGitRevCache) { const cached = revsCache.get(repo) if (cached) { return cached } } return pinflight(`ls-remote:${repo}`, () => spawn(['ls-remote', repo], opts) .then(({ stdout }) => linesToRevs(stdout.trim().split('\n'))) .then(revs => { revsCache.set(repo, revs) return revs }) ) }
Close