├── README.md ├── assets ├── Process.png └── Snipaste_2022-01-23_18-16-48.png ├── bin ├── darwin │ └── ehole ├── lin │ └── ehole └── win │ └── ehole.exe ├── common └── value.go ├── finger.json ├── go.mod ├── go.sum ├── lib ├── banner.go ├── config.go └── database.go ├── middlewares └── cors.go ├── model ├── db │ ├── probe.go │ └── probetmp.go └── response │ ├── data.go │ ├── job.go │ ├── opt.go │ ├── probe.go │ └── search.go ├── pkg └── logger │ ├── level.go │ └── logger.go ├── routes ├── api │ └── v1 │ │ ├── data │ │ ├── add.go │ │ ├── del.go │ │ └── tmp │ │ │ ├── add.go │ │ │ └── del.go │ │ ├── job │ │ ├── add.go │ │ ├── del.go │ │ └── stop.go │ │ ├── search │ │ ├── single.go │ │ └── tmp │ │ │ └── search.go │ │ └── test │ │ └── test.go └── routes.go ├── service ├── aysncprobe.go ├── datas │ ├── remove.go │ └── save.go ├── finger │ └── fingerscan.go ├── jobs │ └── jobs.go ├── mas │ └── masscan.go ├── nma │ ├── aysnc.go │ └── nmap.go ├── node.go └── probe.go ├── taio.go └── utils ├── crypto └── base64.go ├── parse └── ip.go └── request ├── get.go └── post.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/README.md -------------------------------------------------------------------------------- /assets/Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/assets/Process.png -------------------------------------------------------------------------------- /assets/Snipaste_2022-01-23_18-16-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/assets/Snipaste_2022-01-23_18-16-48.png -------------------------------------------------------------------------------- /bin/darwin/ehole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/bin/darwin/ehole -------------------------------------------------------------------------------- /bin/lin/ehole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/bin/lin/ehole -------------------------------------------------------------------------------- /bin/win/ehole.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/bin/win/ehole.exe -------------------------------------------------------------------------------- /common/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/common/value.go -------------------------------------------------------------------------------- /finger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/finger.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/go.sum -------------------------------------------------------------------------------- /lib/banner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/lib/banner.go -------------------------------------------------------------------------------- /lib/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/lib/config.go -------------------------------------------------------------------------------- /lib/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/lib/database.go -------------------------------------------------------------------------------- /middlewares/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/middlewares/cors.go -------------------------------------------------------------------------------- /model/db/probe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/model/db/probe.go -------------------------------------------------------------------------------- /model/db/probetmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/model/db/probetmp.go -------------------------------------------------------------------------------- /model/response/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/model/response/data.go -------------------------------------------------------------------------------- /model/response/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/model/response/job.go -------------------------------------------------------------------------------- /model/response/opt.go: -------------------------------------------------------------------------------- 1 | package response 2 | 3 | type OptR struct { 4 | Code int 5 | Msg string 6 | } 7 | -------------------------------------------------------------------------------- /model/response/probe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/model/response/probe.go -------------------------------------------------------------------------------- /model/response/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/model/response/search.go -------------------------------------------------------------------------------- /pkg/logger/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/pkg/logger/level.go -------------------------------------------------------------------------------- /pkg/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/pkg/logger/logger.go -------------------------------------------------------------------------------- /routes/api/v1/data/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/api/v1/data/add.go -------------------------------------------------------------------------------- /routes/api/v1/data/del.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/api/v1/data/del.go -------------------------------------------------------------------------------- /routes/api/v1/data/tmp/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/api/v1/data/tmp/add.go -------------------------------------------------------------------------------- /routes/api/v1/data/tmp/del.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/api/v1/data/tmp/del.go -------------------------------------------------------------------------------- /routes/api/v1/job/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/api/v1/job/add.go -------------------------------------------------------------------------------- /routes/api/v1/job/del.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/api/v1/job/del.go -------------------------------------------------------------------------------- /routes/api/v1/job/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/api/v1/job/stop.go -------------------------------------------------------------------------------- /routes/api/v1/search/single.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/api/v1/search/single.go -------------------------------------------------------------------------------- /routes/api/v1/search/tmp/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/api/v1/search/tmp/search.go -------------------------------------------------------------------------------- /routes/api/v1/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/api/v1/test/test.go -------------------------------------------------------------------------------- /routes/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/routes/routes.go -------------------------------------------------------------------------------- /service/aysncprobe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/service/aysncprobe.go -------------------------------------------------------------------------------- /service/datas/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/service/datas/remove.go -------------------------------------------------------------------------------- /service/datas/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/service/datas/save.go -------------------------------------------------------------------------------- /service/finger/fingerscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/service/finger/fingerscan.go -------------------------------------------------------------------------------- /service/jobs/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/service/jobs/jobs.go -------------------------------------------------------------------------------- /service/mas/masscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/service/mas/masscan.go -------------------------------------------------------------------------------- /service/nma/aysnc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/service/nma/aysnc.go -------------------------------------------------------------------------------- /service/nma/nmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/service/nma/nmap.go -------------------------------------------------------------------------------- /service/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/service/node.go -------------------------------------------------------------------------------- /service/probe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/service/probe.go -------------------------------------------------------------------------------- /taio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/taio.go -------------------------------------------------------------------------------- /utils/crypto/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/utils/crypto/base64.go -------------------------------------------------------------------------------- /utils/parse/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/utils/parse/ip.go -------------------------------------------------------------------------------- /utils/request/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/utils/request/get.go -------------------------------------------------------------------------------- /utils/request/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binganao/TaiO/HEAD/utils/request/post.go --------------------------------------------------------------------------------