All Questions
294 questions
0
votes
1
answer
48
views
byte like object error when checking encrypted passwords (Python)
I am creating an application that requires a user login. The username and password must be stored in a database, but I don't want to store them as plane text. I followed this tutorial on how to store ...
1
vote
0
answers
41
views
Unique constraint on hashed password database column
This might be a stupid question and out of habit I wouldn't add a unique constraint to password hashes when stored in a database. However, I thought a bit about it and probably confused myself why ...
1
vote
0
answers
100
views
Recover postgres database from data directory, forgotten password
I have a following problem.
I had a database with data in docker.
I create a backup of a data directory, and cleaned docker volumes.
However, I do not have the password to the old database.
Can the ...
-1
votes
1
answer
198
views
where do I enter my password after launching pgadmin4
entering password in pgadmin4
I launched my pgadmin4 with a view to enter password and load database but cannot see where to enter password and load the database. This is to help me as postgres user ...
0
votes
1
answer
24
views
Database is null, cannot complete login page! (HashMap)
This is my database:
public class Database {
private Map<String, String[]> cardPinMap = new HashMap<>();
public void addCardInfo(String name, String cardNumber, String pin, ...
-1
votes
1
answer
358
views
Error : vb.net sqlite create database with password
i face problem when i try create sqlite database with password.
When I create database without password it is work very good but if i try to set password it give me error message "Could not load ...
0
votes
0
answers
41
views
My c# login server doesn't recognize my usernames and passwords
So, I'm trying to create my first login/register page and for the most part it works, besides the case in which I have to scan the username and password data form the text file. It always says that ...
0
votes
0
answers
158
views
PHP password_verify always fails with the hash from database (phpMyAdmin)
I got a problem with the password_verify() function and the combination with the database (phpMyAdmin).
So when I hash the password by register a new User I use this function:
$password_hash = ...
0
votes
1
answer
55
views
show PW in mySQL DB or create new user
I'm working on a project, continuing a work of somebody else I need to have user name and PW for the update I want to make I can access database it is a MYSQL database. I can see user names but I can'...
0
votes
0
answers
189
views
How to disable password reset by users on mysql
Is there a way to disable the password reset done by users on MySQL, except the root user? Any help or suggestions are highly appreciated.
Thanks in advance.
0
votes
2
answers
5k
views
How can I encrypt the existing Room database with sqlcipher?
I have been looking for a solution for Room database security for a while and got acquainted with sqlcipher but could not find a suitable solution to use it.
Until finally to the address
Link
I ...
0
votes
1
answer
768
views
Can I Check Username and Password in Sql table
I have a database table which contains usernames and passwords. My question is that Can I use if statements and return true or false depend on given username and password is true. I used to check it ...
0
votes
0
answers
87
views
Manage username and password in a Java application SE
I have to develop a Java 8 SE application that read data from a DB. I need to connect to the DB via username and password. I don't want put the username and password in clear on my application.
How ...
0
votes
2
answers
582
views
How users are verified when passwords are NOT stored as plain text in the database?
I know it is bad to store password as plain text in DB, because if hackers gain access to the server's DB, all usernames and passwords will be completely exposed? Therefore, original passwords are ...
0
votes
1
answer
209
views
An easy way to secure passwords in database [closed]
I am creating a simple project in flask, this is a simple web where you can sign up and log in. Each time a user signs up, I save their username and password in the database. When someone tries to log ...