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.13
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.walk /
src /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
index.ts
972
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.ts
import * as sinon from 'sinon'; import { Dirent } from '../../../fs.macchiato'; import { Entry, Errno } from '../types'; export function buildFakeFileEntry(entry?: Partial<Entry>): Entry { return { name: 'fake.txt', path: 'directory/fake.txt', dirent: new Dirent({ name: 'fake.txt' }), ...entry }; } export function buildFakeDirectoryEntry(entry?: Partial<Entry>): Entry { return { name: 'fake', path: 'directory/fake', dirent: new Dirent({ name: 'fake', isFile: false, isDirectory: true }), ...entry }; } export const EPERM_ERRNO: Errno = { name: 'EPERM', code: 'EPERM', message: 'EPERM' }; export class TestAsyncReader { public read: sinon.SinonStub = sinon.stub(); public destroy: sinon.SinonStub = sinon.stub(); public onError: sinon.SinonStub = sinon.stub(); public onEntry: sinon.SinonStub = sinon.stub(); public onEnd: sinon.SinonStub = sinon.stub(); } export class TestSyncReader { public read: sinon.SinonStub = sinon.stub(); }
Close