1,201 questions
0 votes
0 answers
154 views
How to encrypt password in nifi 2.3.0 conf/login-identity-providers.xml
I'm working on upgrading nifi 1.23.2 to nifi 2.3.0 I noticed an imcompability issue. In nifi 1.23.2, You can put encrypted password in conf/login-identity-providers.xml e.g. <provider> &...
0 votes
1 answer
61 views
AWS S3 SSE Customer Key Java vs Python
I have a file uploaded to an S3 using Server Side Encryption via Lambda using JAVA Code. We have another Lambda written in Python that needs to access this file and process it but the Same Key does ...
-1 votes
1 answer
99 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
0 answers
43 views
php password encryption after upgrade from mySQL 5.7 to MySQL 8.4 [duplicate]
As part of upgrading MySQL from 5.7 to 8.4, my server is now configured so that each defined user's login will ask for caching_sha2_password encryption. I do not want to enable mysql_native_passwords ...
0 votes
0 answers
84 views
How many scram iterations should be set for PostgreSQL to ensure CLI level password security?
I am working on trying to build some foundational knowledge on secure deployments of PostgreSQL. I'm currently on version 16. While only one measure of security protocol, my first step is to secure ...
0 votes
1 answer
318 views
Use hashcat to appear Token length exception
Use the following command .\hashcat.exe -m 14700 -a 3 "$itunes_backup$*10*2d16f580921a8b3be93153ae5ce8d67afbd47069243820bfbda466c0a47502310d0814b83533c789*10000*...
0 votes
0 answers
119 views
Wrong password while logging in - bcrypt
I am making a login route with jwt token and express. When I create an account, the password is hashed by bcrypt. When I log in, I need to compare them. I tried with simplest password but it didn't ...
0 votes
0 answers
45 views
Generating astronomically many strings
Is it possible to generate all possible 64-character strings using only the characters '0'-'9' and 'a'-'f' in any programming language? The range mentioned represents an unsigned integer with an ...
0 votes
0 answers
111 views
X509Certificate2 class, error in the production environment only
I need help resolving an issue with importing a .p12 certificate: When I use new X509Certificate2(certificado) it works in the development environment, but it throws an error when I run it on the ...
0 votes
2 answers
1k views
crypto-js PBKDF2 1,000 times weaker than specified in 1993 and 1.3M times weaker than current standard
I have a question regarding this vulnerability. I'd like to know what this actually means. Is it just some fantasy of GitHub Dependabot, or it is really something dangerous? If I use it to encrypt my ...
1 vote
2 answers
711 views
A secure way to store SSH credentials (MAUI / C# application)
I currently use Preferences to save all the other data I reuse in my application. So, when it comes to SSH credentials, host/port/username can be stored in plain-text, but what to do with the password?...
1 vote
1 answer
1k views
Encrypt data in flutter with a public key
I need to create the following code in flutter, encrypt data with a public key using RSAES-OAEP/SHA-256/MGF1-SHA-1 textPayPass=document.getElementById('tpassword').value; $('tpassword').val(''); ...
0 votes
0 answers
107 views
I am encrypting password using SHA2_256 hashbytes converter in SQL; now I want to see the orginal data [duplicate]
I tried this to convert data into encrypted data, INSERT INTO userDetails (role, userName, name, password, statusId, isDeleted) VALUES (@role, @username, @name, HASHBYTES('SHA2_256', @password ...
0 votes
1 answer
36 views
Hoa can I get the session id and pass it to an encryption function?
Here is the specific code that uses the session key and passes it to the server for authentication a2 = encrypt.AESEncrypt(a2, "<%=(String)session.getAttribute("__GETLOGINKEY")%&...
2 votes
0 answers
123 views
DB2 encrypt() problem with PHP and parameterised query
I am trying to change some SQL code to use parameters instead of hard-coded data. This code is causing difficulty: Update mytable set passw=encrypt(?, 'mysecretkey') where ... The passw field is ...