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 /
fields /
[ HOME SHELL ]
Name
Size
Permission
Action
common
[ DIR ]
drwxr-xr-x
bcc_field.rb
2.01
KB
-rw-r--r--
cc_field.rb
1.67
KB
-rw-r--r--
comments_field.rb
1.26
KB
-rw-r--r--
content_description_field.rb
394
B
-rw-r--r--
content_disposition_field.rb
1.52
KB
-rw-r--r--
content_id_field.rb
1.1
KB
-rw-r--r--
content_location_field.rb
798
B
-rw-r--r--
content_transfer_encoding_fiel...
951
B
-rw-r--r--
content_type_field.rb
4.79
KB
-rw-r--r--
date_field.rb
1.59
KB
-rw-r--r--
from_field.rb
1.7
KB
-rw-r--r--
in_reply_to_field.rb
1.75
KB
-rw-r--r--
keywords_field.rb
850
B
-rw-r--r--
message_id_field.rb
2.3
KB
-rw-r--r--
mime_version_field.rb
939
B
-rw-r--r--
optional_field.rb
418
B
-rw-r--r--
received_field.rb
1.7
KB
-rw-r--r--
references_field.rb
1.74
KB
-rw-r--r--
reply_to_field.rb
1.79
KB
-rw-r--r--
resent_bcc_field.rb
1.84
KB
-rw-r--r--
resent_cc_field.rb
1.81
KB
-rw-r--r--
resent_date_field.rb
790
B
-rw-r--r--
resent_from_field.rb
1.86
KB
-rw-r--r--
resent_message_id_field.rb
680
B
-rw-r--r--
resent_sender_field.rb
1.85
KB
-rw-r--r--
resent_to_field.rb
1.81
KB
-rw-r--r--
return_path_field.rb
1.62
KB
-rw-r--r--
sender_field.rb
1.76
KB
-rw-r--r--
structured_field.rb
1.5
KB
-rw-r--r--
subject_field.rb
380
B
-rw-r--r--
to_field.rb
1.66
KB
-rw-r--r--
unstructured_field.rb
6.91
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : content_disposition_field.rb
# encoding: utf-8 # frozen_string_literal: true require 'mail/fields/common/parameter_hash' module Mail class ContentDispositionField < StructuredField FIELD_NAME = 'content-disposition' CAPITALIZED_FIELD = 'Content-Disposition' def initialize(value = nil, charset = 'utf-8') self.charset = charset value = ensure_filename_quoted(value) super(CAPITALIZED_FIELD, value, charset) self.parse self end def parse(val = value) unless Utilities.blank?(val) @element = Mail::ContentDispositionElement.new(val) end end def element @element ||= Mail::ContentDispositionElement.new(value) end def disposition_type element.disposition_type end def parameters @parameters = ParameterHash.new element.parameters.each { |p| @parameters.merge!(p) } unless element.parameters.nil? @parameters end def filename case when parameters['filename'] @filename = parameters['filename'] when parameters['name'] @filename = parameters['name'] else @filename = nil end @filename end # TODO: Fix this up def encoded if parameters.length > 0 p = ";\r\n\s#{parameters.encoded}\r\n" else p = "\r\n" end "#{CAPITALIZED_FIELD}: #{disposition_type}" + p end def decoded if parameters.length > 0 p = "; #{parameters.decoded}" else p = "" end "#{disposition_type}" + p end end end
Close