Click here to Skip to main content
15,887,302 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
Question32 Bit app calling a 64 Bit .Net object - possible? Pin
Ed The C26-Aug-14 6:35
Ed The C26-Aug-14 6:35 
AnswerRe: 32 Bit app calling a 64 Bit .Net object - possible? Pin
Paulo Zemek26-Aug-14 6:48
mvaPaulo Zemek26-Aug-14 6:48 
QuestionNeed Salted MD5 technique for login Pin
demoninside921-Aug-14 19:22
demoninside921-Aug-14 19:22 
AnswerRe: Need Salted MD5 technique for login Pin
Bernhard Hiller21-Aug-14 21:21
Bernhard Hiller21-Aug-14 21:21 
AnswerRe: Need Salted MD5 technique for login Pin
Richard Deeming22-Aug-14 2:10
mveRichard Deeming22-Aug-14 2:10 
QuestionDropTiles ASP.NET MVC Pin
Bain McKay21-Aug-14 9:17
Bain McKay21-Aug-14 9:17 
AnswerRe: DropTiles ASP.NET MVC Pin
Eddy Vluggen22-Aug-14 6:57
professionalEddy Vluggen22-Aug-14 6:57 
Questionpassword is in clear text after implementing SSL Pin
demoninside920-Aug-14 23:50
demoninside920-Aug-14 23:50 
I implemented SSL on my web application.

below is my code through which i am getting login.


MD5CryptoServiceProvider md5Hasher = new MD5CryptoServiceProvider();
byte[] hashedDataBytes;
UTF8Encoding encoder = new UTF8Encoding();
hashedDataBytes = md5Hasher.ComputeHash(encoder.GetBytes(txtPassword.Text));

#endregion

SqlCommand com11 = new SqlCommand("For_Login", con);
com11.CommandType = CommandType.StoredProcedure;
com11.Parameters.AddWithValue("@User_Id", ddl.SelectedItem.Text);
com11.Parameters.AddWithValue("@Password", hashedDataBytes);
SqlDataAdapter sda = new SqlDataAdapter(com11);
DataTable dtcheck = new DataTable();
sda.Fill(dtcheck);
if (dtcheck.Rows.Count > 0)
{

// logged in
}

but when I run the application on server n start fiddler, it shows password in clear text

see the image below

<a href="http://www.freeimagehosting.net/"><img src="http://i.imgur.com/A7j8HC8.jpg" alt="Free Image Hosting"></a>

why this is happening? what to do?
AnswerRe: password is in clear text after implementing SSL Pin
Eddy Vluggen21-Aug-14 0:33
professionalEddy Vluggen21-Aug-14 0:33 
GeneralRe: password is in clear text after implementing SSL Pin
demoninside921-Aug-14 0:48
demoninside921-Aug-14 0:48 
GeneralRe: password is in clear text after implementing SSL Pin
Eddy Vluggen21-Aug-14 2:59
professionalEddy Vluggen21-Aug-14 2:59 
QuestionDll injection VB.NET Pin
3a©roub20-Aug-14 13:29
3a©roub20-Aug-14 13:29 
AnswerRe: Dll injection VB.NET Pin
Dave Kreskowiak20-Aug-14 13:44
mveDave Kreskowiak20-Aug-14 13:44 
AnswerRe: Dll injection VB.NET Pin
Richard MacCutchan20-Aug-14 21:24
mveRichard MacCutchan20-Aug-14 21:24 
Question.Net Remotting and SQL connection Pin
Juan Topo13-Aug-14 8:35
Juan Topo13-Aug-14 8:35 
QuestionRe: .Net Remotting and SQL connection Pin
Eddy Vluggen13-Aug-14 9:12
professionalEddy Vluggen13-Aug-14 9:12 
AnswerRe: .Net Remotting and SQL connection Pin
Juan Topo13-Aug-14 10:27
Juan Topo13-Aug-14 10:27 
GeneralRe: .Net Remotting and SQL connection Pin
Dave Kreskowiak13-Aug-14 12:29
mveDave Kreskowiak13-Aug-14 12:29 
GeneralRe: .Net Remotting and SQL connection Pin
Juan Topo14-Aug-14 1:42
Juan Topo14-Aug-14 1:42 
GeneralRe: .Net Remotting and SQL connection Pin
Juan Topo14-Aug-14 4:45
Juan Topo14-Aug-14 4:45 
GeneralRe: .Net Remotting and SQL connection Pin
Eddy Vluggen14-Aug-14 2:57
professionalEddy Vluggen14-Aug-14 2:57 
GeneralRe: .Net Remotting and SQL connection Pin
sankarsan parida27-Aug-14 20:47
professionalsankarsan parida27-Aug-14 20:47 
QuestionVisual Studio Online or Express? Pin
adamhill911-Aug-14 6:24
adamhill911-Aug-14 6:24 
QuestionRe: Visual Studio Online or Express? Pin
Eddy Vluggen11-Aug-14 7:44
professionalEddy Vluggen11-Aug-14 7:44 
AnswerRe: Visual Studio Online or Express? Pin
adamhill912-Aug-14 1:44
adamhill912-Aug-14 1:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.