Tagged Questions

18
votes
2answers
527 views

asp.net viewstate encryption issue

I am attempting to turn on viewstate encryption Always as a security measure for my ASP.NET 3.5 website hosted in IIS6. We have viewstate turned off but still see some "controlstate" in this string. ...
6
votes
3answers
4k views

Uses for MachineKey in ASP.NET

What different ways are Machine Keys useful in asp.net? I think the following are correct but thought there may be more. Multiple applications can use the same cookie Multiple servers can work with ...
5
votes
3answers
1k views

Getting the current ASP.NET machine key

I find myself wanting to get the ASP.NET machine key for the current application. This is, of course, easy if a machine key is specified in the configuration file, but if it's set to auto generate ...
3
votes
1answer
39 views

Setting validationKey at server vs. site vs. app level

Our production environment has three load-balanced servers. On each server, there are nine sites in IIS. In each site, there are between 1 and 15 different apps. To maintain proper ...
3
votes
1answer
2k views

ASP.NET machineKey config section default location

Where do I find the machineKey config section for ASP.NET? I don't have one in my application Web.config, there isn't one in the root Web.config and there isn't one in my machine.config. Does this ...
3
votes
2answers
578 views

Hashing no longer works in .Net 4.0 despite MSDN workarounds

I have an existing app in production that uses SqlMembershipProvider and has a specified machine key: <machineKey validationKey="..." decryptionKey="..." validation="SHA1" ...
3
votes
3answers
406 views

ASP.NET Server Migration

We have a long-lived ASP.NET 3.5 application we are moving from a physical server running Windows 2005+IIS 6 to a virtual one running Windows 2008+IIS7. The new machine will assume the identify of the ...
2
votes
1answer
71 views

Where is machineKey/validationKey used in FormsAuthentication?

MSDN : machineKey Configures algorithms and keys to use for encryption, decryption, and validation of forms-authentication data and view-state data, and for out-of-process session state ...
2
votes
1answer
244 views

Automatic machine key generation in ASP.NET

By default, the machine key setting is auto generate and per application (AutoGenerate,IsolateApps). MSDN states that the decryption key and validation key is based on web application id. I am hosting ...
2
votes
1answer
609 views

How does WebResources.axd or ScriptResources.axd actually work?

Where can I learn how WebResources.axd or ScriptResources.axd actually works? What is the string that is appended to the .axd? Does this string change, or is it constant? Is it page, session ...
2
votes
1answer
1k views

How to find a server's machinekey if it wasn't set

Trying to transfer servers but a connection string is encrypted and there is no machinekey set in the web.config. Is there anyway to find out what the machinekey was on the old server so we can set ...
1
vote
1answer
149 views

Get “Padding is Invalid and cannot be removed” in ASP.NET

I'm seeing this error a lot in my log lately on my prod. I've searched over the net on this error. I saw some notes like this, this or this. The bottom line on all of them is that I should set ...
1
vote
2answers
1k views

Adding machineKey to web.config on web-farm sites

We (out IT partner really) recently changed some DNS for a web farmed site we have so that the two production server have round-robin DNS switching between the two. Prior to this switch we didn't ...
1
vote
1answer
581 views

“Unable to validate data” HttpException from my .net 2.0 application

I am getting this exception from my ASP .net application running in a webfarm. Exception Type: System.Web.HttpException Exception Message: Unable to validate data. ---- Stack Trace ---- ...
0
votes
1answer
21 views

<machinekey> in web.config and machine.config

If the machine.config file does not define any section, nor does any web.config file, does it default to AutoGenerate option? Thanks Vikas
0
votes
0answers
73 views

Unable to validate data---Machine key

I got an error. An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the ...
0
votes
1answer
38 views

Asp.Net MachineKey Generator

anyone got better tools than http://aspnetresources.com/tools/machineKey which generates machine key not using SHA1 or better. Thanks.
0
votes
0answers
37 views

Where to store the encryption key?

I am willing to create a page that will aloow me encrypt\decrypt my connection strings. So this is what I made: <asp:ListView ID="lstConnectionStrings" runat="server"> ...
0
votes
1answer
249 views

Simple password protection on a page in ASP.NET MVC

I wish to secure individual (dynamic) pages in an ASP.NET MVC application. I do not want to use a full blown authentication system - we are already using forms authentication for the administrators ...
0
votes
0answers
252 views

persistence in .net forms authentication, doesn't work when machine key resents

Persistence doesn't work in my web application on one server while it does on another. On the server that it doesn't work on (a shared hosting environment), the persistence is lost anytime the app ...
0
votes
1answer
359 views

About Security of machinekey

We have a scenario using asp.net Forms Authentication in a web farm and need to setup identical <machinekey /> sections on each servers .config file. Is it better to store the <machinekey ...
0
votes
1answer
264 views

How to set the machine key to be the same for 2 web applications?

I have 2 web applications where I have to set the machine key to be the same in the web.config. Where do I get the machine key from?
0
votes
2answers
1k views

ASP.Net 3.5 SP1 Machine Key decryption algorithm auto

I am having some trouble understanding the documentation on machinekey. What algorithm is being used to encrypt/decrypt the forms authentication ticket when the decryption attribute is not set. I ...