0
votes
1answer
16 views

Part of initial value of key is the same

when i reviewed the code, i saw someone use the strategy about the key generation, the first part of IV are always the same, and the second half is different based on the machine ID (it may be hard ...
0
votes
2answers
29 views

plaintext passwords show up in http headers

I am helping test a .NET application that accepts a user's name and password. The application runs over SSL and is hosted via an iframe on a page that is also setup with SSL (so the user can see the ...
1
vote
1answer
28 views

Java: Is this good use of BCrypt?

I would like to know if my current implementation of BCrypt is correct, I am aware that I am not using BCrypt.checkpw() which may lead to an issue so that is the main reason I verify it here. ...
1
vote
1answer
33 views

Password security

Currently I am using a particular scheme for securing passwords, and I think I have some points for improvement. The implementation is in Java, so I prefer to use SHA-2 512 as encryption form. ...
0
votes
3answers
46 views

Should I hash a password inside or outside of a class?

I have a class called User which stores user information. One field that is store while i am creating the account (it isn't stored in the class otherwise) is the hashed password. The password is ...
1
vote
0answers
36 views

Communications management with PasswordDigest (WSPasswordCallback from WSS4J)

Scenario: We are developing a Java library to deploy an authentication subsystem, which acts as an intermediary of two end-points: an originator program (which sends us the SOAP message, made by the ...
15
votes
2answers
321 views

How to hash long passwords (>72 characters) with blowfish

The last week I read a lot articles about password hashing and Blowfish seems to be (one of) the best hashing algorithm right now - but that's not the topic of this question! The 72 character limit ...
0
votes
4answers
53 views

Secure username and password in Android

Problem Description I am writing application which must connect to the server and download some data from the server. The URL of the file witch must be downloaded is formatted as follow: ...
0
votes
1answer
44 views

What's the current MAXIMUM of (theoretical/practical) password security? [closed]

I'm asking for the (theoretical (if we had too much money) and practical (realistic usage of server power)) maximum password security mechanisms that are currently (middle of 2013) available, possible ...
-1
votes
1answer
60 views

How do I hide a secret from other users?

I want to store a user passkey (which has to remain in cleartext to be sent to the server) in a way that other users of the same machine wont have access to it even though they have access to the ...
-1
votes
2answers
68 views

Saving username & password in desktop app [closed]

I am making one frame which has two text field one for username & other for password,and one button to login. Now I want to store my login information for a specified period of time , so that ...
-2
votes
0answers
23 views

Ressources password security concerns [closed]

My security questions/concerns are pretty much overall. I'm sorry about that but I'm looking for best pratice. Here is what botters me when it comes to client applications without a 3 tier ...
1
vote
1answer
53 views

Hash (with Spring) and salt: is this safe?

I've a Spring based web app, so I came up using spring-security-3.0.8 (I know, that's not a good reason, lol) and I find out the PasswordEncoder class. In my case I'm using the Md5PasswordEncoder, but ...
-1
votes
0answers
31 views

Partial matches in password cracking tools [closed]

What is the method used by cracking tools for showing correct partial matches, while displaying the ongoing brute force procedure for matching a hashed password? For example, if the password is ...
0
votes
2answers
44 views

Does a salt have to be random? [duplicate]

I dont understand why the salt has to be randomly generated instead of just unique. For example, if you have a table with a user_id column (which is unique) couldnt you just tack that on to the ...
-1
votes
1answer
52 views

bash: export variable security, echo $var | prog, clear $var?

i am looking for a way to secure some programs that i have been working on. some set or change a users password, looking to create a GUI for login now and realized how insecure i have been writing the ...
0
votes
0answers
32 views

How to get a password from Spring Security?

I use LDAP for authentication in my application. (class=org.springframework.security.ldap.authentication.LdapAuthenticationProvider) I need get a login and password inside app and I try this code: ...
1
vote
2answers
47 views

Why should I use an expiring token on 'forgot password' pages?

I am building a forgot password page. I've been reading around and many sources recommend to have users enter their email address, which will then add a token in the DB and send them a link with the ...
0
votes
2answers
48 views

How to encode password in cakephp using default security methods?

I am using cakephp2. I wants to encode my password before it save to the database. These codes are used in my model as, App::uses('AppModel', 'Model'); class User extends AppModel { function ...
1
vote
1answer
68 views

how to store username/passwords securely (hash won't do) on a DB

Imagine this situation: your users give you their credentials (username/password) to access a third party service. So you have to produce those credentials when connecting to the service, you cannot ...
-2
votes
1answer
51 views

Secure MySQL Root Password? [duplicate]

My username and password to access mysql database is currently located in a config file at the root level. I include the config file whenever I need access. Doesn't seem safe to me. What can I do to ...
0
votes
1answer
39 views

What is an effective solution to replay attacks on password storage files?

How can I effectively thwart a replay attack on a password file that contains usernames and their passwords hashed with salt (and/or pepper)? The attack I am interested in preventing is as follows: ...
19
votes
4answers
1k views

Is this a good hashing password function in PHP? If not, why?

I'm wondering if this function (which is in part taken from a ~2 year old phpBB version), is good enough. If not, why? And how would you change it (making the transition seamless for existing ...
0
votes
1answer
23 views

Does knowing password structure and length speed up the cracking process?

Let's say I have a strong or semi-strong password (such as YankeesWillWin1903$). And via a generic hash function (MD5 in this example), is transformed into this for database storage ...
0
votes
0answers
37 views

MySql Processlist shows Queries to Null db with root user

I've recently changed root password on MySql server, as it was spreaded across different application which I was not aware. So as a security step I simply changed the root password. I thought this ...
4
votes
2answers
123 views

Hashing Password, from broken methods to most secure now

I have just simple question in my mind for community . Once upon a time when i started programming i used md5 for hashing password, than later found that md5 can be cracked easily and i should use ...
1
vote
5answers
61 views

Database password secure, encrypting with php does really makes difference?

About password and database secure, minding that the only way to user have acess to the users passwords is if he somehow acess the database itself (probably he got the db password), so does it really ...
2
votes
3answers
98 views

How can I obfuscate a static password in objective c?

I need to hide a password to connect with a server. The problem is that the password is given by the service providers, so it is static. I already thought on using the keychain, but the problem is ...
0
votes
2answers
67 views

How to Protect a File? [duplicate]

Am having a FILE named Sample. It may be of any type(.txt/.doc/.docx/.pdf/....). Now I want to set a password for that file. If it is possible just help me with code's.
-2
votes
1answer
51 views

Facebook Mysql Security [closed]

I have a small to medium amount of experience with MYSQL and I'm familiar with the normal way of accessing database where you have a database name, location and password and can log on and access the ...
1
vote
2answers
61 views

Remote password when online, and Local password when offline

So I have an app I'd like the user to be able to use when offline. So there will be a password when online, and I'd to use the same password when user is offline. It's not a super privacy sensitive ...
0
votes
1answer
108 views

How to securely store a user password in java for reuse throughout application

At the start of my Java application, I have the user enter his username and password. These credentials are stored in a ConnectionKey object which is used as the application makes queries to a web ...
2
votes
2answers
77 views

Can I Expose The Hashed Salt + Password?

I am using a SHA-512 hash 1000 times on a salt + password. Is it safe to return that when querying information about a user or should I secure it and make it available only over HTTPS? For example, ...
0
votes
0answers
19 views

How to use a database stored hashed password when using a protocol that does hashing?

Let's assume I picked a nice secure hashing function and I'm salting passwords with appropriately random and lengthy per-user salts and storing the resulting salt and hash with the username in a ...
0
votes
1answer
34 views

dubts about security with passwords in database [closed]

I have read this article: http://crackstation.net/hashing-security.htm and in the section where to hash the password, it says that is better to hash the password in the server, because if someone ...
0
votes
2answers
71 views

How would i find the string of a hash?

This is the code(python) my teacher wrote. (with the prime numbers i've found using a bruteforce). I also have some test data with passwords that have matching hashes (not that it really matters now ...
0
votes
2answers
43 views

I was emailed my password, want to confirm this is not secure [closed]

I recently forgot my password for a site and went through their support process for resolving this. They emailed me my original password, in plaintext. I sent them a scathing email stating that email ...
4
votes
3answers
93 views

How to continuously keep the number of bcrypt rounds relevant to the current year's hardware?

I saw a recommendation that the number of rounds be set to ($currentYear - 2000) to account for Moore's law, so that 2013 would be 13 rounds and therefore 2^13 total iterations. Of course, you need ...
1
vote
1answer
61 views

Password retrieval and storage

In my application I have to do repeated calls to webservices which require authentification. The users do not want to repeatedly enter authentification information (username and password). Is there ...
0
votes
3answers
69 views

How to Send Email from App

I need to send emails from an app. Until now I've used the JavaMail Api which works well but has some problems: I need to hardcode the password to the gmail account from which the mails should be ...
-1
votes
2answers
100 views

Register Site User and Send Email

What is the best way to register the user for the website and send a link with user name and password? Admin will create the user by entering user name but not password The password needs to be ...
1
vote
2answers
50 views

Per user salts and cross-user hash attacks

We hash users passwords (in a .net web application) with SHA2 & the following salts: Application salt - stored outside the database (in our case the web applications web.config as an encrypted ...
1
vote
2answers
136 views

Keeping track of failed login attempts

This question is essentially language-agnostic, but in my case I'm using PHP for anyone who wants to know. I would like to keep track of the number of failed login attempts a user had, so that after ...
1
vote
1answer
123 views

Hashed password - store as base 64 string in SQL server vs store as varBinary

I have a hashed password to store in my SQL Srever database Not sure whether to convert it to a base 64 string before storage or whether to store it as varbinary. If it was base 64 it would be ...
-8
votes
1answer
52 views

Hacker guessing password [closed]

need some help. What is the probability of a hacker crackng a password. Please help! formula included if be
1
vote
4answers
97 views

How can I store user name and password securely on a shared server?

I have a simple HTML5/JavaScript site that reads a local (to the app) XML file that contains email account configurations and displays mail from several mail accounts on a single page using a single ...
0
votes
2answers
53 views

Trying to change a Linux password without using passwd [closed]

I'm a linux noob and I'm stuck on a small detail of a class assignment. I meant to do this from a root shell: useradd myname -g sudo -p 'openssl passwd -crypt abc123' To create a sudoer account ...
1
vote
1answer
70 views

Passwords management frameworks (.NET, Java, Delphi, C++) [closed]

I can't find any password management frameworks/libraries. The target platform doesn't matter. It could be Java/.NET/VCL/C++. I need a framework that will help to: generate random passwords using a ...
0
votes
2answers
77 views

Sending Password Plaintext over HTTP Redirect to HTTPS

This is a followup to my previous question about how to secure API calls from a mobile app to a Play app hosted on Heroku. It was originally suggested that I implement OAuth, but it seemed more ...
0
votes
2answers
143 views

Does a salt and pepper password count as 96-bit encryption?

I have created this code for a salt and pepper password encryption. I assume this is a good way to encrypt passwords, but what level of encryption is this? I first thought the 'bit' part was the ...

1 2 3 4 5 13