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.1
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 /
cmd /
nm /
[ HOME SHELL ]
Name
Size
Permission
Action
doc.go
1.25
KB
-rw-r--r--
nm.go
2.99
KB
-rw-r--r--
nm_cgo_test.go
945
B
-rw-r--r--
nm_test.go
8.73
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : nm_cgo_test.go
// Copyright 2017 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. // +build cgo package main import ( "runtime" "testing" ) func canInternalLink() bool { switch runtime.GOOS { case "aix": return false case "dragonfly": return false case "freebsd": switch runtime.GOARCH { case "arm64": return false } case "linux": switch runtime.GOARCH { case "arm64", "mips64", "mips64le", "mips", "mipsle", "ppc64", "ppc64le": return false } case "openbsd": switch runtime.GOARCH { case "arm64": return false } } return true } func TestInternalLinkerCgoExec(t *testing.T) { if !canInternalLink() { t.Skip("skipping; internal linking is not supported") } testGoExec(t, true, false) } func TestExternalLinkerCgoExec(t *testing.T) { testGoExec(t, true, true) } func TestCgoLib(t *testing.T) { testGoLib(t, true) }
Close