FTP,Limiting,Access,Folder,The computer FTP Limiting Access on Folder
----------------------------------------------------------Permission is granted for the below article to forward,reprint, distribute, use for ezine, newsletter, website,offer as free bonus or part of a product for sale as longas no changes a Gone are those times when the companies and the organisations didn't need a hi-tech system to handle them. Owing to the considerable increase in the business sector and thus, an enormous increase in the complexity of the organisational struc
The file is:www.somepage. com/ftp/import/ which is named someData.txtWhy is it that you can access this file by hitting:www.somepage. com/ftp/import/someData.txt If the file is just lying there, why make an FTP user with login/password to access it. If you check the file restrictions, public has read/write/execute/sticky.You probably need to change the permissions on that file or the folder it is in to 770 which will prevent anyone except the user and group from viewing, writing or executing commands on it. It sounds like the permissions are currently set to 777 which allows anyone to do anything. You can set access restrictions through command line/terminal with chmod.Try using chmod to change the permissions on your files/folders on the server through command line/terminal. It seems like your permissions are currently set to 777 which allows anyone to do anything.7 allow user to read/write/execute7 allow group to read/write/execute7 allow world to read/write/executeYou would probably want to use something like 770 which will prevent anyone except the user and groups doing anything to the files and folders. These permissions are pretty important for security as you could be the victim of an attack if they aren't set properly.
FTP,Limiting,Access,Folder,The