Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
amatya /
node_modules /
stackframe /
[ HOME SHELL ]
Name
Size
Permission
Action
dist
[ DIR ]
drwxr-xr-x
.jscsrc
800
B
-rw-r--r--
.jshintrc
921
B
-rw-r--r--
.npmignore
90
B
-rw-r--r--
CHANGELOG.md
862
B
-rw-r--r--
CONTRIBUTING.md
1.2
KB
-rw-r--r--
LICENSE
1.05
KB
-rw-r--r--
README.md
2.42
KB
-rw-r--r--
bower.json
742
B
-rw-r--r--
component.json
345
B
-rw-r--r--
gulpfile.js
1.77
KB
-rw-r--r--
karma.conf.ci.js
4.65
KB
-rw-r--r--
karma.conf.js
549
B
-rw-r--r--
package.json
2.46
KB
-rw-r--r--
stackframe-tests.ts
1.42
KB
-rw-r--r--
stackframe.d.ts
1.53
KB
-rw-r--r--
stackframe.js
3.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : stackframe-tests.ts
/// <reference path="stackframe.d.ts"/> // Create StackFrame and set properties var stackFrame = new StackFrame({ functionName: 'funName', args: ['args'], fileName: 'http://localhost:3000/file.js', lineNumber: 1, columnNumber: 3288, isEval: true, isNative: false, source: 'ORIGINAL_STACK_LINE' }); stackFrame.functionName; // => "funName" stackFrame.setFunctionName('newName'); stackFrame.getFunctionName(); // => "newName" stackFrame.args; // => ["args"] stackFrame.setArgs([]); stackFrame.getArgs(); // => [] stackFrame.fileName; // => 'http://localhost:3000/file.min.js' stackFrame.setFileName('http://localhost:3000/file.js'); stackFrame.getFileName(); // => 'http://localhost:3000/file.js' stackFrame.lineNumber; // => 1 stackFrame.setLineNumber(325); stackFrame.getLineNumber(); // => 325 stackFrame.columnNumber; // => 3288 stackFrame.setColumnNumber(20); stackFrame.getColumnNumber(); // => 20 stackFrame.source; // => 'ORIGINAL_STACK_LINE' stackFrame.setSource('NEW_SOURCE'); stackFrame.getSource(); // => 'NEW_SOURCE' stackFrame.isEval; // => true stackFrame.setIsEval(false); stackFrame.getIsEval(); // => false stackFrame.isNative; // => false stackFrame.setIsNative(true); stackFrame.getIsNative(); // => true stackFrame.toString(); // => 'funName(args)@http://localhost:3000/file.js:325:20'
Close