Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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 /
phpmyadmin /
js /
codemirror /
addon /
lint /
[ HOME SHELL ]
Name
Size
Permission
Action
lint.css
3
KB
-rw-r--r--
lint.js
7.06
KB
-rw-r--r--
sql-lint.js
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sql-lint.js
CodeMirror.sqlLint = function(text, updateLinting, options, cm) { // Skipping check if text box is empty. if(text.trim() == "") { updateLinting(cm, []); return; } function handleResponse(response) { var found = []; for (var idx in response) { found.push({ from: CodeMirror.Pos( response[idx].fromLine, response[idx].fromColumn ), to: CodeMirror.Pos( response[idx].toLine, response[idx].toColumn ), message: response[idx].message, severity : response[idx].severity }); } updateLinting(cm, found); } $.ajax({ method: "POST", url: "lint.php", dataType: 'json', data: { sql_query: text, token: PMA_commonParams.get('token'), server: PMA_commonParams.get('server'), options: options.lintOptions, no_history: true, }, success: handleResponse }); }
Close