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 /
testcarchive /
testdata /
[ HOME SHELL ]
Name
Size
Permission
Action
libgo
[ DIR ]
drwxr-xr-x
libgo2
[ DIR ]
drwxr-xr-x
libgo3
[ DIR ]
drwxr-xr-x
libgo4
[ DIR ]
drwxr-xr-x
libgo6
[ DIR ]
drwxr-xr-x
libgo7
[ DIR ]
drwxr-xr-x
p
[ DIR ]
drwxr-xr-x
main.c
847
B
-rw-r--r--
main2.c
4.7
KB
-rw-r--r--
main3.c
3.93
KB
-rw-r--r--
main4.c
4.48
KB
-rw-r--r--
main5.c
1.9
KB
-rw-r--r--
main6.c
830
B
-rw-r--r--
main7.c
332
B
-rw-r--r--
main_unix.c
1.38
KB
-rw-r--r--
main_windows.c
343
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : main6.c
// 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 using the Go profiler in a C program does not crash. #include <stddef.h> #include <sys/time.h> #include "libgo6.h" int main(int argc, char **argv) { struct timeval tvstart, tvnow; int diff; gettimeofday(&tvstart, NULL); go_start_profile(); // Busy wait so we have something to profile. // If we just sleep the profiling signal will never fire. while (1) { gettimeofday(&tvnow, NULL); diff = (tvnow.tv_sec - tvstart.tv_sec) * 1000 * 1000 + (tvnow.tv_usec - tvstart.tv_usec); // Profile frequency is 100Hz so we should definitely // get a signal in 50 milliseconds. if (diff > 50 * 1000) break; } go_stop_profile(); return 0; }
Close