├── .gitignore ├── .idea ├── GScan.iml ├── misc.xml ├── modules.xml ├── vcs.xml ├── watcherTasks.xml └── workspace.xml ├── Misc ├── allparams.go ├── check.go ├── infoprint.go └── save.go ├── Parse ├── PareseConfig.go ├── ParseFile.go ├── ParseIP.go ├── ParseParam.go ├── ParsePort.go └── ParseUrl.go ├── Plugins ├── apacheauth.go ├── config.go ├── ftp.go ├── icmp.go ├── memcached.go ├── mgo.go ├── mssql.go ├── mysql.go ├── portscan.go ├── postgresql.go ├── redis.go ├── scanner.go ├── smb.go ├── ssh.go ├── subdomain.go └── urlscan.go ├── README.md ├── config ├── auth.ini ├── icmp.ini ├── mysql.ini ├── portscan.ini ├── subdomain.ini └── url.ini ├── dict ├── dicc.txt └── sub.txt ├── img ├── apache_auth.png ├── ftp_test.png ├── icmp_test.png ├── mem_test.png ├── mongodb_test.png ├── mssql_test.png ├── mysql_test.png ├── portscan_test.png ├── postgresql_test.png ├── redis_test.png ├── smb_test.png ├── ssh_test.png ├── sub_test.png └── url_test.png └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.zip -------------------------------------------------------------------------------- /.idea/GScan.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | 28 | 29 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 41 | 42 | 48 | 49 | 50 | 51 | 53 | 54 | 55 | 56 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 |