Whitelist these IPs on your firewall/WAF to allow DevSecOps Platform scans against your protected targets.
142.44.246.217ActiveOWASP ZAP, Nmap, Nikto, testssl.sh, Nuclei
To scan targets protected by a firewall, WAF, or cloud security group, you need to allow inbound traffic from our scanner IP. Here are instructions for common setups.
aws ec2 authorize-security-group-ingress \ --group-id sg-xxxxxxxx \ --protocol tcp \ --port 443 \ --cidr 142.44.246.217/32
Replace sg-xxxxxxxx with your security group ID.
142.44.246.217# Allow DevSecOps Platform scanner
location / {
allow 142.44.246.217;
# ... your existing deny rules
}sudo ufw allow from 142.44.246.217 to any port 443 sudo ufw allow from 142.44.246.217 to any port 80
sudo iptables -A INPUT -s 142.44.246.217 -j ACCEPT
dig scanner.harshal.cloud before whitelisting.If you're having trouble whitelisting or your scans are still failing, email support@harshal.cloud with your target URL and firewall details.