Brak opisu

AETH-erial 348e8759c8 added another testcase and license info to the cli tool 10 miesięcy temu
cmd 348e8759c8 added another testcase and license info to the cli tool 10 miesięcy temu
pkg 348e8759c8 added another testcase and license info to the cli tool 10 miesięcy temu
test d7bc9d87b4 got the recursive func working and added some test cases 10 miesięcy temu
.gitignore 4318634154 added some makefile targets 10 miesięcy temu
LICENSE f189011ab8 testing license formatting 10 miesięcy temu
Makefile 9b1f6a6a8b added license info to all the source files 10 miesięcy temu
README.md 5bb1c9a6df pushing this from local git to public mirror 1 rok temu
go.mod 44bdadc15a committing, code is unworking and mid refactor 10 miesięcy temu
go.sum 44bdadc15a committing, code is unworking and mid refactor 10 miesięcy temu

README.md

Working on a network observability tool. Architecting it as a peer-to-peer network, each node on the p2p network performs host scans on addresses within its own address space, and reports back to a central client that establishes itself as the broker for that round of scanning. Going to use this project as a way to explore network enumeration, distributed system resilience, and concurrent programming at large scale.

Since any node on the network can act as a C2/master/broker server, I want to disperse the scanning data via a torrent network between nodes, so that the speed of replication scales with the size of the network.

Im also attempting to solve the problem of scanning hosts on a large network with rotating IPs, so that when a network/host sweep is executed, the amount of time that a mapping of the network is accurate is extended. I'm attempting to combat this by:

  1. designing this is a scalable distributed system
  2. utilizing the strong concurrent features of Golang
  3. utilizing the torrent protocol to distribute data so that state changes can easily be reflected across nodes.