Passwords are primarily used as a way of accessing information and also limiting the number of users who can get access to a machine. It is primarily used with a username for the authorization system. Sometimes people use keys instead of passwords due to the increased strength of the keys.

learn more… | top users | synonyms (1)

0
votes
0answers
14 views

Using onKeyup() to validate field based on input length - Jquery Form validation engine by posAbsolute

I'm using jQuery validation engine by posAbsolute and i've come across a problem I just can't figure out the solution to. In the validation engine plugin each field validates onBlur by default. The ...
0
votes
0answers
7 views

Change Admin password on windows 7 without system error 5 [migrated]

I created an Admin account on the Pc at home , so that I can use Parental Controls and stuff ( for my kids) but wasn't using it .Now I forgot the Password. I have been following some tutorials ...
0
votes
1answer
25 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. ...
-6
votes
1answer
25 views

how to decrypt this password hash? [closed]

i had googled a lot for decryption but it was useless can anyone please tell me which type of encryption is this and how to decrypt 0x010056049b0e92e4e85487c8a63385cdb89bdd66cb7f28cab34e for more ...
1
vote
1answer
29 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
0answers
8 views

C# Socks5 (Server side) code: I cant get Username and Password

I've a Socks5 Server-Side Code. Its working very good. I can get IP address and Port Number. Array.Copy(BufRecv, 4, arIPAddress, 0, 4); Port = BitConverter.ToUInt16(BufRecv, 9); FinalIP = new ...
-2
votes
1answer
34 views

Hashing password in register and login do not match [duplicate]

I've a register form that allow user to enter password and I hash this password using crypt In the register form it work and the password is hashed and secure in the database but when it come to ...
0
votes
4answers
40 views

hashing password in registration different from the login password [duplicate]

I have a registration page that allows users to insert a password. I hash the password upon registration so that it is stored more securely in the database. When the user logs in with the same ...
2
votes
2answers
47 views

Hashing password using crypt does not work on the login it displays incorrect pass

I have a register page that allow user to insert password so i need to hash it to become more secure in the database this work fine but when it come to the login the entered password do not match ...
0
votes
2answers
23 views

hashing password using crypt and blowfish

i have a register page that the user enter a password so i hash this password and it being hashed in the database but when i try to log in it give me that the password do not match and when i echo ...
1
vote
3answers
53 views

How to code a very simple login system with java

I need to create a system that checks a file for the username and password and if it is correct, it says whether or not in a label. So far I have been able to simply make one username and password ...
-4
votes
0answers
38 views

Avoid input password or other things every time in linux

I need to excute a shell script and I want to avoid input password and others each time when I want to excute this script. How can I do? Expect? Whether are there other ways to avoid it? I give an ...
0
votes
1answer
20 views

ASP MVC 2 Forgot Password

I am working on implementing a Reset/Forgot Password feature in a ASP.Net MVC 2 web application. I have read a number of posts on here that give essentially these steps: User clicks "reset" ...
0
votes
1answer
29 views

CakePHP - how to use MySQL function password()

Everyone. I have been trying to create user info saving process, and bumped into this issue. I wanted to use mysql function password() for password field, but seems no way to use MySQL function when ...
0
votes
0answers
6 views

How do I set PasswordType to PasswordText in my service-client

I am working with AXIS and SOAP to create a webserviceclient that updates the serverside with calendarevents. I got a .wsdl from my serviceprovider that I use to generate a Java API in Eclipse. When ...
1
vote
2answers
50 views

How do you define a string in JavaScript that could contain any character?

Even though I'm using a Salesforce variable in my JavaScript, it is not necessary to know Salesforce to answer my question. There's a password field I want to access. I can do this by using the ...
0
votes
1answer
21 views

ActiveAdmin - Edit Devise user without changing password

I try to do that. Unfortunately I have problems with overriding update and I don't know how to do that correctly. The way I do that in another place is: if params[:user][:password].blank? ...
0
votes
3answers
43 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 ...
0
votes
0answers
11 views

rails with devise Forgot your password? no send emails

Hello i use devise for authetication but forgot password don't work! He says You will receive an email with instructions about how to reset your password in a few minutes but nothing arrive.... for ...
1
vote
0answers
18 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 ...
1
vote
1answer
35 views

JSF Chrome Save Password on Login form

How do I get my JSF login page to prompt Chrome to save password? <h:form id="login-form" class="form login-form"> <h:outputLabel for="j_username" value="Email:" /> ...
0
votes
0answers
15 views

Password protected app with gmail password

How to make an app password protected and compare the password with gmail password? I am new to android. Any help will be appreciated.
0
votes
1answer
21 views

How do I access the Ubuntu keyring in c++?

