├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── library ├── .DS_Store ├── connection │ ├── .DS_Store │ ├── connect.go │ ├── message.go │ └── server.go ├── console │ ├── .DS_Store │ └── terminal.go ├── error.go ├── log │ └── log.go └── parameters │ ├── functions.go │ ├── structs.go │ └── variables.go ├── main.go └── modules ├── Module_Anonymous_FTP_Scanner.go ├── Module_Distributed_Nmap.go ├── Module_HTTP_Brute_Force.go ├── Module_OTP_Bypass.go ├── distributed_nmap_2.txt ├── distributed_nmap_3.txt ├── load_modules.go ├── udp_distributed_nmap_1.txt ├── udp_distributed_nmap_2.txt ├── udp_distributed_nmap_3_with100nodes.txt └── udp_distributed_nmap_3_with500nodes.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/go.sum -------------------------------------------------------------------------------- /library/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/.DS_Store -------------------------------------------------------------------------------- /library/connection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/connection/.DS_Store -------------------------------------------------------------------------------- /library/connection/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/connection/connect.go -------------------------------------------------------------------------------- /library/connection/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/connection/message.go -------------------------------------------------------------------------------- /library/connection/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/connection/server.go -------------------------------------------------------------------------------- /library/console/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/console/.DS_Store -------------------------------------------------------------------------------- /library/console/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/console/terminal.go -------------------------------------------------------------------------------- /library/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/error.go -------------------------------------------------------------------------------- /library/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/log/log.go -------------------------------------------------------------------------------- /library/parameters/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/parameters/functions.go -------------------------------------------------------------------------------- /library/parameters/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/parameters/structs.go -------------------------------------------------------------------------------- /library/parameters/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/library/parameters/variables.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/main.go -------------------------------------------------------------------------------- /modules/Module_Anonymous_FTP_Scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/Module_Anonymous_FTP_Scanner.go -------------------------------------------------------------------------------- /modules/Module_Distributed_Nmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/Module_Distributed_Nmap.go -------------------------------------------------------------------------------- /modules/Module_HTTP_Brute_Force.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/Module_HTTP_Brute_Force.go -------------------------------------------------------------------------------- /modules/Module_OTP_Bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/Module_OTP_Bypass.go -------------------------------------------------------------------------------- /modules/distributed_nmap_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/distributed_nmap_2.txt -------------------------------------------------------------------------------- /modules/distributed_nmap_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/distributed_nmap_3.txt -------------------------------------------------------------------------------- /modules/load_modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/load_modules.go -------------------------------------------------------------------------------- /modules/udp_distributed_nmap_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/udp_distributed_nmap_1.txt -------------------------------------------------------------------------------- /modules/udp_distributed_nmap_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/udp_distributed_nmap_2.txt -------------------------------------------------------------------------------- /modules/udp_distributed_nmap_3_with100nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/udp_distributed_nmap_3_with100nodes.txt -------------------------------------------------------------------------------- /modules/udp_distributed_nmap_3_with500nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribRuted/framework/HEAD/modules/udp_distributed_nmap_3_with500nodes.txt --------------------------------------------------------------------------------