There is a login form where you need to enter a login / password, it is at a specific address, for example / root / admin / index.
So, how to try to hide this path / encrypt / restrict by ip and so on.
There is a login form where you need to enter a login / password, it is at a specific address, for example / root / admin / index.
So, how to try to hide this path / encrypt / restrict by ip and so on.
Look at the route and find out what it consists of, and change the elements of which it consists. Most likely, it depends on the class and method of action, which means that we need to change their names.
1 option:
Deny access to the page by creating a rule on the firewall.
Option 2:
Deny access to the page via IIS. Use the "Ограничения IP адресов и доменов" feature.
For example, allow access to /root/admin/ only locally:
Source: https://ru.stackoverflow.com/questions/641313/
All Articles