All Questions
762 questions
0
votes
0
answers
76
views
How to decrypt chrome passwords from SQLLite?
Chrome v132
I've got the following code:
final Process globalKeyProcess = Runtime.getRuntime().exec("powershell -NoProfile -ExecutionPolicy Bypass -File \"C:\\Users\\scripts\\...
-1
votes
2
answers
99
views
Java how to pass password from file to process
I have a config file secrets.properties file with USER_PW=xxx and I wold like to pass the password to a process that executes a command that requires root privileges.
In tried to pass the password in ...
-1
votes
1
answer
81
views
Java ProcessBuilder - Provide user password to process, but don't display the password in the terminal
I need to copy a file from a Docker volume to the host machine. To do so I need to provide my user password over the terminal. That works, but the problem is that, when I type in the password, it is ...
-6
votes
2
answers
86
views
How do we handle the passwords when pushing an automation scripts to remote repository?
I had a interview question: How would you handle passwords that you are using in your test when pushing your code to remote repository?
because the password should not be read by others. But the code ...
-1
votes
1
answer
89
views
Encrypt and decrypt passwords between browser and Spring MVC backend [closed]
I want to securely transmit and handle user passwords between the browser and a Spring MVC backend. The password is encrypted on the client side and decrypted on the server side before validation
...
0
votes
1
answer
56
views
React by each character input
How to inform a user who is filling in the password field at any moment what the strength of his password is
like Email program which inform at each moment when you filling the password field
I want ...
-1
votes
1
answer
49
views
How do I implement a password that users can change in another window in Java Swing
The program I'm designing allows users to change an admin password ONLY AFTER entering the current admin password into a password field in the class setupModeLock below. However, the password never ...
-1
votes
1
answer
106
views
JPasswordField with a preview button
I need a JPasswordField with a small button (or something similar) with an icon that shows me the password entered so far when the left mouse button is pressed on that icon.
This can easily be ...
0
votes
0
answers
100
views
An easy way to verify password correctness?
I created a simple code (and a test zip file with the password cat_666) to check if the entered password is correct (using zip4j library)
var filechooser = new FileChooser();
filechooser....
1
vote
0
answers
42
views
Only reading a single character with readPassword()
When I run my program with:
String line;
if (null != System.console())
{
char [] c = System.console().readPassword("prompt>");
line = (null ...
0
votes
2
answers
2k
views
What should be password field length in dB when using Spring Security?
I want to create my User table and set a proper size for password field used for signup request.
@Entity
@EqualsAndHashCode(callSuper = true)
public class User extends Person {
@Column(length = ...
0
votes
2
answers
1k
views
Recover keystore password when saved by Android Studio
Good morning,
I (stupidly) forgot the passwords (it's the same for both cases) of my Android keystore, except that I did "Remember passwords" so I don't need to remember them .
Except that I ...
0
votes
3
answers
230
views
I'm trying to create a regex for a strong password
I'm having some trouble creating a regex for a password. It has the following requirements :
at least 10 characters
at least 1 uppercase letter
at least 1 lowercase letter
at least 1 special ...
0
votes
1
answer
554
views
Java - Protecting Properties file in jar
If i include a properties file in my project that contains a database password, how do i stop someone from browsing the .jar file and accessing it.
Currently i have it hardcoded, but you can decompile ...
6
votes
6
answers
22k
views
Jasypt: Failed to bind properties under 'spring.datasource.password' to java.lang.String
I am using Jasypt in my Spring Boot app and encrypted passwords in app properties and docker-compose using proper annotation:
application.properties.yml:
datasource:
driver-class-name: org....