Securing your Windows Service installation

From FileZilla Wiki
Revision as of 02:18, 7 May 2009 by Eto (talk | contribs) (New page: == User accounts concepts == On Windows you can secure your box/environment in same manner as on *nix, by using user accounts (this applies only to NT family, so Win9x/WinME users are out...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

User accounts concepts

On Windows you can secure your box/environment in same manner as on *nix, by using user accounts (this applies only to NT family, so Win9x/WinME users are out of luck).

Although as classic Windows user, you may think that you are only sole user of the computer, it is not true. On the contrary, in fact your NT system is true multiuser operating system, just like any OS from *nix family. Every time your computer runs, there are several users logged in besides you. Majority (almost 90%) of the security issues (viruses, malware, spyware) you are experiencing during your daily computer use, are caused by the simple fact, that by default, your user account is configured to run in Administrator mode out of the box (that is equivalent running as root or superuser on *nix boxes). Such default is really stupid. Why is that, you may ask, that your system is open to anyone to tamper with? The only reason are broken Windows applications, really. Let's face it, most of the Windows programs has dubious quality, and the developers are not very bright. It's a lazy bunch, used to be able to write into the registry and all over your system, from the times of MS-DOS and Windows 95. What is worse, sometimes even own Microsoft employees from some of their divisions belong to these losers. Thus to avoid support calls, your system allows everything to everyone. Still, by setting up your daily account as Limited User Access account (LUA), you can usually avoid many security hassles. However thorough securing of your box is out of the scope of this article. Luckily, you can find plenty of information how to do so using google (just be prepared that many Windows programs are broken and if you use them, you may experience some issues, so called LUA Bugs). I encourage you strongly to do so.

Here is most basic outline:

  1. setup password for your Administrator account(*nix root equivalent) and store it written in secure location, in case of system wide upgrades or software installation.
  2. create new Limited User account for your daily work, or remove your current account from Administrators group, or use "Control Panel/Users/Limited User" option and protect it with password if necessary.

!!! Disclaimer !!! Misuse of permissions and not understanding concept security rights can have devastating effects and if you are not doing your homework, especially first time you can easily lock yourself out from the computer, so be careful!

Let's assume you have gained all the necessary knowledge, and you set up your Administrator with password and you do your daily work as Limited User (preferably with password too). You might not be aware of the fact that you can setup your FZS service to login as Limited User too. This minimizes the impact on your computer if your FTP server service is compromised. As was mentioned at beginning of this article at any time multiple special users are logged to your machine.

These are:

  • SYSTEM - nameless and passwordless local user in whose context most services and base OS processes run
  • NetworkService - nameless and passwordless user in whose context some of the network related services run

By default SYSTEM user is most privileged user on the machine. This is required for it, to be able to do its work. You cannot login as this user. It has access to any part of the computer. By default any system service, even your FZS service runs in the context of this user. NetworkService is less privileged to minimize impact of compromising network service. You could minimize FZS privileges by telling it to login as NetworkService, but even better is to create special, limited account just for FZS.

Configuration

Make sure you are logged in as Administrator.

Add filezilla user

  1. press «WINDOWS» + «;R«; "Run" dialog appears
  2. type in "lusrmgr.msc" and hit «ENTER»; "Local Users and Groups" MMC Console appears
  3. navigate to "Users" folder, right click to white space and select "New User" from popup menu; "New User" dialog appears.
  4. fill-in the dialog like this:
    • user name "filezilla"
    • type in password (this is required)
    • uncheck "User must change password at next logon",
    • check "Password never expires"
    • check "User cannot change password"
    • uncheck "Account is disabled"
  5. click "Create"; "filezilla" user is created
  6. right click "filezilla" user and select "Properties"; "Properties" dialog appears
  7. double check on the "Member Of" that only user group this account belongs to, is "Users"
  8. click "OK"; dialog closes
  9. close "Local Users and Groups" window

Change FileZilla Server Service logon

  1. press «WINDOWS» + «;R«; "Run" dialog appears
  2. type in "services.msc" and hit «ENTER»; "Services" MMC Console appears
  3. locate "FileZilla Server FTP server" service and double click; properties dialog appears
  4. click "Stop" to stop service if running
  5. switch to "Log On" tab and set following:
    • select "This account"
    • into the account field type in ".\filezilla"
    • type in both passwords defined in previous phase
  6. click "OK" but DO NOT START the service (as it will fail and will be unkillable)

Prepare permissions

  1. with Windows Explorer navigate to "FileZilla Server" installation directory
  2. locate "FileZilla Server.xml" file, service requires write permissions to this file
    • If you have "Simple File Sharing" enabled (no "Security" tab in file "Properties")
      1. clik "Tools" in Explorer menu, select "Folder options"; "Folder Options" dialog appears
      2. select "View" tab
      3. uncheck "Use simple file sharing (Recommended)"
      4. click OK
  3. right click "FileZilla Server.xml" select "Properties"; "Properties" dialog appears
  4. select "Security" tab, click "Add" button; "Select User or Group dialog" appears
  5. type "filezilla" into "Enter object names to select" textbox
  6. click "OK"; "filezilla" user is added to permissions list
  7. select "filezilla" user and check "Write" in "Allow" column
  8. click "OK"; permissions are now saved
  9. if you use logging, set "Write" access to "Logs" folder too
  10. if you upload to some folders set "Full Control" to each topmost writable folder you want to use, the changes are propagated to children
  11. if you use SSL, double check if both the SSL certificate file and private key file are readable by "Users" group or "filezilla" account, to not break the SSL connection
  12. if you want hide "Security" tab, enable "Simple File Sharing" back on
  13. switch to "Services" and start "FileZilla Server FTP server" service; it should run now in "filezilla" account context
  14. verify FTP and FTPS/FTPES connection and check uploading to writable directories
  15. congratulation you have secured your FZS server!