Tagged Questions

3
votes
6answers
1k views

Preventing directory traversal with web-facing application - are regular expressions bullet-proof?

I am in a situation where I need to allow a user to download a file dynamically determined from the URL. Before the download begins, I need to do some authentication, so the download has to run ...
2
votes
4answers
224 views

GNU find: Search in current directory first

how can I tell find to look in the current folder first and then continue search in subfolders? I have the following: $ find . -iname '.note' folder/1/.note folder/2/.note folder/3/.note folder/.note ...