Tagged Questions
The machinekey tag has no wiki summary.
18
votes
2answers
526 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
577 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
70 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
241 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
0answers
149 views
MVC2 Anti-ForgeryToken help
I have applied an antiforgerytoken to my POST actions within my app. When the session times out I am getting an "A required anti-forgery token was not supplied or was invalid" error. I have added a ...
2
votes
1answer
608 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
3answers
789 views
Migrating MachineKey from iis6 on old server to iis7 on new server
I am migrating our hosting environment to a totally new data center with new boxes and hardware and software... the whole deal.
Our website cookies are encrypted using the machineKey, so when I make ...
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
2answers
42 views
How to install DotNetNuke so I can migrate existing users?
I'm doing a fresh install of DNN 6.0.
I have an existing 4.x site with thousands of users, and my goal is to copy the users from the old database to the new one with some SQL queries. Of course the ...
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
1answer
980 views
Event code: 4005
something weird is happening! is a couple of days that my users are experincing a "logging out" isses, the error message is:
Event code: 4005
Event message: Forms authentication failed for the ...
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
0answers
55 views
The user name or password provided is incorrect. in MVC 3 Internet Application
I have a "Internet Application" - "A default ASP.NET MVC 3 project with an account controller that uses forms authentication." called MyMv3App. I run the site in IIS Express using Ctrl + F5 and then I ...
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
1answer
30 views
SHA1 or AES - which is better in asp.net?
which is better used in MachineKey for 3.5 framework in asp.net?
and what is the reason why?
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
36 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
56 views
encryption - machinekey
I'm trying to figure out a secure way of encrypting a couple of fields in my database using C# for my web app.
I need to find a script that does the encryption/decryption and a way of storing the ...
0
votes
1answer
142 views
Visual Studio SharePoint solution overwrites machineKey
Exactly what it says on the tin - any time I make a change in a SharePoint 2010 solution which results in web.config being updated by visual studio, it makes changes to the element
<machineKey ...
0
votes
1answer
128 views
AntiForgeryToken And MachineKey configuration
I am trying to deploy a .NET MVC application to GoDaddy servers. I have an Html.AntiForgeryToken on one of my pages that is causing it throw an exception every time I hit it.
Validation of viewstate ...
0
votes
1answer
155 views
Validation of viewstate MAC failed
Could someone please help me with this error. It usually occurs when the application is idle, or when session expires.
Thank you
HttpException (0x80004005): Validation of viewstate MAC failed. If ...
0
votes
1answer
89 views
Is this an Indexed Property, yea or nea?
I'm trying to get the current machineKey that is being used to encrypt/decrypt my ViewState, etc. in an attempt to debug another issue. (My app is in a server farm and there are machine keys set in ...
0
votes
1answer
165 views
Using AES256 as “decryption” in MachineKey for SqlMembershipProvider
I'm creating custom registration forms for Forms Based Authentication for a SharePoint 2010 site, and storing passwords as 'Encrypted' in the aspnet_Membership database table.
My setting in ...
0
votes
1answer
136 views
ASPX Anonymous Cookies broken when Machine Key Changed
My company recently got hit with a traffic spike, so we tried to fire up additional EC2 instances to handle the load. Unfortunately, this caused users problems with cookies (i.e. site kept asking for ...
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
251 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
263 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
1answer
433 views
Single Sign On for Web Application and Application in Virtual Directory
To enable single sign-on for a web application and a web application in a virtual directory, I set the machinekey in both apps to the same:
<machineKey validationKey="xxx" decryptionKey="yy" ...
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 ...