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 /
net /
internal /
socktest /
[ HOME SHELL ]
Name
Size
Permission
Action
main_test.go
1.07
KB
-rw-r--r--
main_unix_test.go
475
B
-rw-r--r--
main_windows_test.go
478
B
-rw-r--r--
switch.go
4.84
KB
-rw-r--r--
switch_posix.go
1.04
KB
-rw-r--r--
switch_stub.go
454
B
-rw-r--r--
switch_unix.go
752
B
-rw-r--r--
switch_windows.go
730
B
-rw-r--r--
sys_cloexec.go
1003
B
-rw-r--r--
sys_unix.go
4
KB
-rw-r--r--
sys_windows.go
5.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : main_test.go
// Copyright 2015 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 !js,!plan9 package socktest_test import ( "net/internal/socktest" "os" "sync" "syscall" "testing" ) var sw socktest.Switch func TestMain(m *testing.M) { installTestHooks() st := m.Run() for s := range sw.Sockets() { closeFunc(s) } uninstallTestHooks() os.Exit(st) } func TestSwitch(t *testing.T) { const N = 10 var wg sync.WaitGroup wg.Add(N) for i := 0; i < N; i++ { go func() { defer wg.Done() for _, family := range []int{syscall.AF_INET, syscall.AF_INET6} { socketFunc(family, syscall.SOCK_STREAM, syscall.IPPROTO_TCP) } }() } wg.Wait() } func TestSocket(t *testing.T) { for _, f := range []socktest.Filter{ func(st *socktest.Status) (socktest.AfterFilter, error) { return nil, nil }, nil, } { sw.Set(socktest.FilterSocket, f) for _, family := range []int{syscall.AF_INET, syscall.AF_INET6} { socketFunc(family, syscall.SOCK_STREAM, syscall.IPPROTO_TCP) } } }
Close