Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby20 /
share /
ri /
2.0.0 /
system /
Etc /
Delete
Unzip
Name
Size
Permission
Date
Action
cdesc-Etc.ri
4.59
KB
-rw-r--r--
2023-07-26 17:38
endgrent-c.ri
368
B
-rw-r--r--
2023-07-26 17:38
endpwent-c.ri
371
B
-rw-r--r--
2023-07-26 17:38
getgrent-c.ri
667
B
-rw-r--r--
2023-07-26 17:38
getgrgid-c.ri
797
B
-rw-r--r--
2023-07-26 17:38
getgrnam-c.ri
780
B
-rw-r--r--
2023-07-26 17:38
getlogin-c.ri
735
B
-rw-r--r--
2023-07-26 17:38
getpwent-c.ri
670
B
-rw-r--r--
2023-07-26 17:38
getpwnam-c.ri
804
B
-rw-r--r--
2023-07-26 17:38
getpwuid-c.ri
904
B
-rw-r--r--
2023-07-26 17:38
group-c.ri
667
B
-rw-r--r--
2023-07-26 17:38
passwd-c.ri
758
B
-rw-r--r--
2023-07-26 17:38
setgrent-c.ri
391
B
-rw-r--r--
2023-07-26 17:38
setpwent-c.ri
392
B
-rw-r--r--
2023-07-26 17:38
sysconfdir-c.ri
531
B
-rw-r--r--
2023-07-26 17:38
systmpdir-c.ri
318
B
-rw-r--r--
2023-07-26 17:38
Save
Rename
U:RDoc::NormalModule[iI"Etc:ET@0o:RDoc::Markup::Document:@parts[o;;[o:RDoc::Markup::Paragraph;[I"GThe Etc module provides access to information typically stored in ;TI"1files in the /etc directory on Unix systems.;To:RDoc::Markup::BlankLine o; ;[I"IThe information accessible consists of the information found in the ;TI"K/etc/passwd and /etc/group files, plus information about the system's ;TI"Ctemporary directory (/tmp) and configuration directory (/etc).;T@o; ;[I"MThe Etc module provides a more reliable way to access information about ;TI"Cthe logged in user than environment variables such as +$USER+.;T@S:RDoc::Markup::Heading: leveli: textI" Example:;T@o:RDoc::Markup::Verbatim;[I"require 'etc' ;TI" ;TI"login = Etc.getlogin ;TI" info = Etc.getpwnam(login) ;TI",username = info.gecos.split(/,/).first ;TI"Aputs "Hello #{username}, I see your login name is #{login}" ;T:@format0o; ;[I"JNote that the methods provided by this module are not always secure. ;TI"HIt should be used for informational purposes, and not for security.;T@o; ;[I"NAll operations defined in this module are class methods, so that you can ;TI",include the Etc module into your class.;T: @fileI"ext/etc/etc.c;T:0@omit_headings_from_table_of_contents_below0;0;0[ [U:RDoc::Constant[i I"Passwd;TI"Etc::Passwd;T00o;;[ o; ;[I"Passwd;F@o; ;[I"<Passwd is a Struct that contains the following members:;F@o:RDoc::Markup::List: @type: NOTE:@items[o:RDoc::Markup::ListItem:@label[I" name;F;[o; ;[I";contains the short login name of the user as a String.;Fo;;[I"passwd;F;[o; ;[I">contains the encrypted password of the user as a String. ;FI"Kan 'x' is returned if shadow passwords are in use. An '*' is returned ;FI"0if the user cannot log in using a password.;Fo;;[I"uid;F;[o; ;[I"4contains the integer user ID (uid) of the user.;Fo;;[I"gid;F;[o; ;[I"Econtains the integer group ID (gid) of the user's primary group.;Fo;;[I"dir;F;[o; ;[I"Econtains the path to the home directory of the user as a String.;Fo;;[I" shell;F;[o; ;[I"Bcontains the path to the login shell of the user as a String.;F@S;;i; I"WThe following members below are optional, and must be compiled with special flags:;F@o;;;;[o;;[I" gecos;F;[o; ;[ I"?contains a longer String description of the user, such as ;FI"Ja full name. Some Unix systems provide structured information in the ;FI"0gecos field, but this is system-dependent. ;FI"-must be compiled with +HAVE_ST_PW_GECOS+;Fo;;[I"change;F;[o; ;[I"Lpassword change time(integer) must be compiled with +HAVE_ST_PW_CHANGE+;Fo;;[I" quota;F;[o; ;[I"Bquota value(integer) must be compiled with +HAVE_ST_PW_QUOTA+;Fo;;[I"age;F;[o; ;[I"Apassword age(integer) must be compiled with +HAVE_ST_PW_AGE+;Fo;;[I" class;F;[o; ;[I"Guser access class(string) must be compiled with +HAVE_ST_PW_CLASS+;Fo;;[I"comment;F;[o; ;[I"?comment(string) must be compiled with +HAVE_ST_PW_COMMENT+;Fo;;[I"expire;F;[o; ;[I"Oaccount expiration time(integer) must be compiled with +HAVE_ST_PW_EXPIRE+;F;@,;0@,@cRDoc::NormalModule0U;[i I" Group;TI"Etc::Group;T00o;;[o; ;[I" Group;F@o; ;[I"QGroup is a Struct that is only available when compiled with +HAVE_GETGRENT+.;F@o; ;[I"/The struct contains the following members:;F@o;;;;[ o;;[I" name;F;[o; ;[I"0contains the name of the group as a String.;Fo;;[I"passwd;F;[o; ;[ I"<contains the encrypted password as a String. An 'x' is ;FI"Ireturned if password access to the group is not available; an empty ;FI"Istring is returned if no password is needed to obtain membership of ;FI"the group.;F@o; ;[I"/Must be compiled with +HAVE_ST_GR_PASSWD+.;Fo;;[I"gid;F;[o; ;[I"3contains the group's numeric ID as an integer.;Fo;;[I"mem;F;[o; ;[I"Dis an Array of Strings containing the short login names of the ;FI"members of the group.;F;@,;0@,@@�0[ [[I" class;T[[:public[[I" endgrent;TI"ext/etc/etc.c;T[I" endpwent;T@�[I" getgrent;T@�[I" getgrgid;T@�[I" getgrnam;T@�[I" getlogin;T@�[I" getpwent;T@�[I" getpwnam;T@�[I" getpwuid;T@�[I" group;T@�[I"passwd;T@�[I" setgrent;T@�[I" setpwent;T@�[I"sysconfdir;T@�[I"systmpdir;T@�[:protected[ [:private[ [I" instance;T[[;[ [;[ [;[ [ [U:RDoc::Context::Section[i 0o;;[ ;0;0[@,I"+lib/webrick/httpservlet/filehandler.rb;T@,cRDoc::TopLevel