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

  1. #1

    Default Application Object

    How easy is it for a hacker to access data stored in the Application Object in IIS server. I want to store a decrpyted connection string there rather that decrypting it everytime I access the database. Currently I use dpapi on a encryption key stored in the registry the use the encrytion key to decrypt the connection string. Using windows authentication is not an option since the iis server is in the dmz

    Thanks
    Mike Guest

  2. Similar Questions and Discussions

    1. Object in application state
      If have an object with a variable i stored in the application state in the asp.net application. Is there a way to force this object in the...
    2. When to lock application object
      I know you should lock and unlock an application vaiable when updating it but should you also lock it prior to reading the value from it? My...
    3. Locking Application object
      if I lock the Application object and modify it will an exception be thrown when another request tries to access it while it is locked. I am...
    4. Application object lifetime
      Hi, how can I control the Application's life time in a service like: public class MyService : System.Web.Services.WebService { public int...
    5. Access to Application object from exe
      Hi, I have many virtual directory with my web app. I'd like to create one exe appliaction to administrating these web apps. Is it possible to...
  3. #2

    Default Re: Application Object

    When you say "Application Object" I assume that you mean Global Asax. I
    think Global Asax is safe to store sensitive data while your user surfing
    your site. Unless there is an insider help to plant a code inside your box
    to monitor and snatch the data, I donot think how hackers can do this from
    outside.

    John

    "Mike" <anonymous@discussions.microsoft.com> wrote in message
    news:CA709069-8683-4F14-BC0B-A139911129A2@microsoft.com...
    > How easy is it for a hacker to access data stored in the Application
    Object in IIS server. I want to store a decrpyted connection string there
    rather that decrypting it everytime I access the database. Currently I use
    dpapi on a encryption key stored in the registry the use the encrytion key
    to decrypt the connection string. Using windows authentication is not an
    option since the iis server is in the dmz.
    >
    > Thanks

    WJ Guest

  4. #3

    Default Re: Application Object

    Hi, John thanks for replying, what I mean by application object is the "Application" collection stored in the memory of the iis server

    From MSDN

    Platform SDK: Internet Information Services

    Application Objec

    You can use the Application object to share information among all users of a given application. An ASP-based application is defined as all the .asp files in a virtual directory and its subdirectories. Because the Application object can be shared by more than one user, there are Lock and Unlock methods to ensure that multiple users do not try to alter a property simultaneously


    Mike 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