├── .gitignore ├── LICENSE ├── README.md ├── cmd ├── root.go └── scan.go ├── main.go └── payloads.txt /.gitignore: -------------------------------------------------------------------------------- 1 | domains.txt 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalhackingplayground/crlfmap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalhackingplayground/crlfmap/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalhackingplayground/crlfmap/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalhackingplayground/crlfmap/HEAD/cmd/scan.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalhackingplayground/crlfmap/HEAD/main.go -------------------------------------------------------------------------------- /payloads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalhackingplayground/crlfmap/HEAD/payloads.txt --------------------------------------------------------------------------------