Tagged Questions
0
votes
0answers
16 views
JBoss salted DatabaseServerLoginModule on AS 7.1
I'm trying to set up a secure login for my application.
To achieve this I wanted to salt my hash and maybe use an iteration count.
The official forums don't seem to answer that so I was wondering how ...
1
vote
0answers
61 views
Passing the salt along with hashed security key in URL
So I'm trying to authenticate against a third party web app. The documentation with this third party web app suggest taking the our security key provided by the third party web app and hashing it with ...
0
votes
3answers
90 views
Hashing User password in Cookie
I'm trying to set a cookie so that user can be automatically logged in.
I do not want to query DB for session string when authenticating cookies (basically I need to do that whenever most of my APIs ...
0
votes
1answer
236 views
Java autentication of Drupal passwords
I try to mimic the way Drupal 7 is checking for a correct password in Java.
Found some code as a guideline here: ...
1
vote
1answer
661 views
How to implement customized SHA-256 salt per user login/out with db spring 3.1 security?
I am reading the doc Spring 3.1 security documentation extensively, but I can't find answers to all my questions.
In a spring web application, based on form login (user + pwd), I want to salt user ...
3
votes
2answers
2k views
Codeigniter ion auth password issue
I ran in to a problem with ion auth what i cant really solve.
I use sha1 encryption, salt is turnd off in config.
Checked if the input post posts the correct input and it does.
I type in for ...
2
votes
2answers
410 views
How do I check for a salted password in Spring Security?
I am using Spring 3 and grabbing users from a MySQL database.
Right now, in testing, I have a user with a MD5 password. And I can authenticate just fine using that.
However, we want to be a little ...
2
votes
3answers
299 views
password salt storing
I want to update my password setup that is currently using just MD5.
Now what I would like to do is use something stronger (maybe sha256) with unique salt per user.
The question is about the salt ...
0
votes
1answer
132 views
Store hash value
Is there a way to store the salt for this hash method? I dont know how to do it?
Thanks.
public void AddStudent(Student student)
{
student.StudentID = (++eCount).ToString();
...
0
votes
1answer
31 views
The Time it takes to search database
I am new to web development and database and am trying to implement password authentication with reasonable security and speed. I have read about hashing the password and append a salt unique to each ...
1
vote
0answers
401 views
Symfony custom user provider / salting password
I'm using DynamoDB for my application so the doctrine ORM isn't an option for me when it comes to authentication.
I've created a basic user provider and have it working perfectly when using a sha1 ...
8
votes
3answers
4k views
Salt and hash a password in python
This code is supposed to hash a password with a salt. The salt and hashed password are being saved in the database. The password itself is not.
Given the sensitive nature of the operation, I wanted ...
1
vote
2answers
686 views
Md5 with salt encoding
I am migrating some data from joomla based cms system to spring based Java EE environment .
During analysis I found that md5 implementation of passwords is not same as joomla ??? Any idea why ...
0
votes
2answers
651 views
Authenticating plain text password against md5 hash
Hello and thank you for reading,
I have a task to authenticate a un / pw pair against a password stored in a MySQL database which has joomla serving as the CMS / frontend.
The joomla web application ...
1
vote
2answers
420 views
C#: comparing the password hash with the user input different sizes , when Authenticating the user
I have made a user registration where I have salted the user password and hashed it using SHA256.
later, when the user needs to log into my system I need to have his password salted and hashed, so I ...
4
votes
1answer
658 views
How to secure HTTP JSON web service in .NET WCF
So, I want to secure a http json web service.
I will have a bunch of users of the system who will all have a username and password.
I only want to store a randomly salted hash of user's passwords in ...
2
votes
4answers
509 views
Salted password hashes
I am trying to create a login system for a web application, but I am stuck on a couple of points. I am storing the password in my database using a sha2-512 hash with a 128 bit random salt.
However I ...
34
votes
2answers
12k views
Spring Security Custom Authentication and Password Encoding
Is there a tutorial out there or does anyone have pointers on how to do the following with Spring-Security?
Task:
I need to get the salt from my database for the authenticating username and use it ...
0
votes
1answer
77 views
Why does this code encodes random salt first as hexadecimal digits?
I'm looking at some existing code that is generating a salt which is used as input into an authentication hash.
The salt is 16 bytes long, and is generated by first using an OS random number ...
1
vote
4answers
605 views
php salt authentication
Thank you for your honest criticism towards my ignorance in php/mysql and I appreciate your help concerning this issue.
After making the corrections suggested below I'm running into the issue where ...
13
votes
2answers
7k views
Rails 3 / Devise: Password salt no longer being created?
I've been working on a project for a while now which uses Devise for user authentication. Whenever a user was created, it would generate a password salt for them along with their encrypted password.
...
5
votes
3answers
1k views
Hashing & Salting - Validating login w/ cookies
So this is basically a reassurance that I'm doing the whole registration/login process right as far as hashing/salting goes.
I have a users table with the fields password, salt, token (obviously ...
1
vote
1answer
337 views
Please quickly check this PHP + SALT implementation - does not work?
Building on tutorials out there to implement a basic user sign up + log in system with salt. At the moment I'm using this for the sign up stage:
define('SALT_LENGTH', 9);
function ...
2
votes
5answers
190 views
Passwords, salts and auths
If I have a random, 16 character long, alphanumeric salt (varying case) that is generated and stored per user, do I need a site wide salt as well?
In other words, is this good?
sha1($user_salt . ...
1
vote
1answer
73 views
Is this kind of hashed verification safe?
The question I'm about to ask is just because I'm curious. I think I'm doing the right thing, but I want to make sure it actually is the right thing. It's about hashing.
The website I am currently ...
0
votes
3answers
232 views
Salt exposure in authentication stages
I have implemented the multistage authentication illustrated below.
brackets ([ and ]) symbolizes a hash
The client has a key and a secret used for authentication. The server has a database table ...
99
votes
4answers
15k views
Where do you store your salt strings?
I've always used a proper per-entry salt string when hashing passwords for database storage. For my needs, storing the salt in the DB next to the hashed password has always worked fine.
However, ...
8
votes
5answers
2k views
Are hashed and salted passwords secure against dictionary attacks?
I understand that salts make the same password hash to different values. However, salts are usually stored in the database with the password. So let's say I am attacker, here is how I might use a ...
2
votes
5answers
682 views
Is my authentication encryption any good?
So I've been reading a lot about encryption in PHP. So much that I am not sure exactly what's a really good method to securely store login information.
However, the following function is what I came ...
0
votes
3answers
1k views
How would you implement salted passwords in Tomcat 5.5
My web application is relying on container-managed security and I'm wondering if it's possible to use salted passwords at all. As far as I can tell it's easy enough to store digested passwords in a ...

