Cryptography function that takes random bits and a string (typically a password) and uses a one-way hash to provide a new string that can be used for authentication without providing access to the original string. If a salt function uses enough random bits, the resulting string is generally ...
1
vote
3answers
80 views
Can I use this to generate a PHP CRYPT_BLOWFISH salt?
I'm basically using this:
$chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ./';
$numChars = strlen($chars);
$salt = '$2a$12$';
for($i = 0; $i < 22; ++$i) {
$salt .= ...
-1
votes
3answers
335 views
PHP SECURITY dynamic generated user hash password on every login or hash system changes
I'm knowing this site http://www.openwall.com/phpass/, but idea is on salt on mainly system.
Example, ZEND use system('uname -a') and it's hashed to md5() for using ROW LEVEL user SALT encryption. ...
0
votes
2answers
92 views
Login with custom Java EE Realm
I've created a Java EE Application with glassfish and netbeans.
I installed the custom flexible jdbc Realm from here.
I followed all the instructions and used the properties which are shown ...
0
votes
2answers
188 views
How Spring encodePassword with salt
I introduce Spring security for a web application. First I have my authentication manager as follows.
<authentication-manager>
<authentication-provider>
<password-encoder ...
4
votes
1answer
664 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
1answer
719 views
Is my C# RSA/AES/salt/IV best practices approach missing anything?
While I'm no cryptographer, I do consider myself mostly up to date on the best practices regarding [a]symmetric encryption, hashes, and crypto random number generation. I've searched, and found, many ...
2
votes
1answer
950 views
How to create md5 hash as the crypt function generates with a md5 salt using the md5 function, not the crypt function?
I prefer using crypt function in php for password encryption and other one way encryption requirements. Because I can use any supported encryption algorithm, by changing the salt and there are few ...
1
vote
1answer
208 views
How to change a SALT password in a database using PHP?
I am using a HTTP POST from android to some php script in order to update a users password in the database.
I am using the same SALT hash as is done when the user creates the account and the database ...
0
votes
1answer
48 views
Passwords MD5 encoded without salt. How to fix it?
I have a system where users can signup by Facebook or by a regular form. If user signup by Facebook, my system generates a random password, just to allow user to log-in without Facebook if he wants. ...
0
votes
1answer
92 views
Using encryption and salt with Zend Framework 2's Authentication
I'm sort of a beginner, but I've been trying to learn to work with Zend Framework 2. I'm using a module I cloned from a public repo to authenticate users. It uses MD5, like so:
$dbAdapter = ...
0
votes
1answer
110 views
Querystring with Hash Key to access search results
I need help with this asap (I was just asked to come up with a solution to this for tomorrow morning). The lead developer asked me to come up with a possible already existing solution to the following ...
0
votes
1answer
112 views
generate salted wordpress hash
i'm new to wordpress field
So this is a salted wordpress hash :
$1$4Dad4CM6$I63lezzBCDjK9RhBwUgZi1
How can i generate hashes like that?
Thank you.
0
votes
1answer
31 views
How to encrypt user data while keeping it viewable in site manager?
I am building a web app and want to ensure that we go about encrypting user data the right way.
This data is not highly sensitive (like medical records or CC numbers) but I think it should be stored ...
0
votes
1answer
1k views
Understanding and cracking salted sha512 hashes
On Ubuntu 12.04 I created several users and passwords, then promptly proceeded to try to crack those passwords with John the ripper. One password is very strong, but the others are in my wordlists.
...
0
votes
1answer
330 views
Why is crypt() returning different hashes with the same salt?
public static function blowfish($password, $storedpass = false) {
//if encrypted data is passed, check it against input ($info)
if ($storedpass) {
if (substr($storedpass, 0, ...
0
votes
1answer
540 views
ASP.NET Membership Provider - Expose the salt
Background
We are using the ASPNET membership provider that stores member login information, along with MongoDB to store a secondary set of information.
Because MongoDB does not offer built-in ...
0
votes
1answer
147 views
Password encryption in Sonar
I'm using Yale's CAS to integrate my sonar system and I have problems validating my login username and password, Since I have known that sonar uses crypted_password and salt to store original ...
0
votes
1answer
383 views
How do I get OpenSSL style salted MD5 in Ruby?
I'm talking about this:
$ openssl passwd -1 -salt thesalt thepassword
$1$thesalt$HAWpBmvUCutuyTS4JwevI.
In PHP it would look like this:
crypt('thepassword', ('$1$'.'thesalt')); # this gives the ...
0
votes
1answer
80 views
how do I store the HMAC key irretrievably in the database?
I'm trying to build a API service for a system that (due to many reasons) does not have the main database in a completely secured fashion.
So, my question is - how do I salt the HMAC in such a manner ...
0
votes
1answer
2k views
convert plain-text password to MD5 salted hash
For example under FreeBSD passwords are stored in /etc/master.passwd like this:
$1$7wtGfwgp$772bEQInetnJKUNtLM0Xt/
The password I used was "Test11". As I understand, $1$ means that it's a hashed ...
0
votes
1answer
446 views
AES Encryption using IV,Salt,RFC2898 iteration, Key Generation using SHA1 algorithm in iPhone
I am here again with the problem related AES Encryption. The problem is I need to encrypt the string using AES encryption technique with Intialization Vector, Salt, RFC2898 iteration and Generate a ...
0
votes
1answer
121 views
PKCS#5 Salt privacy?
In the official documentation of the PKCS5 V2.0 standard, we can read "The salt can be viewed as an index into a large set of keys derived from the password, and need not be kept secret."
The part ...
2
votes
0answers
152 views
Password encryption in php like web2py
i wont to implement the password encryption done in web2py in php , now i got some instructions on how to do it from massimo de piero the created of web2py but i am still cant implement it in php , ...
2
votes
0answers
79 views
How to retrieve salt if using HTTP authentication scheme?
Is it possible to use salted password along with standard HTTP authentication schemes ( FORM or DIGEST ) ?
I am using GlassFish, and when I request a protected page, the form or the answer with the ...
1
vote
0answers
18 views
Symfony2 version 2.0.23, login with users from database always return: 'The presented password is invalid'
I'm trying to set up 2 firewall with 2 different providers and encoders in my security.yml that looks like this:
security:
encoders:
Devsign\UserBundle\Entity\AgentUser:
...
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 ...
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 ...
0
votes
0answers
17 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 ...
0
votes
0answers
11 views
Salty Vagrant Master hostname: salt not found
I am trying to load my vagrant box with salt, asking it to install Apache.
I am using salty-vagrant in masterless mode.
The vagrant box get loaded but even though it stuck in the console with the ...
0
votes
0answers
25 views
After Update Mcrypt_encode and mcrypt_decode do not decode corrertly :(
I use this functions to encrypt and decrypt passwords:
public function encrypt($TEXT,$SALT)
{
return trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, substr($SALT,-32), $TEXT, ...
0
votes
0answers
115 views
Jasypt encrypted String not being able to decrypt on another machine
Our security department wants us to use 256-bit encryption to encrypt SSN, Names of Users etc, so we decided to go with JASYPT with the sample code below:
encryptor = new ...
0
votes
0answers
182 views
How to use md5 hashed password (get from external API) to create user in wordpress?
From the WHMCS API I get these data:
email
password
I get the email in normal format (email@example.com). But I get the password in following format:
41bef39ea1086512d8b90b2a3dbc4d3e:jh#sZ ...
0
votes
0answers
192 views
Rails: BCrypt::Errors::InvalidSalt: invalid salt
Loosely following Ryan Bates's How I Test Railscast to implement sending an email confirmation token to users when they sign up.
class User < ActiveRecord::Base
has_secure_password
...
0
votes
0answers
127 views
PBKDF2: time needed to decrypt
I tried the function PBKDF2 integrated with grub2 in linux OSs.
i noted that for example,to encrypt a password such as "password" it takes less time to decrypt it. Code for decrypt:
...
0
votes
0answers
620 views
Spring Security get UserDetails without accessing to Database
i'm trying to apply password encoding and salt using Spring.
All work fine when user login, but i need to apply encoding and salt when user sign up.
Reading the documentation and googling now I'm able ...
-1
votes
0answers
19 views
Generate .key file using salt,key & iv
By executing this command:
openssl enc -aes-128-cbc -k secret -P -md sha1
I got:
salt = 705760957AE3FF9B
key = BB7A9DFE339E0187CD6255614CB5C584
iv = 8E113F25E75E840A8A8377A19FFC5CF4
Anybody ...
