scanner.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /*
  2. GNU GENERAL PUBLIC LICENSE
  3. Version 3, 29 June 2007
  4. kyoketsu, a Client-To-Client Network Enumeration System
  5. Copyright (C) 2024 Russell Hrubesky, ChiralWorks Software LLC
  6. Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
  7. Everyone is permitted to copy and distribute verbatim copies
  8. of this license document, but changing it is not allowed.
  9. This program is free software: you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation, either version 3 of the License,
  12. or (at your option) any later version.
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  16. See the GNU General Public License for more details.
  17. You should have received a copy of the GNU General Public License
  18. along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. package kyoketsu
  21. import (
  22. "fmt"
  23. "log"
  24. "net"
  25. "strings"
  26. "sync"
  27. "syscall"
  28. "time"
  29. )
  30. /*
  31. Need to work with with a database schema in mind, and revolve functionality around that
  32. */
  33. type Host struct {
  34. Fqdn string // The FQDN of the address targeted as per the systems default resolver
  35. IpAddress string // the IPv4 address (no ipv6 support yet)
  36. PingResponse bool // boolean value representing if the host responded to ICMP
  37. ListeningPorts []int // list of maps depicting a port number -> service name
  38. Network string
  39. PortString string
  40. Id int64
  41. }
  42. /*
  43. Perform a concurrent TCP port dial on a host, either by domain name or IP.
  44. :param addr: the address of fqdn to scan
  45. :param ports a list of port numbers to dial the host with
  46. */
  47. func PortWalk(addr string, ports []int) []int {
  48. out := []int{}
  49. for i := range ports {
  50. p := singlePortScan(addr, ports[i])
  51. if p != 0 {
  52. out = append(out, p)
  53. }
  54. }
  55. return out
  56. }
  57. type PortScanResult struct {
  58. // This is used to represent the results of a port scan against one host
  59. PortNumber int `json:"port_number"` // The port number that was scanned
  60. Service string `json:"service"` // the name of the service that the port was identified/mapped to
  61. Protocol string `json:"protocol"` // The IP protocol (TCP/UDP)
  62. Listening bool `json:"listening"` // A boolean value that depicts if the service is listening or not
  63. }
  64. /*
  65. Wrapper function to dependency inject the resource for a port -> service name mapping.
  66. May move to a database, or something.
  67. */
  68. func RetrieveScanDirectives() []int {
  69. var portmap = []int{22, 80, 443, 8080, 4379, 445, 53, 153, 27017}
  70. return portmap
  71. }
  72. /*
  73. Scans a single host on a single port
  74. :param addr: the address to dial
  75. :param port: the port number to dial
  76. :param svcs: the name of the service that the port is associate with
  77. */
  78. func singlePortScan(addr string, port int) int {
  79. conn, err := net.DialTimeout("tcp", fmt.Sprintf("%v:%d", addr, port), 2*time.Second)
  80. if err != nil {
  81. return 0
  82. // return PortScanResult{PortNumber: port, Protocol: "tcp", Listening: false}
  83. }
  84. fmt.Printf("Host %s responded.\n", addr)
  85. conn.Close()
  86. return port
  87. //return PortScanResult{PortNumber: port, Protocol: "tcp", Listening: true}
  88. }
  89. /*
  90. Perform a port scan sweep across an entire subnet
  91. :param ip: the IPv4 address WITH CIDR notation
  92. :param portmap: the mapping of ports to scan with (port number mapped to protocol name)
  93. */
  94. func NetSweep(ips []net.IP, cidr int, ports []int, scanned chan Host) {
  95. wg := &sync.WaitGroup{}
  96. network := getNetwork(ips[0].String(), cidr)
  97. for i := range ips {
  98. wg.Add(1)
  99. go func(target string, ntwrk string, portnum []int, wgrp *sync.WaitGroup, output chan Host) {
  100. defer wgrp.Done()
  101. portscanned := PortWalk(target, portnum)
  102. output <- Host{
  103. Fqdn: getFqdn(target),
  104. IpAddress: target,
  105. ListeningPorts: portscanned,
  106. PortString: strings.Trim(strings.Join(strings.Fields(fmt.Sprint(portscanned)), ","), "[]"),
  107. Network: ntwrk,
  108. }
  109. }(ips[i].String(), network, ports, wg, scanned)
  110. }
  111. wg.Wait()
  112. close(scanned)
  113. }
  114. func getFqdn(ip string) string {
  115. names, err := net.LookupAddr(ip)
  116. if err != nil {
  117. return "not found with default resolver"
  118. }
  119. return strings.Join(names, ", ")
  120. }
  121. /*
  122. Create a new TCP dialer to share in a goroutine
  123. */
  124. func NewDialer() net.Dialer {
  125. return net.Dialer{}
  126. }
  127. /*
  128. Create a new low level networking interface socket
  129. :param intf: the name of the interface to bind the socket to
  130. */
  131. func NewTCPSock(interfaceName string) *syscall.SockaddrLinklayer {
  132. sock, err := syscall.Socket(syscall.AF_PACKET, syscall.SOCK_RAW, syscall.ETH_P_IP)
  133. if err != nil {
  134. log.Fatal(err, " Could not create raw AF_PACKET socket.\n")
  135. }
  136. defer syscall.Close(sock)
  137. intf, err := net.InterfaceByName(interfaceName)
  138. if err != nil {
  139. log.Fatal(err, " Couldnt locate that interface. Are you sure you mean to pass ", interfaceName, " ?")
  140. }
  141. return &syscall.SockaddrLinklayer{
  142. Protocol: htons(syscall.ETH_P_IP),
  143. Ifindex: intf.Index,
  144. }
  145. }
  146. // htons converts a uint16 from host- to network byte order.
  147. func htons(i uint16) uint16 {
  148. return (i<<8)&0xff00 | i>>8
  149. }