10,715 questions
-3
votes
0
answers
45
views
Wordpress cleartext password vulnerability [closed]
Wordpress is transmitting unencrypted cleartext password.
(//domain/wp-login.php)
On login wordpress is sending password in cleartext format for authentication. What steps can I take to prevent this ...
0
votes
0
answers
25
views
In-app Chrome autofill works on staging environment, but not production
Problem
I have an Android app that uses an in-app browser for logging in (OAuth PKCE). If the user has their credentials saved, Chrome will autofill and submit the login form after one click only in ...
0
votes
0
answers
78
views
How can I use a file .txt to store some passwords for many programs in python?
I have a file called password.txt and I want to store some passwords in it, I use it in a file of functions but I don't know how to make it usable for more than one file, every one having his specific ...
0
votes
0
answers
22
views
How to use keycloak forgot password flow fetching the keycloak url from my app?
I want to use Keycloak's forgot password flow, but I need the user to stay on my website with my custom UI.
I sent out Keycloak's UPDATE_PASSWORD email with a custom link to my page. The link has a ...
0
votes
1
answer
55
views
How to set a password encoded with BCrypt (for creation and alter)?
With Spring Boot Client it is possible to use Bcrypt to encode a password as follows:
$ ./spring encodepassword superman
{bcrypt}$2a$10$3bQEwIsu2SxDxq1xafag6uH5C3TqacyI2xtQcxJqK9xyJrxgTUPkO
Therefore ...
2
votes
3
answers
174
views
How to show a floating password requirement box below TextField in Jetpack Compose?
I am building a Jetpack Compose login screen and need to display a floating password requirement box below the TextField. The box should dynamically appear when the user starts typing in the password ...
0
votes
0
answers
64
views
John the ripper incremental with mask
I've been experimenting with John the Ripper to get a long-standing issue of a lost VHD password. I foolishly only stored the 1st part of the passphrase in my password safe, relying on my terrible ...
0
votes
1
answer
70
views
maven password or parameter using special characters
I am using maven jarsigner plugin and ant to make the last part of the deployment to move the jar to the server that I need, I am not using any pipeline tool like jenkins or circle ci.
I don't want to ...
-1
votes
1
answer
95
views
How to access passwords in C# using the Microsoft Webservices extension? [closed]
I am making a program in C# visual studio that requires access to the control panels web credentials. I have forced admin permission in order to do so and now just need to use the extension to acess ...
1
vote
1
answer
93
views
How do i change the color of my password input when browser completes the password automatically?
i'm making a signup page for my chat app and when my browser (firefox) detects that i already have an password for this website, it puts it in automatically in the password field and change its color ...
0
votes
2
answers
210
views
FATAL: password authentication failed for user "postgres" in Kubernetes
I can connect the database through docker-compose.yml with its username as postgres and its password 111111 but I cannot handle with the process through Kubernetes with Postgres.
I got this error ...
0
votes
2
answers
44
views
android:inputType="numberPassword" and setText method not working
I have an edittext in the form of
<EditText
android:id="@+id/txt_password"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:...
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
1
answer
90
views
Password_verify from PHP always return false [duplicate]
I'm working on a login page and the password_verify() always returns false when getting the hash from the DB but prints true when using static values
Here's my code :
<?php
require_once "ID....
1
vote
1
answer
192
views
Django 5.1 - UserCreationForm won't allow empty passwords
I'm upgrading a Django 3.0 app to 5.1 and have been moving slowly through each minor release. So far so good.
However, once I went from Django 5.0 to 5.1, I saw changed behavior with my "Create ...