Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.15.160.18
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
mawk /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
ct_length.awk
407
B
-rwxr-xr-x
2008-09-09 20:52
decl.awk
2.97
KB
-rwxr-xr-x
2008-09-09 20:52
deps.awk
1.28
KB
-rwxr-xr-x
2008-09-09 20:52
eatc.awk
492
B
-rwxr-xr-x
2008-09-09 20:52
gdecl.awk
2.73
KB
-rwxr-xr-x
2012-12-09 23:03
hcal
13.72
KB
-rwxr-xr-x
2008-09-09 20:52
hical
2.89
KB
-rwxr-xr-x
2009-08-21 00:36
nocomment.awk
590
B
-rwxr-xr-x
2008-09-09 20:52
primes.awk
1.03
KB
-rwxr-xr-x
2008-09-09 20:52
qsort.awk
1.07
KB
-rwxr-xr-x
2020-01-20 11:52
Save
Rename
#!/usr/bin/mawk -f # eatc.awk # another program to remove comments # { while( t = index($0 , "/*") ) { printf "%s" , substr($0,1,t-1) $0 = eat_comment( substr($0, t+2) ) } print } function eat_comment(s, t) { #replace comment by one space printf " " while ( (t = index(s, "*/")) == 0 ) if ( getline s == 0 ) { # input error -- unterminated comment system("/bin/sh -c 'echo unterminated comment' 1>&2") exit 1 } return substr(s,t+2) }