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 /
vendor /
golang.org /
x /
sys /
cpu /
[ HOME SHELL ]
Name
Size
Permission
Action
asm_aix_ppc64.s
410
B
-rw-r--r--
byteorder.go
734
B
-rw-r--r--
cpu.go
5.81
KB
-rw-r--r--
cpu_aix_ppc64.go
609
B
-rw-r--r--
cpu_arm.go
216
B
-rw-r--r--
cpu_gc_s390x.go
677
B
-rw-r--r--
cpu_gc_x86.go
501
B
-rw-r--r--
cpu_gccgo.c
1.17
KB
-rw-r--r--
cpu_gccgo.go
628
B
-rw-r--r--
cpu_gccgo_s390x.go
1
KB
-rw-r--r--
cpu_linux.go
1.15
KB
-rw-r--r--
cpu_linux_arm64.go
1.99
KB
-rw-r--r--
cpu_linux_ppc64x.go
803
B
-rw-r--r--
cpu_linux_s390x.go
3.92
KB
-rw-r--r--
cpu_mips64x.go
243
B
-rw-r--r--
cpu_mipsx.go
239
B
-rw-r--r--
cpu_other_arm64.go
240
B
-rw-r--r--
cpu_riscv64.go
235
B
-rw-r--r--
cpu_s390x.s
1.96
KB
-rw-r--r--
cpu_wasm.go
413
B
-rw-r--r--
cpu_x86.go
1.3
KB
-rw-r--r--
cpu_x86.s
602
B
-rw-r--r--
syscall_aix_ppc64_gc.go
995
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cpu_linux.go
// Copyright 2018 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 !amd64,!amd64p32,!386 package cpu import ( "io/ioutil" ) const ( _AT_HWCAP = 16 _AT_HWCAP2 = 26 procAuxv = "/proc/self/auxv" uintSize = int(32 << (^uint(0) >> 63)) ) // For those platforms don't have a 'cpuid' equivalent we use HWCAP/HWCAP2 // These are initialized in cpu_$GOARCH.go // and should not be changed after they are initialized. var hwCap uint var hwCap2 uint func init() { buf, err := ioutil.ReadFile(procAuxv) if err != nil { // e.g. on android /proc/self/auxv is not accessible, so silently // ignore the error and leave Initialized = false return } bo := hostByteOrder() for len(buf) >= 2*(uintSize/8) { var tag, val uint switch uintSize { case 32: tag = uint(bo.Uint32(buf[0:])) val = uint(bo.Uint32(buf[4:])) buf = buf[8:] case 64: tag = uint(bo.Uint64(buf[0:])) val = uint(bo.Uint64(buf[8:])) buf = buf[16:] } switch tag { case _AT_HWCAP: hwCap = val case _AT_HWCAP2: hwCap2 = val } } doinit() Initialized = true }
Close