Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
gawk /
examples /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
assert.awk
383
B
-rw-r--r--
2015-05-19 15:40
bits2str.awk
330
B
-rw-r--r--
2015-05-19 15:40
cliff_rand.awk
307
B
-rw-r--r--
2015-05-19 15:40
ctime.awk
234
B
-rw-r--r--
2015-05-19 15:40
ftrans.awk
315
B
-rw-r--r--
2015-05-19 15:40
getopt.awk
2.15
KB
-rw-r--r--
2015-05-19 15:40
gettime.awk
2.43
KB
-rw-r--r--
2015-05-19 15:40
grcat.c
982
B
-rw-r--r--
2015-05-19 15:40
groupawk.in
1.73
KB
-rw-r--r--
2015-05-19 15:40
inplace.awk
573
B
-rw-r--r--
2015-05-19 15:40
join.awk
378
B
-rw-r--r--
2015-05-19 15:40
libintl.awk
238
B
-rw-r--r--
2015-05-19 15:40
noassign.awk
422
B
-rw-r--r--
2015-05-19 15:40
ord.awk
937
B
-rw-r--r--
2015-05-19 15:40
passwdawk.in
1.18
KB
-rw-r--r--
2015-05-19 15:40
processarray.awk
355
B
-rw-r--r--
2015-05-19 15:40
pwcat.c
801
B
-rw-r--r--
2015-05-19 15:40
quicksort.awk
1.01
KB
-rw-r--r--
2015-05-19 15:40
readable.awk
489
B
-rw-r--r--
2015-05-19 15:40
readfile.awk
267
B
-rw-r--r--
2015-05-19 15:40
rewind.awk
404
B
-rw-r--r--
2015-05-19 15:40
round.awk
661
B
-rw-r--r--
2015-05-19 15:40
shellquote.awk
472
B
-rw-r--r--
2015-05-19 15:40
strtonum.awk
1.42
KB
-rw-r--r--
2015-05-19 15:40
walkarray.awk
214
B
-rw-r--r--
2015-05-19 15:40
zerofile.awk
424
B
-rw-r--r--
2015-05-19 15:40
Save
Rename
/* * pwcat.c * * Generate a printable version of the password database. */ /* * Arnold Robbins, arnold@skeeve.com, May 1993 * Public Domain * December 2010, move to ANSI C definition for main(). */ #if HAVE_CONFIG_H #include <config.h> #endif #include <stdio.h> #include <pwd.h> #if defined (STDC_HEADERS) #include <stdlib.h> #endif int main(int argc, char **argv) { struct passwd *p; while ((p = getpwent()) != NULL) #ifdef ZOS_USS printf("%s:%ld:%ld:%s:%s\n", p->pw_name, (long) p->pw_uid, (long) p->pw_gid, p->pw_dir, p->pw_shell); #else printf("%s:%s:%ld:%ld:%s:%s:%s\n", p->pw_name, p->pw_passwd, (long) p->pw_uid, (long) p->pw_gid, p->pw_gecos, p->pw_dir, p->pw_shell); #endif endpwent(); return 0; }