The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
36 views

MachineKey Relationship in subdomains. Across Servers possible?

In this example I have a couple of sites. a.site.com b.site.com c.site.com Each of the above sites all have the same identical machinekey. Also this example a.site.com and b.site.com exist on ...
0
votes
0answers
12 views

Domain Cookie and Different machine keys with forms authenication

Lets say for example I have two secure sites a.mysite.com and b.mysite.com Lets say for a.mysite.com has the machine key of 'aaa' and b.mysite.com has a machine key of 'bbb'. If i'm creating a ...
2
votes
3answers
78 views

Viewstate Validation fails in web-farm - Usual suspects eliminated

I think that I've tried all of the standard responses to this problem, and I know that I've read hundreds of questions and posts about this problem, but none of them seem to have resolved it or shed ...
0
votes
1answer
121 views

Validation of viewstate MAC failed error.

I built a website with some ASPX-C# pages, I added a new page with a form. The problem is that when I click submit I get the following error: Validation of viewstate MAC failed. If this ...
1
vote
2answers
236 views

IsolateApps causes Decryption key specified has invalid hex characters

I working on a MVC 4 site which has uses Authentication. The site requires that I specify the Machine Key values. I did this via the IIS interface having deselected the "automatically generate at ...
0
votes
0answers
68 views

Unable to gain password stored by ASP.NET Membership Provider

In my own written ASP.NET Membership Provider class I have encrypted passwords in a following way private string EncodePassword(string DecodedPassword) { return ...
1
vote
1answer
296 views

Getting current MachineKey, or equivilent, for HMAC (in web-farm)

I am using HMACSHA256 for message authentication in a web-farm environment. Within the web-farm each machine has the same machine key, so the ViewState will work across machines, however, I need to ...
1
vote
0answers
279 views

How to share ASP.NET Authorization cookies between DotNetNuke 7 and non DotNetNuke 7 sites?

We are building a ASP.NET MVC 4 website that will display information specific to the DotNetNuke logged in user. In order to accomplish this we are setting up the machine keys in the web.config to be ...
3
votes
1answer
258 views

SSO Forms Authentication issue. Unable to decrypt authentication cookie

I'm trying to develop SSO authentication between 2 web applications, application A and application B. Application A is MVC 4 application and application B is MVC 3 application. What should happen is: ...
1
vote
1answer
136 views

Web.config machinekey trap - Is there a Machine Key in use concept?

Im concerned an IIS admin user might accidentally press generate key causing the machine key in web.config to be overwritten. Are people not so concerned, because you just get it from a back up ? Or ...
1
vote
1answer
119 views

How to synchronize machine keys in AWS EC2?

Since Auto-Scaling doesn't allow buffer period and/or is not intelligent enough to NOT allow only "new requests" coming in to the instance which is scheduled to be turned off due to down-autoscaling, ...
1
vote
1answer
319 views

Users passwords not working due to MachineKey IIS6 after migrating to IIS7 on a new server

We had to migrate urgently from a Windows 2003 + IIS6 to a new Windows 2008 + IIS7 I have a couple of websites with the ASP.NET Membership Database with Hashed Passwords, on the new server users ...
0
votes
1answer
240 views

Asp.Net membership login & machine key

I have a .Net application that uses the ASP.Net membership login control for authentication. I had my application published on IIS7 as a web site (www.mysite.com). Everything working fine. Now I ...
1
vote
1answer
685 views

Why am I only *randomly* getting “Validation of viewstate MAC failed” in a single server environment?

Yes, there are a million questions and threads on this particular error, with many well-documented solutions, which I will definitely try. But first I want to understand the problem for my particular ...
0
votes
1answer
206 views

Different machine keys for different web applications

I have two web applications running under .NET4. Both the web applications are hosted on same server. I have two questions here: Will both of these applications share same machine key? How can I have ...
0
votes
0answers
186 views

Persistent auto-generated ASP.NET MachineKeys

I read that for persistent ASP.NET auth cookies, static machine key is required. As I have multiple instances of the same application, I would like to skip a static machine key, and use a separate ...
3
votes
0answers
430 views

ASP.NET shared machineKey across .NET 3.5 and .NET 4 applications [duplicate]

Possible Duplicate: Forms based authentication not working between .Net 2.0 and .Net 4.0 application I have two ASP.NET applications. The first is a .NET 3.5 application and the second is a ...
1
vote
1answer
792 views

“Unable to validate data” using FormsAuthentication between different web apps

I have two .NET web applications running on the same server - sentinel (hosted at https://sentinel.mydomain.com/) and fortknox (at http://www.mydomain.com/fortknox) Sentinel is an authentication ...
1
vote
1answer
170 views

Asp.net auth cookie encryption issue

I have two servers in a webfarm. Both use the same machineKey. When one server generates auth cookies the other one doesn't understand. What else can be checked?
7
votes
3answers
2k views

Losing Session State with ASP.NET/SQL Server

I have a ASP.NET MVC workflow configured as two websites managed by a load balancer. The websites use Sql Server as the session state provider and have authentication switch off (its not required). ...
4
votes
2answers
1k views

Is Forms Authentication Ticket safe enough?

When a user logs in based on default Forms Authentication method, the server creates a cookie containing encrypted data (using Machine Key as key for encryption). It means that if someone ...
0
votes
0answers
1k 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
398 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
509 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?
1
vote
2answers
629 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 ...
2
votes
3answers
1k views

Asp.Net MachineKey Generator [closed]

anyone got better tools than http://aspnetresources.com/tools/machineKey which generates machine key not using SHA1 or better. Thanks.
0
votes
1answer
641 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 ...
2
votes
1answer
494 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 ...
3
votes
1answer
175 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 ...
0
votes
1answer
365 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 ...
3
votes
1answer
715 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 ...
0
votes
1answer
322 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 ...
19
votes
3answers
1k 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. ...
1
vote
1answer
315 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 ...
0
votes
1answer
445 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
139 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
431 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 ...
2
votes
0answers
230 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 ...
0
votes
1answer
255 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 ...
2
votes
3answers
15k views

Asp.net Validation of viewstate MAC failed

I am receiving the following error at certain times on asp.net website. Sys.WebForms.PageRequestManagerServerErrorException: Validation of viewstate MAC failed. If this application is hosted by ...
0
votes
1answer
484 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 ...
1
vote
1answer
3k 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 ...
6
votes
2answers
10k 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 ...
0
votes
0answers
432 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 ...
11
votes
1answer
11k 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 ...
2
votes
1answer
2k 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 ...
3
votes
2answers
1k 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" ...
1
vote
1answer
678 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 ...
2
votes
1answer
537 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?
2
votes
3answers
1k 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 ...

1 2