mirror of
https://github.com/projectdiscovery/httpx
synced 2026-06-08 16:50:17 +00:00
daf4ad6c5a
* Fixing all ips probe with standard ports * using custom type for targets
9 lines
151 B
Go
9 lines
151 B
Go
package httpx
|
|
|
|
// Target of the scan with ip|host header customization
|
|
type Target struct {
|
|
Host string
|
|
CustomHost string
|
|
CustomIP string
|
|
}
|