Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
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\\...
Crypto Santa's user avatar
-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 ...
max23's user avatar
  • 49
-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 ...
max23's user avatar
  • 49
-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 ...
shivu2012's user avatar
-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 ...
Shah Harsh's user avatar
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 ...
Nima's user avatar
  • 13
-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 ...
Chilly_Sundown's user avatar
-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 ...
Robert Kock's user avatar
  • 6,038
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....
Michal Rama's user avatar
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 ...
Andy Jacobs's user avatar
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 = ...
user avatar
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 ...
EidemE's user avatar
  • 1
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 ...
jhindianajones's user avatar
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 ...
Jim's user avatar
  • 13
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....
Jack's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
51