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 /
link /
internal /
sym /
[ HOME SHELL ]
Name
Size
Permission
Action
attribute.go
5.43
KB
-rw-r--r--
compilation_unit.go
1.03
KB
-rw-r--r--
library.go
641
B
-rw-r--r--
reloc.go
3.47
KB
-rw-r--r--
segment.go
2.32
KB
-rw-r--r--
sizeof_test.go
822
B
-rw-r--r--
symbol.go
9.91
KB
-rw-r--r--
symbols.go
3.99
KB
-rw-r--r--
symkind.go
4.6
KB
-rw-r--r--
symkind_string.go
2.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sizeof_test.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. package sym import ( "reflect" "testing" "unsafe" ) // Assert that the size of important structures do not change unexpectedly. func TestSizeof(t *testing.T) { const nbit = unsafe.Sizeof(uintptr(0)) * 8 const _64bit = nbit == 64 var tests = []struct { val interface{} // type as a value _32bit uintptr // size on 32bit platforms _64bit uintptr // size on 64bit platforms }{ {Symbol{}, 108, 176}, } for _, tt := range tests { want := tt._32bit if _64bit { want = tt._64bit } got := reflect.TypeOf(tt.val).Size() if want != got { t.Errorf("%d bit unsafe.Sizeof(%T) = %d, want %d", nbit, tt.val, got, want) } } }
Close