Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby18 /
share /
ri /
1.8 /
system /
Dir /
[ HOME SHELL ]
Name
Size
Permission
Action
%5b%5d-c.yaml
397
B
-rw-r--r--
cdesc-Dir.yaml
1.97
KB
-rw-r--r--
chdir-c.yaml
1.46
KB
-rw-r--r--
chroot-c.yaml
420
B
-rw-r--r--
close-i.yaml
425
B
-rw-r--r--
delete-c.yaml
387
B
-rw-r--r--
each-i.yaml
629
B
-rw-r--r--
entries-c.yaml
547
B
-rw-r--r--
foreach-c.yaml
643
B
-rw-r--r--
getwd-c.yaml
451
B
-rw-r--r--
glob-c.yaml
3.46
KB
-rw-r--r--
inspect-i.yaml
269
B
-rw-r--r--
mkdir-c.yaml
605
B
-rw-r--r--
mktmpdir-c.yaml
2.34
KB
-rw-r--r--
new-c.yaml
277
B
-rw-r--r--
open-c.yaml
510
B
-rw-r--r--
path-i.yaml
397
B
-rw-r--r--
pos%3d-i.yaml
636
B
-rw-r--r--
pos-i.yaml
468
B
-rw-r--r--
pwd-c.yaml
447
B
-rw-r--r--
read-i.yaml
526
B
-rw-r--r--
rewind-i.yaml
461
B
-rw-r--r--
rmdir-c.yaml
385
B
-rw-r--r--
seek-i.yaml
699
B
-rw-r--r--
tell-i.yaml
470
B
-rw-r--r--
tmpdir-c.yaml
251
B
-rw-r--r--
unlink-c.yaml
387
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mktmpdir-c.yaml
--- !ruby/object:RI::MethodDescription aliases: [] block_params: path comment: - !ruby/struct:SM::Flow::P body: Dir.mktmpdir creates a temporary directory. - !ruby/struct:SM::Flow::P body: The directory is created with 0700 permission. - !ruby/struct:SM::Flow::P body: The prefix and suffix of the name of the directory is specified by the optional first argument, <em>prefix_suffix</em>. - !ruby/object:SM::Flow::LIST contents: - !ruby/struct:SM::Flow::LI label: "-" body: If it is not specified or nil, "d" is used as the prefix and no suffix is used. - !ruby/struct:SM::Flow::LI label: "-" body: If it is a string, it is used as the prefix and no suffix is used. - !ruby/struct:SM::Flow::LI label: "-" body: If it is an array, first element is used as the prefix and second element is used as a suffix. type: :BULLET - !ruby/struct:SM::Flow::VERB body: " Dir.mktmpdir {|dir| dir is ".../d..." }\n Dir.mktmpdir("foo") {|dir| dir is ".../foo..." }\n Dir.mktmpdir(["foo", "bar"]) {|dir| dir is ".../foo...bar" }\n" - !ruby/struct:SM::Flow::P body: The directory is created under Dir.tmpdir or the optional second argument <em>tmpdir</em> if non-nil value is given. - !ruby/struct:SM::Flow::VERB body: " Dir.mktmpdir {|dir| dir is "#{Dir.tmpdir}/d..." }\n Dir.mktmpdir(nil, "/var/tmp") {|dir| dir is "/var/tmp/d..." }\n" - !ruby/struct:SM::Flow::P body: If a block is given, it is yielded with the path of the directory. The directory and its contents are removed using FileUtils.remove_entry_secure before Dir.mktmpdir returns. The value of the block is returned. - !ruby/struct:SM::Flow::VERB body: " Dir.mktmpdir {|dir|\n # use the directory...\n open("#{dir}/foo", "w") { ... }\n }\n" - !ruby/struct:SM::Flow::P body: If a block is not given, The path of the directory is returned. In this case, Dir.mktmpdir doesn't remove the directory. - !ruby/struct:SM::Flow::VERB body: " dir = Dir.mktmpdir\n begin\n # use the directory...\n open("#{dir}/foo", "w") { ... }\n ensure\n # remove the directory.\n FileUtils.remove_entry_secure dir\n end\n" full_name: Dir::mktmpdir is_singleton: true name: mktmpdir params: (prefix_suffix=nil, tmpdir=nil) {|path| ...} visibility: public
Close