When an application (console,web,Ui and etc.) halts and asks for a password from a user.
Questions tagged [password-prompt]
17 questions
10
votes
3 answers
Is there a way to prevent git from opening a password prompt box on Windows?
While pushing on a remote repository using git bash, my password is required and asked. This is not a problem.
The issue is that I was used to just type my password into the git console, but then I switched from Linux to Windows and my password is…

Delgan
- 18,571
- 11
- 90
- 141
4
votes
4 answers
How to setup ssh key to bypass git bash password prompt
I would like to disable the password prompt of git, so I thought that I can setup a ssh-key onto my remote repository. But how do I associate it with git on my computer.
Thanks.

Itay Grudev
- 7,055
- 4
- 54
- 86
2
votes
1 answer
How to make SF2/FOSUserBundle ask user for password again upon specific actions?
I have this secured admin area under /admin/. Users need to be logged in via an HTTP basic auth (http_basic set to true in security.yml).
My goal is, for specific action in specific controller, to re-ask user for his username/password. I thought…

D4V1D
- 5,805
- 3
- 30
- 65
2
votes
1 answer
Hide a DIV element with a password
I have a DIV element split into 2 tables, right and left. The left table is fine as it is, but the right table needs to be hidden until a user enters a password or phrase, which will open/unlock that table.
This is NOT a matter of security, but one…

PCLove
- 27
- 1
- 4
2
votes
2 answers
MATLAB to read in a password
I'm building a MATLAB application that authenticates a user's credentials.
I want to read in his password, and I want to hide his typed credentials somehow.
Some constraints:
I have to account for windows as well as linux/mac users.
I can't be…

Vish
- 2,144
- 5
- 25
- 48
0
votes
3 answers
Restricted Remote WCF Service: Windows Authentication Prompt
I want to let remote administrators (with local or domain credentials) control my Windows service via a WCF TCP binding. To do this, I need to authenticate the remote user as an administrator. I can check the principal user/roles, but I don't know…

Petrus Theron
- 27,855
- 36
- 153
- 287
0
votes
2 answers
Batch file runs software which prompts for password. Can I make the batch file automatically fill in the password?
My question is not specific to PostgreSQL 9.6, but PostgreSQL 9.6 is the software I'm trying to run so I will use it as my example. I'm also running on Windows 10.
EDIT: Magoo gave a very PostgreSQL specific answer. If someone else could give a more…

Kapten-N
- 212
- 1
- 10
0
votes
1 answer
Using wait in a script
In the following expect script, I noticed that the script will send the password even before prompted for the password. How can this be prevented? Could I use a wait statement or something?
#!/usr/bin/expect -f
#set timeout 25
spawn rsync…

Rajeev
- 44,985
- 76
- 186
- 285
0
votes
0 answers
Vala system command authentication prompt
so I've been working on some development for elementaryOS which uses Vala. Although it's not my preferred language i seem to be getting on okay until it comes to getting a graphical prompt for the root password.
In the terminal when i type "sudo…
user1538594
0
votes
1 answer
Python SSH Server(twisted.conch) change the password prompt
I wrote a SSH server with Twisted Conch. When I execute "ssh username@xx.xx.xx.xx" command on the client side. My twisted SSH server will return a prompt requesting password that like "username@xx.xx.xx.xx's password: ".
But now I want to change…

chzijian
- 21
- 5
0
votes
1 answer
Bad result from groovy's ProcessGroovyMethods (UNIXProcess)
While using Grails 2.4.5 org.codehaus.groovy.runtime.ProcessGroovyMethods on Ubuntu 14.04:
def command = "mysqldump -h${databaseProperties.host} -u'${databaseProperties.username}' -p'${databaseProperties.password}' ${databaseProperties.name} " +…

Michal_Szulc
- 4,097
- 6
- 32
- 59
0
votes
1 answer
Password Prompt Comes Only first time
I want when user click on Uninstall Button,there prompt a password dialog. This Dialog is coming only one time.I'm using this code:
public void run() {
Looper.prepare();
while (!exit) {
// get the info from the…

Zaa Ra
- 67
- 2
- 10
0
votes
2 answers
jQuery Prompt for Password doesn't want to display
$(document).ready(function() {
$(document).display(none);
var password =("You have just entered a private website. Please enter the password to access it!");
if (password == "biology") {
$(document).display();
…

Krystian Mikołajczyk
- 35
- 1
- 12
0
votes
2 answers
How to mask javascript prompt() input?
I'm using the "Secure Profile" extension for Google Chrome. Although this app lets me secure my browser via a password, the password field text is visible during input. I need to hide or mask the input. How can I do that?
Here's are the details…

mk117
- 753
- 2
- 13
- 26
0
votes
1 answer
password input prompt coding4fun - Keep displaying if wrong password entered
I am developing a Windows Phone 7.1 App and using PasswordInputPrompt control in Coding4fun library.
I initialize the control and add an EventHandler for the Completed event and then display the control.
PasswordInputPrompt passwordInput = new…

NP3
- 652
- 8
- 21