I'm building a website using Laravel and I'm just thinking about security.
I would like to know if there is a way for attacker to detect all active web routes for a website ?
For example:
http://example.com/login
http://example.com/products
http://example.com/products/{id}/items
etc...
So, what techniques will attacker use to detect this routes ?
Will he check the website page source and search for links or will he somehow try to detect those links without looking at page source code (brute-force for example).
To be honest, I'm asking because I'm not sure if should put the link to the Content Manager to my homepage or not...