Does ASP.NET user security be increased

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

  1. #1

    Default Does ASP.NET user security be increased


    Hi,
    I am developing ASP.NET web applications that involves automating of office componets (like Word etc.) for which I need to read/write .doc files etc. But with the default prividges I encountered an error saying that the IU_ASPNET user's privedges do not allow the doc file to be opened !!!
    So for testing purpose only I increased the privedges of the IU_ASPNEt user to administrator, which in my view is very bad for security reasons, but I cant figure out how to set the minimal privedges to this user to make my application both secure and working

    Looking anxiously for answers and suggestions

    -Aayush
    Aayush Guest

  2. Similar Questions and Discussions

    1. File size increased enormously after conversion of Word doc to pdf
      I have a problem, when converting a word document (Word XP, os Windows XP) that is only 90Kb, it is turning out with a file size of 746Kb when...
    2. Increased file size with date in footer
      Hi - I'm using Acrobat 6.0 for converting Word 97 files to PDF. Once converted when I try to add "date" in header or footer to the PDF, the file size...
    3. Font size increased in dialogue boxes and pallets
      I installed InDesign, Illustrator and Photoshop CS recently on a new PC running XP Pro (1Gb ram). On a recent visit to Singapore I bought a new...
    4. User security features
      At work I have used NT and currently 2000. In both you could configure when and where a user could logon. At home I have XP Home Edition and...
  3. #2

    Default Re: Does ASP.NET user security be increased

    use the active user impersonation or you can choose a particular account to
    authenticate your local request on the server.

    if your actual authentication method is Windows, I recommend to impersonate.
    In this case the security used to access your local ressources on the server
    is the client security.

    look at the <impersonate> tag in your web.config file.

    "Aayush" <anonymous@discussions.microsoft.com> a écrit dans le message de
    news:07CB5AAA-FAFB-4663-B5C9-ABBFBDEBBECE@microsoft.com...
    >
    > Hi,
    > I am developing ASP.NET web applications that involves automating of
    office componets (like Word etc.) for which I need to read/write .doc files
    etc. But with the default prividges I encountered an error saying that the
    IU_ASPNET user's privedges do not allow the doc file to be opened !!!
    > So for testing purpose only I increased the privedges of the IU_ASPNEt
    user to administrator, which in my view is very bad for security reasons,
    but I cant figure out how to set the minimal privedges to this user to make
    my application both secure and working
    >
    > Looking anxiously for answers and suggestions
    >
    > -Aayush

    Jéjé 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