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
5 views

mobile app password change implementation

I want to provide user to be able to change his password to the server within the app. The way authentication currently works is that password is required on the first use of the app and than a token ...
-5
votes
1answer
26 views

Trying to set a Password with php [closed]

What I did so far is set a Password on my webseit. It works, but you can still access the webseite with the link of the page where the password lets you on. This is the skript I have so far: <?php ...
-1
votes
3answers
26 views

how to make re enter password field in php registration form?

I made a php registration form connected to the database. I put three fields name, password and email, and I want to know what code should I use to creat a re enter password field ?
0
votes
1answer
26 views

Why am I getting a “RangeError: Maximum call stack size exceeded” error?

I have my website hosted by Node.js with html and when I POST from a form below: <form class="validateForm" id="registerform" method="POST" action="/signUp" accept-charset='UTF-8'> ...
0
votes
1answer
32 views

Can we use uniqid() to generate a unique Salt in PHP

I'm using bcrypt to hash my passwords. But I would like to use some Salt with it as well. Can I use the uniqid() function to generate a unique Salt for every user? Or may be something with more ...
-1
votes
0answers
6 views

How do Hackers Find Credit Card and Password Information? [closed]

My situation right now is that my parents were called by a scammer pretending to be an employee of a tech support company they subscribe to. The scammer managed to convince them to install teamviewer ...
0
votes
1answer
15 views

Why does reset password URL expire?

More of a theoretically question. Writing a secure login system and I can't find a reason to have an expiration to a reset password URL. Their thought was if someone was in your email and wanted to ...
0
votes
3answers
38 views

Can we make a “forgot password” link expire after XX minutes WITHOUT altering our database?

We have a security-conscious client, and in their "forgot password" flow, an email gets sent out with a link to reset the password. Right now, that link never expires, opening a potential security ...
0
votes
1answer
28 views

Storing passwords in a Hashed format

In my application, users create data then use their secret key to calculate a hash. The data with the appended hash are sent to the server. The server recalculates the hash using the private key it ...
0
votes
0answers
17 views

phpMyadmin only changing local account password (not remote) [closed]

We give to each of our students two MySQL accounts: A local account (username@localhost) and a remote account (username@%). When a user changes his/her password in phpMyAdmin, only the password of ...
0
votes
0answers
40 views

What to prefer for a password algorithm? [closed]

What is a good password algorithm for Java? Any reason not to use bcrypt? I heard that you should use a spec paswword algorithm and not a straight fast hash function since a password algorithm should ...
0
votes
1answer
10 views

Identical Phpass code returning different results with CheckPassword

I am using Phpass to hash the passwords of my users. The creation and hashing of the password - fine. The checking of the password when logging in - fine. The checking of the old password when ...
0
votes
0answers
19 views

Extending ASP.NET MVC Register

I have RavenDB set-up as my choice of DB in my MVC project. Currently the Register process is as follows: [HttpPost] [AllowAnonymous] [ValidateAntiForgeryToken] public ActionResult ...
0
votes
0answers
6 views

Copy / Migate / Synchronize Active Directory Password across Domain

I am in the middle of an Active Directory Migration and need to keep user passwords synchronized between the old and new environment. As I want to implement a Service for getting the Job done and ...
0
votes
1answer
21 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
0answers
6 views

WPMU set password when adding new user

in WPMU i would like to be able to set the password myself when i'm creating a new user. is there a way to get back to the single install Wordpress "add new user" form?
0
votes
1answer
20 views

How does John the Ripper work?

I am familiar with John the Ripper, nevertheless, I haven't found a source where I can familiarize myself with the theory behind the program. I know that by studying the code I can get to understand ...
0
votes
0answers
32 views

Reverse for 'django.contrib.auth.views.password_reset_confirm' with arguments '()' and keyword arguments

I follow this code for django reset password: http://drumcoder.co.uk/blog/2010/apr/09/django-reset-password/ I use from Django1.5 and change {{ protocol }}://{{ domain }}{% url ...
0
votes
1answer
18 views

Regex password validation needs just one more adjustment

I have an expression that is close to what I need it's just missing my "no adjacent number" rule ^.(.).\1.*$ abcdef1 is allowed abcdef1g2 is allowed abcdef12 is NOT allowed (but my current ...
0
votes
1answer
20 views

Django forget password

I follow this code: http://drumcoder.co.uk/blog/2010/apr/09/django-reset-password/ but when I run I have this error: File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py" in ...
0
votes
1answer
9 views

EC2 instances login with password and keypair

I understand that by default Amazon EC2 configures a keypair with a default instance user (user-ec2 or ubuntu) for SSH access. Also I understand that it is possible to allow password access to a ...
0
votes
2answers
31 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
16 views

CMDBuild password reset

I have to deal with an old CMDBUild, but unfortunately, noone have the superuser password. So I would like to change it directly in the postgres database. I manage ton connect to cmdbuild database in ...
0
votes
0answers
13 views

Shift+Enter Key Event behavior on Android Password field

In Android password field if execute Shift+Enter key event, text disappear for few moment and again come. I tried to restrict it suggested here here it restrict Eneter Key event but allow to execute ...
2
votes
3answers
54 views

Generate valid Unix username and password in Perl

I need to generate a username and password pair in order to create user on a Unix system, preferably a pair that would be hard to guess (for security). Does anyone know any good way of doing this ...
1
vote
0answers
44 views

What is the name for a program that can find a solution in a finite (but inordinately large) amount of time? [closed]

Say I have a 10 digit password, which contains uppercase letters, lowercase letters, and numbers. I could definitely write a program to figure a random password through 'brute-force,' but it would ...
-2
votes
0answers
13 views

recover password from logged in gmail on Android [closed]

Thanks. Thanks. Thanks. Thanks.
-2
votes
1answer
66 views

Best Algorithm to encrypt password [closed]

I want to encrypt the password & store the encrypted value in MySQL database. What algorithm is the best way to go for encryption in Java? For each user, I've userid, useremail field as well ...
-4
votes
0answers
22 views

Windows 7 BIOS Lock [closed]

My school had a computer that was locked today, and from the graphics of it, it was obviously part of the bios. But if you lock the computer, it usually starts up and just says "Enter Password:" and a ...
1
vote
1answer
41 views

Checking username: getpwnam / getpwnam_r: No such file or directory

I'm trying to make a web logging and I use getpwnam() function to check username existing. But for valid username getpwnam returns error: No such file or directory. So I tried getpwnam_r(), but it ...
0
votes
1answer
57 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 ...
1
vote
1answer
30 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
30 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
36 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
12 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
45 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
48 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
56 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 ...
1
vote
2answers
26 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
62 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
39 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
23 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
33 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
9 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
54 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
29 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
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
42 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
38 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:" /> ...

1 2 3 4 5 72