Add a new configuration option to the `data.json` file to support bypassing WAF by disabling SSL certificate verification in specific targets. By setting `verifyCert` to `False`, the `requests` library will send requests with `verify=False`, ignoring SSL certificate verification.
### Description This feature request proposes adding a new configuration option to the `data.json` file to support bypassing WAF by disabling SSL certificate verification in specific targets. By setting `verifyCert` to `False`, the `requests` library will send requests with `verify=False`, ignoring SSL certificate verification. This can enable testing against real IPs or AWS endpoints, effectively bypassing services like Cloudflare WAF. I would like to make a **Pull Request** to implement this feature if the approach is acceptable. ### Implementation Details 1. **Configuration**: - A new setting `verifyCert` has been added to the `data.json` file. - When set to `False`, requests will include `verify=False` to ignore SSL certificate verification. 2. **Functionality**: - This feature allows requests to target real IPs or AWS endpoints without SSL verification. - It is especially useful for testing scenarios where SSL verification is unnecessary or problematic. ###