My question is about the use of GUID's.
Consider this example:
http://www.example.com/item.aspx?itemid=1
http://www.example.com/item.aspx?itemid=2
http://www.example.com/item.aspx?itemid=3
Using this design it's easy for someone to use a scraper to iterate through all the int itemid's and collect the data.
If we instead did this:
http://www.example.com/item.aspx?itemid=ab3f103a-a1cf-e311-9380-12d0d8a96a66
http://www.example.com/item.aspx?itemid=ab3f003a-a1cf-e311-9380-1240d8a96a66
http://www.example.com/item.aspx?itemid=ab3f003a-a1cf-e311-9380-12d0d8a56a66
Would that be any more secure from scrapers?
I guess the question is if a guid is sufficiently complex to make bruteforce iteration not worth it?
Thanks