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 /
misc /
cgo /
errors /
testdata /
[ HOME SHELL ]
Name
Size
Permission
Action
err1.go
404
B
-rw-r--r--
err2.go
2.08
KB
-rw-r--r--
err4.go
259
B
-rw-r--r--
issue11097a.go
279
B
-rw-r--r--
issue11097b.go
278
B
-rw-r--r--
issue14669.go
368
B
-rw-r--r--
issue18452.go
390
B
-rw-r--r--
issue18889.go
70
B
-rw-r--r--
issue28069.go
555
B
-rw-r--r--
issue28721.go
506
B
-rw-r--r--
issue33061.go
373
B
-rw-r--r--
long_double_size.go
305
B
-rw-r--r--
malloc.go
766
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : malloc.go
// Copyright 2016 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. // Test that C.malloc does not return nil. package main // #include <stdlib.h> import "C" import ( "fmt" "runtime" ) func main() { var size C.size_t size-- // The Dragonfly libc succeeds when asked to allocate // 0xffffffffffffffff bytes, so pass a different value that // causes it to fail. if runtime.GOOS == "dragonfly" { size = C.size_t(0x7fffffff << (32 * (^uintptr(0) >> 63))) } p := C.malloc(size) if p == nil { fmt.Println("malloc: C.malloc returned nil") // Just exit normally--the test script expects this // program to crash, so exiting normally indicates failure. } }
Close