Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
memfs /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
internal
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
Dirent.d.ts
535
B
-rw-r--r--
2022-04-21 14:29
Dirent.js
1.83
KB
-rw-r--r--
2022-04-21 14:29
Stats.d.ts
900
B
-rw-r--r--
2022-04-21 14:29
Stats.js
2.83
KB
-rw-r--r--
2022-04-21 14:29
constants.d.ts
1.3
KB
-rw-r--r--
2022-04-21 14:29
constants.js
1.02
KB
-rw-r--r--
2022-04-21 14:29
encoding.d.ts
366
B
-rw-r--r--
2022-04-21 14:29
encoding.js
831
B
-rw-r--r--
2022-04-21 14:29
getBigInt.js
191
B
-rw-r--r--
2022-04-21 14:29
index.d.ts
854
B
-rw-r--r--
2022-04-21 14:29
index.js
2.11
KB
-rw-r--r--
2022-04-21 14:29
node.d.ts
4
KB
-rw-r--r--
2022-04-21 14:29
node.js
13.85
KB
-rw-r--r--
2022-04-21 14:29
process.d.ts
372
B
-rw-r--r--
2022-04-21 14:29
process.js
1.31
KB
-rw-r--r--
2022-04-21 14:29
promises.d.ts
4.21
KB
-rw-r--r--
2022-04-21 14:29
promises.js
6.27
KB
-rw-r--r--
2022-04-21 14:29
setImmediate.d.ts
151
B
-rw-r--r--
2022-04-21 14:29
setImmediate.js
364
B
-rw-r--r--
2022-04-21 14:29
setTimeoutUnref.d.ts
339
B
-rw-r--r--
2022-04-21 14:29
setTimeoutUnref.js
493
B
-rw-r--r--
2022-04-21 14:29
volume-localstorage.d.ts
471
B
-rw-r--r--
2022-04-21 14:29
volume-localstorage.js
4.27
KB
-rw-r--r--
2022-04-21 14:29
volume.d.ts
17.55
KB
-rw-r--r--
2022-04-21 14:29
volume.js
84.93
KB
-rw-r--r--
2022-04-21 14:29
Save
Rename
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.createVolume = exports.ObjectStore = void 0; var volume_1 = require("./volume"); var node_1 = require("./node"); var ObjectStore = /** @class */ (function () { function ObjectStore(obj) { this.obj = obj; } ObjectStore.prototype.setItem = function (key, json) { this.obj[key] = JSON.stringify(json); }; ObjectStore.prototype.getItem = function (key) { var data = this.obj[key]; if (typeof data === void 0) return void 0; return JSON.parse(data); }; ObjectStore.prototype.removeItem = function (key) { delete this.obj[key]; }; return ObjectStore; }()); exports.ObjectStore = ObjectStore; function createVolume(namespace, LS) { if (LS === void 0) { LS = localStorage; } var store = new ObjectStore(LS); var key = function (type, id) { return "memfs.".concat(namespace, ".").concat(type, ".").concat(id); }; var NodeLocalStorage = /** @class */ (function (_super) { __extends(NodeLocalStorage, _super); function NodeLocalStorage() { return _super !== null && _super.apply(this, arguments) || this; } Object.defineProperty(NodeLocalStorage.prototype, "Key", { get: function () { if (!this._key) this._key = key('ino', this.ino); return this._key; }, enumerable: false, configurable: true }); NodeLocalStorage.prototype.sync = function () { store.setItem(this.Key, this.toJSON()); }; NodeLocalStorage.prototype.touch = function () { _super.prototype.touch.call(this); this.sync(); }; NodeLocalStorage.prototype.del = function () { _super.prototype.del.call(this); store.removeItem(this.Key); }; return NodeLocalStorage; }(node_1.Node)); var LinkLocalStorage = /** @class */ (function (_super) { __extends(LinkLocalStorage, _super); function LinkLocalStorage() { return _super !== null && _super.apply(this, arguments) || this; } Object.defineProperty(LinkLocalStorage.prototype, "Key", { get: function () { if (!this._key) this._key = key('link', this.getPath()); return this._key; }, enumerable: false, configurable: true }); LinkLocalStorage.prototype.sync = function () { store.setItem(this.Key, this.toJSON()); }; return LinkLocalStorage; }(node_1.Link)); return /** @class */ (function (_super) { __extends(VolumeLocalStorage, _super); function VolumeLocalStorage() { return _super.call(this, { Node: NodeLocalStorage, Link: LinkLocalStorage, }) || this; } VolumeLocalStorage.prototype.createLink = function (parent, name, isDirectory, perm) { var link = _super.prototype.createLink.call(this, parent, name, isDirectory, perm); store.setItem(key('link', link.getPath()), link.toJSON()); return link; }; VolumeLocalStorage.prototype.deleteLink = function (link) { store.removeItem(key('link', link.getPath())); return _super.prototype.deleteLink.call(this, link); }; return VolumeLocalStorage; }(volume_1.Volume)); } exports.createVolume = createVolume;