├── .github └── workflows │ └── go.yml ├── .gitignore ├── README.md ├── analyze ├── analyze_cert.go ├── analyze_cookies.go ├── analyze_dns.go ├── analyze_dom.go ├── analyze_headers.go ├── analyze_html.go ├── analyze_javascript.go ├── analyze_main.go ├── analyze_meta.go ├── analyze_script_src.go ├── analyze_url.go └── analyze_xhr_src.go ├── cmd └── root.go ├── go.mod ├── go.sum ├── lib └── lib.go ├── main.go ├── report └── report.go ├── structure └── structure.go ├── technologies └── technologies.go └── wrapper └── root.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | targets.txt 3 | test.go 4 | wappaGo.exe 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/README.md -------------------------------------------------------------------------------- /analyze/analyze_cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_cert.go -------------------------------------------------------------------------------- /analyze/analyze_cookies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_cookies.go -------------------------------------------------------------------------------- /analyze/analyze_dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_dns.go -------------------------------------------------------------------------------- /analyze/analyze_dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_dom.go -------------------------------------------------------------------------------- /analyze/analyze_headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_headers.go -------------------------------------------------------------------------------- /analyze/analyze_html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_html.go -------------------------------------------------------------------------------- /analyze/analyze_javascript.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_javascript.go -------------------------------------------------------------------------------- /analyze/analyze_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_main.go -------------------------------------------------------------------------------- /analyze/analyze_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_meta.go -------------------------------------------------------------------------------- /analyze/analyze_script_src.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_script_src.go -------------------------------------------------------------------------------- /analyze/analyze_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_url.go -------------------------------------------------------------------------------- /analyze/analyze_xhr_src.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/analyze/analyze_xhr_src.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/cmd/root.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/go.sum -------------------------------------------------------------------------------- /lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/lib/lib.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/main.go -------------------------------------------------------------------------------- /report/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/report/report.go -------------------------------------------------------------------------------- /structure/structure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/structure/structure.go -------------------------------------------------------------------------------- /technologies/technologies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/technologies/technologies.go -------------------------------------------------------------------------------- /wrapper/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRecon/wappaGo/HEAD/wrapper/root.go --------------------------------------------------------------------------------