Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.122
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 /
network /
Delete
Unzip
Name
Size
Permission
Date
Action
PostAgent.sh
274
B
-rw-r--r--
2016-08-25 05:14
coreserv.awk
3.31
KB
-rw-r--r--
2016-08-25 05:14
eliza.awk
9.98
KB
-rw-r--r--
2016-08-25 05:14
fingerclient.awk
161
B
-rw-r--r--
2016-08-25 05:14
geturl.awk
787
B
-rw-r--r--
2016-08-25 05:14
hello-serv.awk
463
B
-rw-r--r--
2016-08-25 05:14
maze.awk
2.59
KB
-rw-r--r--
2016-08-25 05:14
mobag.awk
2.77
KB
-rw-r--r--
2016-08-25 05:14
panic.awk
575
B
-rw-r--r--
2016-08-25 05:14
protbase.awk
400
B
-rw-r--r--
2016-08-25 05:14
protbase.request
162
B
-rw-r--r--
2016-08-25 05:14
protbase.result
642
B
-rw-r--r--
2016-08-25 05:14
remconf.awk
2.13
KB
-rw-r--r--
2016-08-25 05:14
statist.awk
3.53
KB
-rw-r--r--
2016-08-25 05:14
stoxdata.txt
165
B
-rw-r--r--
2016-08-25 05:14
stoxpred.awk
4.66
KB
-rw-r--r--
2016-08-25 05:14
testserv.awk
334
B
-rw-r--r--
2016-08-25 05:14
urlchk.awk
1.03
KB
-rw-r--r--
2016-08-25 05:14
webgrab.awk
185
B
-rw-r--r--
2016-08-25 05:14
Save
Rename
BEGIN { if (ARGC != 2) { print "GETURL - retrieve Web page via HTTP 1.0" print "IN:\n the URL as a command-line parameter" print "PARAM(S):\n -v Proxy=MyProxy" print "OUT:\n the page content on stdout" print " the page header on stderr" print "JK 16.05.1997" print "ADR 13.08.2000" exit } URL = ARGV[1]; ARGV[1] = "" if (Proxy == "") Proxy = "127.0.0.1" if (ProxyPort == 0) ProxyPort = 80 if (Method == "") Method = "GET" HttpService = "/inet/tcp/0/" Proxy "/" ProxyPort ORS = RS = "\r\n\r\n" print Method " " URL " HTTP/1.0" |& HttpService HttpService |& getline Header print Header > "/dev/stderr" while ((HttpService |& getline) > 0) printf "%s", $0 close(HttpService) }