We have a B2C application. We have some URL's that are not secure and some scripts are continuously hitting that URL's.
Precondition:
- We don't want to implement security on that URL's.
- We don't want to use Captcha
I have a Public url easily accessible to all users, behind the scene that url is accessing some service. Now i am getting unexpected users on my public url that are using my services for their personal sake. I don't want to add security on my services. I want to restrict those user's on the basis of IP address or some other mechanism. That's easy to block static IP's but i am not sure how to restrict dynamic IP's. Please help.