HI:
I'm try to use fiddler as reverse proxy ,and i Write a FiddlerScript Rule like this
if (oSession.host.toLowerCase() == "192.168.5.201:8889") oSession.host = "pubs.acs.org";
then i try access https://192.168.5.201:8889 , I get this:
i know this is because cloudflare detective it as a ddos attack.
Does it possible to solve this problem?
Another option is to modify your hosts file directly instead of using FiddlerScript to modify the requests - just use Tools -> HOSTS, then load the Windows Hosts file and add mapping of your ip and the host you need.
If none of the above works, there are various resources for similar errors in the CloudFlare community and suggestions how to fix them, for example:
- https://community.cloudflare.com/t/apps-this-web-property-is-not-accessible-via-this-address/244138/6
- https://community.cloudflare.com/t/this-web-property-is-not-accessible-via-this-address/274794/10
- https://community.cloudflare.com/t/the-web-property-not-accessible-via-this-address/412575/5
Thanks for reply!
Unfortunately,none of the above works. I will try other ways to slove my problem .