My app needs to store a retrievable password. In OS X I use SecKeychainFindGenericPassword but that does not exist on Ununtu. How would I do the equivalent? (Storing the data on the drive with access ...
15
votes
2answers
299 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 ...
-1
votes
2answers
43 views

Login with a hash. Is this secure enough? [closed]

I need to provide store's clients with a tool to check the status of their repair orders. The clients doesn't have a user or password. They are only a record in the database. Yet I need to give them a ...
0
votes
1answer
9 views

List IIS website

As part of a project I am working on ..I am in need of achieving following task.Can anyone throw some ideas .. I am required to document the website , service account used by website , password for ...
0
votes
0answers
12 views

after using mysqld.exe --skip-grant-tables, after restarting computer 'root'@'localhost' denied

I had forgotten my root password and reset it using the below instructions. But after restarting my computer and with the mysqld.exe file not running but with the mysql51 services running, I am still ...
-3
votes
3answers
37 views

PHP confirm password along with regexp validation? [closed]

How to confirm password along with javascript regexp validation while submitting entire form.I have wrote individual javascript function to check regexp for both pass word and confirm password. than i ...
0
votes
4answers
50 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
0answers
21 views

MySQL on Ubuntu setup problems - Access Denied

I have installed MySQL server and client on my Ubuntu machine using apt-get as root user. During the server install, it asked me for a password for the MySQL root user which I entered. So then, ...
0
votes
2answers
59 views

grails spring security login is not working

I am using grails 2.1.0. I have installed spring-security-core plugin. When I create user it is creating it. But when I try to login then it shows: "Sorry, we were not able to find a user with that ...
0
votes
1answer
24 views

Primefaces password match unhandled message

I'm trying to get Primefaces 3.5 password matching to work and I keep getting an error saying "There are some unhandled FacesMessages", and no proper message is displayed as expected. I have created ...
0
votes
2answers
35 views

Preg_match for password always errors

I'm using this for a password that needs to be 8-20 chars long, only numbers, letters and !@#$% symbols: if (!preg_match('/^(?=.*\d)(?=.*[A-Za-z])[0-9A-Za-z!@#$%]{8, 20}$/', $_POST['password'])) { ...
-2
votes
0answers
12 views

cant change root password in ubuntu [migrated]

I am trying to change root password in my Ubuntu system but I am getting an error. I disabled password prompt when calling sudo. So I can execute root commands (eg. sudo apt-get install) without ...
0
votes
0answers
12 views

MySQL - cannot log in to MySQL on Lion OS X

I have installed a Rails app with MySQL database on Lion OS X. In the config/database.yml for database is set up user (root) + password. When I try to log in into MySQL from terminal: mysql -uroot or ...
0
votes
1answer
27 views

how to make a set username and password in tkinter python

In tk inter is their away to make a specific username and password open a specific file like if an administrator logs in he would be taken to a administrator page. from Tkinter import * root = Tk() ...
0
votes
1answer
23 views

check user pasword in mybb

with this script i check mybb password but i have also error : " NO ". i use mybb password encryption method but i don't know why this not work? pleas can someone make this code as true. thank you. ...
0
votes
1answer
66 views

How secure is storing passwords with a salt and crypt()? [duplicate]

Coding an application that needs to store user's passwords for login. At the moment, I am using the following code: <?php $password = $_GET['password']; $salt = "pepper"; $password = ...
0
votes
2answers
45 views

Lost My phpMyAdmin Password, XAMPP

I have a local host running on XAMPP on a Mac. At some point I set a password in phpMyAdmin which I've ow forgotten. Can anyone help me get back into phpMyAdmin? I've followed a ton of tutorials but ...
0
votes
1answer
33 views

Simple login connected to MySQL - whats wrong?

I looked on http://www.phpportalen.net/wiki/index.php?page=Enkel+inloggning+med+MySql+och+sessioner to how to do a simple login. But when i try to login now it says that the username or password is ...
0
votes
1answer
43 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 ...
6
votes
1answer
124 views

Listen to password reveal event

IE10 has a feature that reveals the content of a password field at the click of a button. Is there any way to detect that this is happening? Of course, I can fall back to looking for a click where I ...
0
votes
0answers
35 views

Codeigniter, Ion-auth: mail user password

I use Wordpress as a CMS, and it has a nice option whereby, when an admin creates a user, Wordpress generates a password and emails it to the user, who can then login and change it to something more ...
0
votes
1answer
28 views

using Bcrypt with phpto hashing password not working

i am using the Bcrypt with php to get a safe hashing password to submit to the database in the registration the password get hashed but in the login the system display that the 2 password to not ...
-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 ...
0
votes
1answer
52 views

unit testing to validate a password

Can someone provide some sample code for a unit test that validates a users password? //set test to crate user AsaMembershipProvider prov = this.GetMembershipProvider(); ...
-1
votes
0answers
16 views

Want to delete a facebook, but cant remember email or password? [closed]

I made a facebook page for my business, and now I can't remember the e-mail or password. I have since made a new one and want to delete this old one, but can't get into it.
0
votes
0answers
14 views

missing newlines - C

So here is the task itself: Create password generator, which uses dictionary and match files to generate passwords by replacing letters in the dictionary words with their matches. Example: Dictionary ...
2
votes
1answer
43 views

Returning the salt value used in PHP's new password hashing API

I'm currently implementing a webapp that leverages PHP's new (to be released as part of v5.5) password handling API. I think it's really good but I'm wondering if anyone knows why password_get_info() ...
0
votes
0answers
9 views

SVN server retry count fails in the RAD environment (subversion)

We are using RAD 8.0.4 iFix1. It accesses SVN several times daily, using a cached username/password. Every couple weeks it locks, popping up the login dialog box. It's fixed after resetting the SVN ...

1 2 3 4 5 72