Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
usr /
share /
nodejs /
codemirror /
src /
edit /
[ HOME SHELL ]
Name
Size
Permission
Action
CodeMirror.js
8.42
KB
-rw-r--r--
commands.js
7.33
KB
-rw-r--r--
deleteNearSelection.js
1.03
KB
-rw-r--r--
drop_events.js
5.01
KB
-rw-r--r--
fromTextArea.js
1.94
KB
-rw-r--r--
global_events.js
1.41
KB
-rw-r--r--
key_events.js
5.38
KB
-rw-r--r--
legacy.js
2.52
KB
-rw-r--r--
main.js
2.02
KB
-rw-r--r--
methods.js
21.72
KB
-rw-r--r--
mouse_events.js
15.6
KB
-rw-r--r--
options.js
7.06
KB
-rw-r--r--
utils.js
270
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : deleteNearSelection.js
import { runInOp } from "../display/operations.js" import { ensureCursorVisible } from "../display/scrolling.js" import { cmp } from "../line/pos.js" import { replaceRange } from "../model/changes.js" import { lst } from "../util/misc.js" // Helper for deleting text near the selection(s), used to implement // backspace, delete, and similar functionality. export function deleteNearSelection(cm, compute) { let ranges = cm.doc.sel.ranges, kill = [] // Build up a set of ranges to kill first, merging overlapping // ranges. for (let i = 0; i < ranges.length; i++) { let toKill = compute(ranges[i]) while (kill.length && cmp(toKill.from, lst(kill).to) <= 0) { let replaced = kill.pop() if (cmp(replaced.from, toKill.from) < 0) { toKill.from = replaced.from break } } kill.push(toKill) } // Next, remove those actual ranges. runInOp(cm, () => { for (let i = kill.length - 1; i >= 0; i--) replaceRange(cm.doc, "", kill[i].from, kill[i].to, "+delete") ensureCursorVisible(cm) }) }
Close