Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8293877
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T13:59:12+00:00 2026-06-08T13:59:12+00:00

I am implementing ASP.NET Membership, using default SQL Provider, default web.config settings. I notice

  • 0

I am implementing ASP.NET Membership, using default SQL Provider, default web.config settings.

I notice that passwords are hashed. But I don’t know how asp.net hash my passwords, so I am not sure whether it is possible for a hacker to decrypt this?

If asp.net use the same rule to hash password, which everyone knows. than a hacker can easily crack it.

for example. If asp.net use MD5(123456), which result is “E10ADC3949BA59ABBE56E057F20F883E”, then a hacker may have a MD5 Dictionary to look up this.

My settings is:

<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices"
             enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
             maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
             applicationName="/" />

— SQL Statement:

SELECT am.UserId, am.[Password], am.PasswordSalt FROM aspnet_Membership am

— The result is:

F10A635D-22DA-419C-84E6-767D2A35A010,tpeiwPt5+kFbcocQZOuc4aoHeuI=,PVq9dPtbFxze9Erbfd7HrA==

The password is 123456, it become “tpeiwPt5+kFbcocQZOuc4aoHeuI=”.

Is this value always the same on different machines or different apps?

If this value has something to do with the salt “PVq9dPtbFxze9Erbfd7HrA==”, is it possible for hackers to use this salt to decrypt my password?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T13:59:13+00:00Added an answer on June 8, 2026 at 1:59 pm

    To be able to answer this question, you have to understand two things: the role of hashes, and the role of salts.

    The point of a hash is to distill an arbitrary string into a string of known length in a one-way process. That is, a good hash algorithm will do this in a manner such that it is a hard problem to find any string that hashes to the same value.

    However, the problem is that hash algorithms always return the same result when given the same input. The point of a salt is to mitigate this problem in the event that the password database is stolen. Every time I hash a password, I generate a completely random salt, which need not be secret, and prepend it to my password before hashing it. This way, I ensure that every time I hash a given password, I obtain a different result. The reason that the random salt need not be secret, and in fact must be stored in ‘plaintext’ along with the hashed password, is because the same salt used to generate the original hash is required to verify, for authentication purposes, that a given password matches the hash.

    Because a good salt is randomly generated every time a user wants to change a password, even re-storing the same password will almost surely create a completely different hash, as long as the application storing passwords makes proper use of salts.

    If the hash algorithm is well-constructed, then the only attack possible against passwords stored with random salts is a brute-force search. Some hash algorithms like MD5 are considered ‘broken’, in that it is possible to find so-called ‘hash collisions’ in faster than brute-force time. You will want to find out which algorithm your platform is using to generate password hashes, and read up a bit to find out if hash collisions can be found for that algorithm.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am implementing an multilingual web site using ASP.Net. The languages are English,French and
I am implementing a SaaS application using ASP.Net MVC 2 and SQL Server database.
I've got a membership site using the default ASP.NET membership setup. The user accounts
I am implementing a web application using ASP.NET MVC3. In the application I want
Im implementing Web Form using ASP.NET in c#, I have a page with few
I'm implementing a REST API using ASP.NET MVC, and a little stumbling block has
we are currently implementing logging functionality with Log4net into our ASP.NET web-services. Therefore we
I am implementing a comet using AsyncHttpHandlers in my current asp.net application. According to
I have an ASP.NET 3.5 application using Windows Authentication and implementing our own RoleProvider.
I'm implementing a solution in ASP.NET MVC that later can be applied to couple

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.