Questions tagged as 'senhas'

1
answer

Encrypting and decoding passwords with character rotation

I have a database with a password field, which has a kind of "encryption". Analyzing the logic: I created users in the system and put the password: 123. When I went to check the password in the bank it was: 032. If we go for logical reason...
asked by 12.04.2015 / 04:49
1
answer

Password security: Should I use Mysqli - real_escape_string or bind_param?

Mysqli = > real_escape_string I want the password storage to be as secure as possible, I am currently using only mysqli => real_escape_string : $password = $_POST['password']; $password_safe = $mysqli -> real_escape_string(...
asked by 25.05.2014 / 17:55
1
answer

Using Hash, without adding a Salt chain to the password, can make the password vulnerable? [duplicate]

Shortly you needed to find out which hash had been used to save the passwords in the database so that they were not saved directly according to what the user launches at the time of their registration. Searching I found the following websit...
asked by 22.05.2017 / 22:35
4
answers

Compare if password is correct

How to create a simple JavaScript that only asks the user to enter the password 1234 so that the message released appears, if it fails 3 times to appear blocked account. My code so far: var senha; var senha=1234; senha=parseFloat(prompt("E...
asked by 16.12.2018 / 13:09
2
answers

Enter a password in the VBA Project via module or SendKeys

Hello, I have a matrix spreadsheet that will go into thousands of smaller spreadsheets, save it to another extension, put a code inside it and want it to block the vba project from these smaller worksheets, I'm trying to use SendKeys for this, bu...
asked by 06.04.2017 / 16:18
1
answer

Problem with password encryption (PHP)

I'm doing a Pet Shop system and the problem is this: the customer does the registration, and the password is encrypted to the bank, but at the time of login it gives error. Example: the user is Marcos and his password is 123. At the time of logi...
asked by 21.10.2015 / 02:28
1
answer

Why can not I have the password hash in my seed method?

I'm trying to use my method seed below to create a user in the database when it's created: protected override void Seed(CodingCraftMod1Ex4AuthMembershipContext context) { string password = PasswordsHelper.EncodePassword("123456", Sy...
asked by 30.12.2018 / 01:08
2
answers

Is there something that works like a "Firebug" for Android?

I need to recover my WhatsApp password to use WhatsApp. I have tried everything that was offered by it (MissVenom, WART, Reverse Engineering [I could not], register through the API itself [also without success], and even things that did not even...
asked by 12.11.2014 / 14:57
2
answers

How to apply password_hash for use of SELECT, INSERT and UPDATE?

I know password_hash works like this: string password_hash ( string $password , integer $algo [, array $options ] ) 1 - But I wanted to know how I can apply password_hash in these cases: $check = mysql_query("SELECT 'id' FROM 'da...
asked by 25.05.2014 / 01:51
3
answers

Mount RegEx to validate password

Someone would know how to mount a regex to validate numeric and alphabetic sequences of at least 4 digits, type: 1111/1234 / abcd / 4321 / dcba?     
asked by 22.10.2015 / 15:37