Most voted "password" questions
33 questions
Sort by count of
-
5
votes1
answer51
viewsHow to store the password in the R script in the package 'Encryptr'?
I did it: library(encryptr) genkeys() And I created the password: 0)]30l^8 password<-"0)]30l^8" data(gp) write.csv(gp, "gp.csv") encrypt_file("gp.csv") My problem: How to automatically enter the…
-
3
votes1
answer192
viewsPassword validation with jQuery in steps
My scenario is the following, I have a form and in it I need to do a password validation that needs to contain: At least 6 characters, At least 1 uppercase letter, At least 1 number. This validation…
-
3
votes3
answers1089
viewsFunction - show password!
I rephrased the question, what I’m trying to do is the following, Goal is to do the same as IE does in inputs type password! <style>.show_key{display:none;}</style> <script…
-
2
votes5
answers135
viewsProblems with arrays in a Python password generator
I’m making a generator of passwords and I’m not able to join letters that are separated into one array. from random import choice minusculas = ['a','b','c','d','f','g','h'] maiusculas =…
-
1
votes2
answers2506
viewsHow to create a password mask in C
I created this code in C to generate mask in the password, but it does not let delete the characters later nor save the variable correctly. What can it be ? Follows current code: void login(){ int…
-
1
votes1
answer1866
viewsHow to disable mysql password validation with Zoneminder: ERROR 1819 (HY000)
I loaded the password validation plugin in Mysql 5.7 on Ubuntu Server 16.04 to leave the system with more protection, but it seems that this plugin forces all passwords to comply with certain rules…
-
1
votes2
answers649
viewsCheck the form to see if password entered is easy
I want to create a script so that in the registration form I have, check the most used and less secure password. That is, check for example passwords written by users and do not allow logging, such…
-
1
votes2
answers222
viewsWhat are the character types generated by the password_hash() function?
The output I noticed after some data was encrypted by the function password_hash() is around alphanumeric values and some special characters like $ . and /. There are more special characters than…
-
1
votes2
answers1441
viewsHow can I not allow the browser to save the password entered?
On this site if you log in the browser does not ask to save the password and if you log in again the fields will be empty. How does he do that? I searched the web, I found some tips but none…
-
1
votes0
answers137
viewspassword_verify() PHP 5.5.12 Not working
I’m having trouble with password_verify (). A few days ago, the same password and hash worked perfectly. Today, password_verify returns false, but I know the password is correct. $senhaC =…
-
1
votes0
answers250
viewsMysql error - request expired
I’m using Mysql, but I’m having to reset the password every time I restart my laptop. I use Sequel pro to access the bank and give the following error: Cannot connect to host 127.0.0.1, or request…
-
1
votes0
answers66
viewsExcel with password for editing
I am mounting an Excel file where I Gero an array of bytes and the UI downloads the file in xlsx format, I need to open this file with password to perform edits, there is a way to do this right in…
-
1
votes0
answers44
viewsPassword Recovery WORDPRESS REST API
Good morning, I am developing an application, and I use a Wordpress web system. This way I use a REST API plugin to get the information pertinent to the system. However I am not knowing how to do to…
-
1
votes1
answer445
viewsCron command without using password to access MYSQL database
Good personal day, lately I’ve been receiving warnings related to a cron I created on 1 site to update certain data from a mysql database table. The error is as follows: Warning: Using a password on…
-
1
votes1
answer150
viewsLogging in to Laravel password without hash
Good people! I took a very old system to make some "improvements", I used Laravel to develop a system that mainly uses the database of this system. The BIG problem is, the passwords saved in the…
-
0
votes1
answer607
viewsHow to run macro with locked project?
Hello, I have a spreadsheet whose project has a password, however I want the macros to work and if the user tries to enter the macros he will have to put the password (I put in the project). I put a…
-
0
votes0
answers213
viewsWampserver acknowledging warning (Warning) with virtual host
I created a virtual host in the Wampserver, localhost does not display any notice on console, but with another(s) virtual host is charged with the following notice: This page includes a password or…
-
0
votes1
answer1171
viewsHow to use the bcrypt function of the Laravel?
I have a file .php in the public folder of Laravel and for larger reasons I cannot create a controller of it. However, I need to use the function bcrypt to generate the password an encrypted…
-
0
votes1
answer40
viewsDoubt about Encryption in passwords
I would like to know the difference between MD5 and SHA256 in passwords. If there is one that is safer and which and when it is better to use one or the other.
-
0
votes1
answer547
viewsHow can I generate temporary URL to recover password in the play framework?
I am developing a web application using the play 1.4 framework (didactic version) and I want to implement the password recovery functionality where the user will place his email and will be sent a…
-
0
votes0
answers328
viewsfigure out a password hash method
I’m racking my brain trying to figure out which hash method one of my company’s applications is using, I don’t have access to the source code because it’s a compiled ASP, but it stores the password…
-
0
votes0
answers46
viewsIs only Password Hash enough to filter the input of a password field in a register?
Currently I do as follows: $senha = strip_tags(trim($_POST['Senha'])); $senha_segura = password_hash($senha, PASSWORD_DEFAULT); I would like to know if this is the best way to protect the password…
-
0
votes2
answers1796
viewsFormulario Email React
I made a simple validation using react, and would like the 'b' message only to be available when the user clicked on submit how can I do? export default class LoginApp extends React.Component {…
-
0
votes1
answer94
viewsVisible password
I am building a login in Asp.net and I want to click on the checkbox to show the password to be shown. Design page Asp <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"…
-
0
votes1
answer85
viewsIs the PHP password_hash function a wrapper for the crypt function?
The function password_hash seems to me a wrapper that adds a high-level layer in function crypt, because it brings a default setting that could be made with crypt manually. Same with the function…
php function security-guard characteristic-language passwordasked 6 years, 4 months ago raphael 2,131 -
0
votes1
answer201
viewserror with password_verify()
good afternoon I’m having a problem in using the password_verif() it is not checking correctly to log in, it is falling right into the else with msg "incorrect password". someone could help me?…
-
0
votes0
answers24
viewsmicrosoft-Graph getting only Scope user.read
Hello! If anyone can help. I’m trying to get emails from some of our organization’s 365 accounts to integrate with a CRM application. The program is in PHP and I’m trying to access in microsoft…
-
0
votes1
answer119
viewsError with Passport plug in Heroku
I have deployed an application to Heroku and am getting the following error "message": "Key path "file://app/Storage/oauth-private.key " does not exist or is not readable", "Exception":…
-
0
votes1
answer69
viewsHiding ( $Hidden ) password Laravel 7
I need to hide the password to be seen or etc either in the bucket or whatever form, because I list the users in an administration pad, even using the Model with Hidden as below I can read the…
-
-2
votes2
answers473
viewsPhpmyadmin problem in login
I changed my pass from phpmyadmin and unintentionally added a space at the end. Now I can’t get into the phpmyadmin. Is there any special character to represent the space?…
-
-2
votes1
answer3178
viewsMysql Error - Access denied for user 'root'@'localhost' (using password: YES)
Good morning, you guys, I really need this help, please. File: c: wamp64 apps phpmyadmin4.9.2 config.inc.php Here is the beginning of the code: if($wampConf['SupportMySQL'] == 'on') { /* Server:…
-
-3
votes1
answer102
viewsPHP validate password
I don’t have great bases with PHP however, I need to do validations like: string size contains letters, uppercase and minuscule contains numbers contain special characters In this case for a…
-
-5
votes3
answers77
viewsUse of type="password" changes layout
When I put type="password" not to display the password layout text box changes. What to do?