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 /
slrn /
slang /
[ HOME SHELL ]
Name
Size
Permission
Action
color.sl
3.41
KB
-rw-r--r--
gsort.sl
532
B
-rw-r--r--
ispell.sl
477
B
-rw-r--r--
latin2.sl
3.61
KB
-rw-r--r--
mailcap.sl
8.41
KB
-rw-r--r--
mime.sl
14.1
KB
-rw-r--r--
multipart.sl
2.19
KB
-rw-r--r--
nn.sl
2.29
KB
-rw-r--r--
posthook.sl
1.73
KB
-rw-r--r--
search.sl
1021
B
-rw-r--r--
slrn.sl
2.65
KB
-rw-r--r--
tin-art.sl
6.81
KB
-rw-r--r--
tin-group.sl
2.6
KB
-rw-r--r--
ttyprint.sl
510
B
-rw-r--r--
util.sl
936
B
-rw-r--r--
varset.sl
545
B
-rw-r--r--
xcomment.sl
781
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : search.sl
% This macro allows one to search throgh the bodies of the articles in the % current newsgroup. It binds the function 'search_newsgroup' to the '$' key % in article mode. % % If you need more sophisticated features, you can use the ``improved search'' % available from <http://slrn.sourceforge.net/macros/> variable Search_Last_Art_Search_Str = ""; define search_newsgroup () { variable str; variable flags; str = read_mini ("Search for regexp: ", Search_Last_Art_Search_Str, ""); if (str == "") return; Search_Last_Art_Search_Str = str; open_log_file("search.log"); uncollapse_threads (); call ("hide_article"); do { flags = get_header_flags (); if (1 == is_article_visible()) call ("hide_article"); if (re_search_article (str)) { pop (); return; } set_header_flags (flags); call ("hide_article"); } while (header_down (1)); close_log_file(); error ("Not found."); } definekey ("search_newsgroup", "$", "article");
Close