Skip to main content
February 14, 2009
Answered

securing cf administrator from internet access

  • February 14, 2009
  • 4 replies
  • 969 views
How do you prevent the CF admin console from being accessed from the internet?
    This topic has been closed for replies.
    Correct answer Newsgroup_User
    dspent wrote:
    > How do you prevent the CF admin console from being accessed from the internet?

    Move the CFIDE directory to a separate virtual host that can be locked
    down (accessible only from certain IP's for example). If you're using
    CFFORM, CFDIV, etc copy the scripts directory from CFIDE to your sites
    (or make an alias to the scripts directory in your sites).

    --
    Mack

    4 replies

    February 26, 2009
    Putting this in incase someone searches on it...

    There is a caveat to this method. If you're running CF Enterprise in multi server mode, removing the CFIDE virtual mapping from IIS won't stop someone from getting to /cfide/administrator. CF still picks up the mapping and will serve the admin pages.

    I've found writing a rule in ISAPI_ReWrite a good solution in this instance.

    Also, setting NTFS privs on said administrator (and adminapi) will add an additional layer of security to the whole thing.
    Inspiring
    February 20, 2009
    Sorry posted in the wrong thread.
    February 19, 2009
    Thanks... using this info I simply had to deny all access to the CFIDE directory using the web server and permit only the local host address access.
    Newsgroup_UserCorrect answer
    Inspiring
    February 14, 2009
    dspent wrote:
    > How do you prevent the CF admin console from being accessed from the internet?

    Move the CFIDE directory to a separate virtual host that can be locked
    down (accessible only from certain IP's for example). If you're using
    CFFORM, CFDIV, etc copy the scripts directory from CFIDE to your sites
    (or make an alias to the scripts directory in your sites).

    --
    Mack