-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhostinfo.go
121 lines (108 loc) · 2.36 KB
/
hostinfo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package main
import (
"encoding/json"
"fmt"
"os"
"os/exec"
)
const (
unameCommand = "uname -a"
ifconfigCommand = "ifconfig"
arpCommand = "arp -a"
netstatCommand = "netstat -a"
psCommand = "ps -e"
)
// GetOSInfo returns the operating system information.
func GetOSInfo() (string, error) {
cmd := exec.Command("/bin/sh", "-c", unameCommand)
out, err := cmd.CombinedOutput()
if err != nil {
return "", err
}
return string(out), nil
}
// GetNetInterface returns the network interface information.
func GetNetInterface() (string, error) {
cmd := exec.Command("/bin/sh", "-c", ifconfigCommand)
out, err := cmd.CombinedOutput()
if err != nil {
return "", err
}
return string(out), nil
}
// GetARPTable returns the ARP table.
func GetARPTable() (string, error) {
cmd := exec.Command("/bin/sh", "-c", arpCommand)
out, err := cmd.CombinedOutput()
if err != nil {
return "", err
}
return string(out), nil
}
// GetNetworkConnections returns the network connections.
func GetNetworkConnections() (string, error) {
cmd := exec.Command("/bin/sh", "-c", netstatCommand)
out, err := cmd.CombinedOutput()
if err != nil {
return "", err
}
return string(out), nil
}
// GetRunningProcesses returns the running processes.
func GetRunningProcesses() (string, error) {
cmd := exec.Command("/bin/sh", "-c", psCommand)
out, err := cmd.CombinedOutput()
if err != nil {
return "", err
}
return string(out), nil
}
// ListData lists the system and networking information in JSON format.
func ListData() error {
osInfo, err := GetOSInfo()
if err != nil {
return err
}
netInterface, err := GetNetInterface()
if err != nil {
return err
}
arpTable, err := GetARPTable()
if err != nil {
return err
}
networkConnections, err := GetNetworkConnections()
if err != nil {
return err
}
runningProcesses, err := GetRunningProcesses()
if err != nil {
return err
}
jsonData := map[string]string{
"OS INFO": osInfo,
"NET INFO": netInterface,
"ARP TABLE": arpTable,
"NETWORK CONNECTIONS": networkConnections,
"RUNNING PROCESSES": runningProcesses,
}
// Write the JSON data to a file.
file, err := os.Create("host.json")
if err != nil {
return err
}
defer file.Close()
encoder := json.NewEncoder(file)
err = encoder.Encode(jsonData)
if err != nil {
return err
}
return nil
}
func main() {
err := ListData()
if err != nil {
fmt.Println(err)
return
}
}