├── GoRmi.go ├── LICENSE ├── README.md ├── cli └── main.go ├── gadgets ├── CC1.go ├── CC2.go ├── CC3.go ├── CC4.go ├── CC5.go ├── CC6.go ├── CC7.go ├── URLDNS.go └── base.go ├── go.mod ├── img └── image-20211230010433011.png └── utils ├── log.go └── utils.go /GoRmi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/GoRmi.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/README.md -------------------------------------------------------------------------------- /cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/cli/main.go -------------------------------------------------------------------------------- /gadgets/CC1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/gadgets/CC1.go -------------------------------------------------------------------------------- /gadgets/CC2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/gadgets/CC2.go -------------------------------------------------------------------------------- /gadgets/CC3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/gadgets/CC3.go -------------------------------------------------------------------------------- /gadgets/CC4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/gadgets/CC4.go -------------------------------------------------------------------------------- /gadgets/CC5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/gadgets/CC5.go -------------------------------------------------------------------------------- /gadgets/CC6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/gadgets/CC6.go -------------------------------------------------------------------------------- /gadgets/CC7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/gadgets/CC7.go -------------------------------------------------------------------------------- /gadgets/URLDNS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/gadgets/URLDNS.go -------------------------------------------------------------------------------- /gadgets/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/gadgets/base.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module GoRmi 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /img/image-20211230010433011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/img/image-20211230010433011.png -------------------------------------------------------------------------------- /utils/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/utils/log.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebasky/GoRmi/HEAD/utils/utils.go --------------------------------------------------------------------------------