securing data access via website

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default securing data access via website

    I would like to use anonymous access for a public access, Win2k/IIS website.

    The database, however, should be accessed via a secured, strong-password
    domain user account "company\ouraspnetuser". This database is on another
    physical Windows 2k server. I've looked into UDL, DPAPI, and sync'd local
    ASPNET account passwords and am not terribly convinced of any of them. I'm
    not using OLEDB so I can't use UDL. For bureaucratic reasons I can't use
    sync'd ASPNET accounts on all the network resources my application needs to
    access. DPAPI seems to be the way to go, but it seems outlandishly
    complicated to implement--unless of course I haven't found a good reference.

    Could someone point me in the right direction and/or comment on another
    possible solution?


    _____
    DC G


    DC Gringo Guest

  2. Similar Questions and Discussions

    1. Securing Data for Use by Flash
      I'd like to built a Flash SWF file that represents data stored on my server graphically. The images would show the data generally without showing...
    2. Securing a folder's access
      I'd like to limit access to a folder with pages in it that perform modifications to a database. I only want these pages accessible by a few people....
    3. Securing a php website
      I'm writing a php website. Which type of atacks are usually used against php scripts? Which kind of sent string could result in an intrusion in a...
    4. Data in Access database changed when display in website
      Hi Everyone, I am trying to figure why the data of an Access database changed when displayed in a web-based administrative tool. The column data...
    5. securing data in asp.net
      Hi everyone, I am new to asp.net development, and need help on security, I am developing a web application that would be accessed from the...
  3. #2

    Default Re: securing data access via website

    You could try putting a data access component into COM+ (as a serviced
    component), define the identity of the package/component as your preferred
    username/strong password, so that the COM+ component runs under the defined
    strong identity and access the DB that way via integrated security, and your
    app would simply interface with that component.

    HTH

    --
    - Paul Glavich


    "DC Gringo" <dcgringo@visiontechnology.net> wrote in message
    news:eI1mZbL1DHA.2060@TK2MSFTNGP10.phx.gbl...
    > I would like to use anonymous access for a public access, Win2k/IIS
    website.
    >
    > The database, however, should be accessed via a secured, strong-password
    > domain user account "company\ouraspnetuser". This database is on another
    > physical Windows 2k server. I've looked into UDL, DPAPI, and sync'd local
    > ASPNET account passwords and am not terribly convinced of any of them.
    I'm
    > not using OLEDB so I can't use UDL. For bureaucratic reasons I can't use
    > sync'd ASPNET accounts on all the network resources my application needs
    to
    > access. DPAPI seems to be the way to go, but it seems outlandishly
    > complicated to implement--unless of course I haven't found a good
    reference.
    >
    > Could someone point me in the right direction and/or comment on another
    > possible solution?
    >
    >
    > _____
    > DC G
    >
    >

    Paul Glavich Guest

  4. #3

    Default Re: securing data access via website

    Got any good references on that?

    _____
    DC G

    "Paul Glavich" <glav@aspalliance.com-NOSPAM> wrote in message
    news:evkCR7Q1DHA.3224@tk2msftngp13.phx.gbl...
    > You could try putting a data access component into COM+ (as a serviced
    > component), define the identity of the package/component as your preferred
    > username/strong password, so that the COM+ component runs under the
    defined
    > strong identity and access the DB that way via integrated security, and
    your
    > app would simply interface with that component.
    >
    > HTH
    >
    > --
    > - Paul Glavich
    >
    >
    > "DC Gringo" <dcgringo@visiontechnology.net> wrote in message
    > news:eI1mZbL1DHA.2060@TK2MSFTNGP10.phx.gbl...
    > > I would like to use anonymous access for a public access, Win2k/IIS
    > website.
    > >
    > > The database, however, should be accessed via a secured, strong-password
    > > domain user account "company\ouraspnetuser". This database is on
    another
    > > physical Windows 2k server. I've looked into UDL, DPAPI, and sync'd
    local
    > > ASPNET account passwords and am not terribly convinced of any of them.
    > I'm
    > > not using OLEDB so I can't use UDL. For bureaucratic reasons I can't
    use
    > > sync'd ASPNET accounts on all the network resources my application needs
    > to
    > > access. DPAPI seems to be the way to go, but it seems outlandishly
    > > complicated to implement--unless of course I haven't found a good
    > reference.
    > >
    > > Could someone point me in the right direction and/or comment on another
    > > possible solution?
    > >
    > >
    > > _____
    > > DC G
    > >
    > >
    >
    >

    DC Gringo Guest

  5. #4

    Default Re: securing data access via website

    DC,

    Check out this article: "Protect It: Safeguard Database Connection Strings
    and Other Sensitive Settings in Your Code" article
    ([url]http://msdn.microsoft.com/msdnmag/issues/03/11/ProtectYourData/[/url]). It
    addresses some of your questions and has relevant references.

    Alek

    "DC Gringo" <dcgringo@visiontechnology.net> wrote in message
    news:eI1mZbL1DHA.2060@TK2MSFTNGP10.phx.gbl...
    > I would like to use anonymous access for a public access, Win2k/IIS
    website.
    >
    > The database, however, should be accessed via a secured, strong-password
    > domain user account "company\ouraspnetuser". This database is on another
    > physical Windows 2k server. I've looked into UDL, DPAPI, and sync'd local
    > ASPNET account passwords and am not terribly convinced of any of them.
    I'm
    > not using OLEDB so I can't use UDL. For bureaucratic reasons I can't use
    > sync'd ASPNET accounts on all the network resources my application needs
    to
    > access. DPAPI seems to be the way to go, but it seems outlandishly
    > complicated to implement--unless of course I haven't found a good
    reference.
    >
    > Could someone point me in the right direction and/or comment on another
    > possible solution?
    >
    >
    > _____
    > DC G
    >
    >

    Alek Davis Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139