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.1
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 /
nm /
[ HOME SHELL ]
Name
Size
Permission
Action
doc.go
1.25
KB
-rw-r--r--
nm.go
2.99
KB
-rw-r--r--
nm_cgo_test.go
945
B
-rw-r--r--
nm_test.go
8.73
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : doc.go
// Copyright 2013 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. // Nm lists the symbols defined or used by an object file, archive, or executable. // // Usage: // go tool nm [options] file... // // The default output prints one line per symbol, with three space-separated // fields giving the address (in hexadecimal), type (a character), and name of // the symbol. The types are: // // T text (code) segment symbol // t static text segment symbol // R read-only data segment symbol // r static read-only data segment symbol // D data segment symbol // d static data segment symbol // B bss segment symbol // b static bss segment symbol // C constant address // U referenced but undefined symbol // // Following established convention, the address is omitted for undefined // symbols (type U). // // The options control the printed output: // // -n // an alias for -sort address (numeric), // for compatibility with other nm commands // -size // print symbol size in decimal between address and type // -sort {address,name,none,size} // sort output in the given order (default name) // size orders from largest to smallest // -type // print symbol type after name // package main
Close