Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
go /
pkg /
mod /
golang.org /
x /
mod@v0.14.0 /
zip /
[ HOME SHELL ]
Name
Size
Permission
Action
testdata
[ DIR ]
dr-xr-xr-x
vendor_test.go
1.21
KB
-r--r--r--
zip.go
30.96
KB
-r--r--r--
zip_test.go
52.62
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vendor_test.go
// Copyright 2020 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 zip import "testing" func TestIsVendoredPackage(t *testing.T) { for _, tc := range []struct { path string want bool falsePositive bool // is this case affected by https://golang.org/issue/37397? }{ {path: "vendor/foo/foo.go", want: true}, {path: "pkg/vendor/foo/foo.go", want: true}, {path: "longpackagename/vendor/foo/foo.go", want: true}, {path: "vendor/vendor.go", want: false}, // We ideally want these cases to be false, but they are affected by // https://golang.org/issue/37397, and if we fix them we will invalidate // existing module checksums. We must leave them as-is-for now. {path: "pkg/vendor/vendor.go", falsePositive: true}, {path: "longpackagename/vendor/vendor.go", falsePositive: true}, } { got := isVendoredPackage(tc.path) want := tc.want if tc.falsePositive { want = true } if got != want { t.Errorf("isVendoredPackage(%q) = %t; want %t", tc.path, got, tc.want) if tc.falsePositive { t.Logf("(Expected a false-positive due to https://golang.org/issue/37397.)") } } } }
Close