scanner.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. "context"
  23. "fmt"
  24. "log"
  25. "net"
  26. "strings"
  27. "sync"
  28. "syscall"
  29. "time"
  30. )
  31. /*
  32. Need to work with with a database schema in mind, and revolve functionality around that
  33. */
  34. type Host struct {
  35. Fqdn string // The FQDN of the address targeted as per the systems default resolver
  36. IpAddress string // the IPv4 address (no ipv6 support yet)
  37. PingResponse bool // boolean value representing if the host responded to ICMP
  38. ListeningPorts []int // list of maps depicting a port number -> service name
  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. conn.Close()
  85. return port
  86. //return PortScanResult{PortNumber: port, Protocol: "tcp", Listening: true}
  87. }
  88. /*
  89. Perform a port scan sweep across an entire subnet
  90. :param ip: the IPv4 address WITH CIDR notation
  91. :param portmap: the mapping of ports to scan with (port number mapped to protocol name)
  92. */
  93. func NetSweep(ips []net.IP, ports []int, scanned chan Host) {
  94. wg := &sync.WaitGroup{}
  95. killswitch, cancel := context.WithDeadline(context.Background(), time.Now().Add(18*time.Second))
  96. defer cancel()
  97. for i := range ips {
  98. wg.Add(1)
  99. go func(target string, portnum []int, wgrp *sync.WaitGroup, output chan Host) {
  100. select {
  101. case <-killswitch.Done():
  102. fmt.Println("UNTO DEATH :::: WHILE THE SUN BEAMS DOWN")
  103. return
  104. default:
  105. defer wgrp.Done()
  106. portscanned := PortWalk(target, portnum)
  107. output <- Host{
  108. Fqdn: getFqdn(target),
  109. IpAddress: target,
  110. ListeningPorts: portscanned,
  111. PortString: strings.Trim(strings.Join(strings.Fields(fmt.Sprint(portscanned)), ","), "[]"),
  112. }
  113. }
  114. }(ips[i].String(), ports, wg, scanned)
  115. }
  116. wg.Wait()
  117. close(scanned)
  118. }
  119. func getFqdn(ip string) string {
  120. names, err := net.LookupAddr(ip)
  121. if err != nil {
  122. return "not found with default resolver"
  123. }
  124. return strings.Join(names, ", ")
  125. }
  126. /*
  127. Create a new TCP dialer to share in a goroutine
  128. */
  129. func NewDialer() net.Dialer {
  130. return net.Dialer{}
  131. }
  132. /*
  133. Create a new low level networking interface socket
  134. :param intf: the name of the interface to bind the socket to
  135. */
  136. func NewTCPSock(interfaceName string) *syscall.SockaddrLinklayer {
  137. sock, err := syscall.Socket(syscall.AF_PACKET, syscall.SOCK_RAW, syscall.ETH_P_IP)
  138. if err != nil {
  139. log.Fatal(err, " Could not create raw AF_PACKET socket.\n")
  140. }
  141. defer syscall.Close(sock)
  142. intf, err := net.InterfaceByName(interfaceName)
  143. if err != nil {
  144. log.Fatal(err, " Couldnt locate that interface. Are you sure you mean to pass ", interfaceName, " ?")
  145. }
  146. return &syscall.SockaddrLinklayer{
  147. Protocol: htons(syscall.ETH_P_IP),
  148. Ifindex: intf.Index,
  149. }
  150. }
  151. // htons converts a uint16 from host- to network byte order.
  152. func htons(i uint16) uint16 {
  153. return (i<<8)&0xff00 | i>>8
  154. }