Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@nodelib /
fs.stat /
out /
[ HOME SHELL ]
Name
Size
Permission
Action
adapters
[ DIR ]
drwxr-xr-x
providers
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
index.d.ts
748
B
-rw-r--r--
index.d.ts.map
809
B
-rw-r--r--
index.js
1001
B
-rw-r--r--
index.spec.d.ts
52
B
-rw-r--r--
index.spec.d.ts.map
114
B
-rw-r--r--
index.spec.js
2.09
KB
-rw-r--r--
settings.d.ts
578
B
-rw-r--r--
settings.d.ts.map
594
B
-rw-r--r--
settings.js
712
B
-rw-r--r--
settings.spec.d.ts
55
B
-rw-r--r--
settings.spec.d.ts.map
120
B
-rw-r--r--
settings.spec.js
1.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.spec.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const assert = require("assert"); const fs = require("fs"); const rimraf = require("rimraf"); const _1 = require("."); describe('Package', () => { before(() => { rimraf.sync('fixtures'); fs.mkdirSync('fixtures'); fs.mkdirSync('fixtures/a'); fs.symlinkSync('a', 'fixtures/b', 'junction'); }); after(() => { rimraf.sync('fixtures'); }); describe('.stat', () => { it('should work without options or settings', (done) => { _1.stat('fixtures/b', (error, stats) => { assert.strictEqual(error, null); assert.ok(stats); done(); }); }); it('should work with options', (done) => { _1.stat('fixtures/b', { markSymbolicLink: true }, (error, stats) => { assert.strictEqual(error, null); assert.strictEqual(stats.isSymbolicLink(), true); done(); }); }); it('should work with settings', (done) => { const settings = new _1.Settings({ markSymbolicLink: true }); _1.stat('fixtures/b', settings, (error, stats) => { assert.strictEqual(error, null); assert.strictEqual(stats.isSymbolicLink(), true); done(); }); }); }); describe('.statSync', () => { it('should work without options or settings', () => { const actual = _1.statSync('fixtures/b'); assert.ok(actual); }); it('should work with options', () => { const actual = _1.statSync('fixtures/b', { markSymbolicLink: true }); assert.strictEqual(actual.isSymbolicLink(), true); }); it('should work with settings', () => { const settings = new _1.Settings({ markSymbolicLink: true }); const actual = _1.statSync('fixtures/b', settings); assert.strictEqual(actual.isSymbolicLink(), true); }); }); });
Close