Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
go /
src /
testing /
iotest /
[ HOME SHELL ]
Name
Size
Permission
Action
logger.go
1.26
KB
-rw-r--r--
logger_test.go
3.54
KB
-rw-r--r--
reader.go
2.18
KB
-rw-r--r--
reader_test.go
5.46
KB
-rw-r--r--
writer.go
674
B
-rw-r--r--
writer_test.go
876
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : writer_test.go
// Copyright 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package iotest import ( "bytes" "testing" ) var truncateWriterTests = []struct { in string want string trunc int64 n int }{ {"hello", "", -1, 5}, {"world", "", 0, 5}, {"abcde", "abc", 3, 5}, {"edcba", "edcba", 7, 5}, } func TestTruncateWriter(t *testing.T) { for _, tt := range truncateWriterTests { buf := new(bytes.Buffer) tw := TruncateWriter(buf, tt.trunc) n, err := tw.Write([]byte(tt.in)) if err != nil { t.Errorf("Unexpected error %v for\n\t%+v", err, tt) } if g, w := buf.String(), tt.want; g != w { t.Errorf("got %q, expected %q", g, w) } if g, w := n, tt.n; g != w { t.Errorf("read %d bytes, but expected to have read %d bytes for\n\t%+v", g, w, tt) } } }
Close