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.31
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 /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
README
1.29
KB
-rw-r--r--
build.go
45.95
KB
-rw-r--r--
buildgo.go
3.41
KB
-rw-r--r--
buildruntime.go
3.28
KB
-rw-r--r--
buildtool.go
9.64
KB
-rw-r--r--
cpuid_386.s
318
B
-rw-r--r--
cpuid_amd64.s
319
B
-rw-r--r--
cpuid_default.s
248
B
-rw-r--r--
doc.go
657
B
-rw-r--r--
imports.go
6.33
KB
-rw-r--r--
main.go
4.43
KB
-rw-r--r--
sys_default.go
213
B
-rw-r--r--
sys_windows.go
1.32
KB
-rw-r--r--
test.go
45.34
KB
-rw-r--r--
test_linux.go
611
B
-rw-r--r--
util.go
10.71
KB
-rw-r--r--
util_gc.go
821
B
-rw-r--r--
util_gccgo.go
457
B
-rw-r--r--
vfp_arm.s
654
B
-rw-r--r--
vfp_default.s
313
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : buildruntime.go
// Copyright 2012 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 main import ( "bytes" "fmt" "os" "strings" ) /* * Helpers for building runtime. */ // mkzversion writes zversion.go: // // package sys // // const TheVersion = <version> // const Goexperiment = <goexperiment> // const StackGuardMultiplier = <multiplier value> // func mkzversion(dir, file string) { var buf bytes.Buffer fmt.Fprintf(&buf, "// Code generated by go tool dist; DO NOT EDIT.\n") fmt.Fprintln(&buf) fmt.Fprintf(&buf, "package sys\n") fmt.Fprintln(&buf) fmt.Fprintf(&buf, "const TheVersion = `%s`\n", findgoversion()) fmt.Fprintf(&buf, "const Goexperiment = `%s`\n", os.Getenv("GOEXPERIMENT")) fmt.Fprintf(&buf, "const StackGuardMultiplierDefault = %d\n", stackGuardMultiplierDefault()) writefile(buf.String(), file, writeSkipSame) } // mkzbootstrap writes cmd/internal/objabi/zbootstrap.go: // // package objabi // // const defaultGOROOT = <goroot> // const defaultGO386 = <go386> // const defaultGOARM = <goarm> // const defaultGOMIPS = <gomips> // const defaultGOMIPS64 = <gomips64> // const defaultGOPPC64 = <goppc64> // const defaultGOOS = runtime.GOOS // const defaultGOARCH = runtime.GOARCH // const defaultGO_EXTLINK_ENABLED = <goextlinkenabled> // const version = <version> // const stackGuardMultiplierDefault = <multiplier value> // const goexperiment = <goexperiment> // // The use of runtime.GOOS and runtime.GOARCH makes sure that // a cross-compiled compiler expects to compile for its own target // system. That is, if on a Mac you do: // // GOOS=linux GOARCH=ppc64 go build cmd/compile // // the resulting compiler will default to generating linux/ppc64 object files. // This is more useful than having it default to generating objects for the // original target (in this example, a Mac). func mkzbootstrap(file string) { var buf bytes.Buffer fmt.Fprintf(&buf, "// Code generated by go tool dist; DO NOT EDIT.\n") fmt.Fprintln(&buf) fmt.Fprintf(&buf, "package objabi\n") fmt.Fprintln(&buf) fmt.Fprintf(&buf, "import \"runtime\"\n") fmt.Fprintln(&buf) fmt.Fprintf(&buf, "const defaultGO386 = `%s`\n", go386) fmt.Fprintf(&buf, "const defaultGOARM = `%s`\n", goarm) fmt.Fprintf(&buf, "const defaultGOMIPS = `%s`\n", gomips) fmt.Fprintf(&buf, "const defaultGOMIPS64 = `%s`\n", gomips64) fmt.Fprintf(&buf, "const defaultGOPPC64 = `%s`\n", goppc64) fmt.Fprintf(&buf, "const defaultGOOS = runtime.GOOS\n") fmt.Fprintf(&buf, "const defaultGOARCH = runtime.GOARCH\n") fmt.Fprintf(&buf, "const defaultGO_EXTLINK_ENABLED = `%s`\n", goextlinkenabled) fmt.Fprintf(&buf, "const defaultGO_LDSO = `%s`\n", defaultldso) fmt.Fprintf(&buf, "const version = `%s`\n", findgoversion()) fmt.Fprintf(&buf, "const stackGuardMultiplierDefault = %d\n", stackGuardMultiplierDefault()) fmt.Fprintf(&buf, "const goexperiment = `%s`\n", os.Getenv("GOEXPERIMENT")) writefile(buf.String(), file, writeSkipSame) } // stackGuardMultiplierDefault returns a multiplier to apply to the default // stack guard size. Larger multipliers are used for non-optimized // builds that have larger stack frames. func stackGuardMultiplierDefault() int { for _, s := range strings.Split(os.Getenv("GO_GCFLAGS"), " ") { if s == "-N" { return 2 } } return 1 }
Close