-
Notifications
You must be signed in to change notification settings - Fork 11
/
net.go
executable file
·120 lines (87 loc) · 2.22 KB
/
net.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
package netcmds
import (
"errors"
"strings"
"dfis-utils/pkg/netutils"
"github.com/ibraimgm/libcmd"
)
func IPtoHost(cmd *libcmd.Cmd) error {
ip := cmd.Operand("ip")
if ip == "" {
return errors.New("you must specify an ip address to use")
}
return netutils.IPtoHost(ip)
}
func HosttoIP(cmd *libcmd.Cmd) error {
host := cmd.Operand("host")
if host == "" {
return errors.New("you must specify a hostname to use")
}
return netutils.HosttoIP(host)
}
func MxRecord(cmd *libcmd.Cmd) error {
host := cmd.Operand("host")
if host == "" {
return errors.New("you must specify a hostname to use")
}
return netutils.MxRecord(host)
}
func NameServer(cmd *libcmd.Cmd) error {
host := cmd.Operand("host")
if host == "" {
return errors.New("you must specify a hostname to use")
}
return netutils.NameServer(host)
}
func Scan(cmd *libcmd.Cmd) error {
ipaddr := cmd.Operand("ip")
startPort := cmd.GetInt("start")
endPort := cmd.GetInt("end")
if ipaddr == "" {
return errors.New("you must specify an ip address to scan")
}
if *startPort < 0 {
return errors.New("you must specify a starting port to use")
}
if *endPort <= 0 {
return errors.New("you must specify an ending port to use")
}
netutils.Scan(ipaddr, *startPort, *endPort)
return nil
}
func Grab(cmd *libcmd.Cmd) error {
ipaddr := cmd.Operand("ip")
startPort := cmd.GetInt("start")
endPort := cmd.GetInt("end")
if ipaddr == "" {
return errors.New("you must specify a hostname to use")
}
if *startPort <= 0 {
return errors.New("you must specify a starting port to use")
}
if *endPort <= 0 {
return errors.New("you must specify an ending port to use")
}
netutils.Grab(ipaddr, *startPort, *endPort)
return nil
}
func SubName(cmd *libcmd.Cmd) error {
ipaddr := cmd.Operand("ip")
if ipaddr == "" {
return errors.New("you must specify an ip address to use")
}
netutils.SubName(ipaddr)
return nil
}
func Fuzz(cmd *libcmd.Cmd) error {
url := cmd.Operand("url")
maxbytes := cmd.GetInt("maxbytes")
if !strings.HasPrefix(url, "http") {
return errors.New("you must specify a valid url to use")
}
if *maxbytes <= 0 {
return errors.New("you must specify a valid number of bytes to fuzz")
}
netutils.Fuzz(url, *maxbytes)
return nil
}