passwords Questions

3

I want to clone a svn repository using git, with a username and password given on the command-line. I can write: svn checkout --username user --password pass svn://server/repo But I can't use -...
Brinkman asked 10/1, 2014 at 9:31

26

Solved

I want to create a new user in MySQL with the syntax: create user 'demo'@'localhost' identified by 'password'; But it returns an error: Your password does not satisfy the current policy requireme...
Bakemeier asked 29/3, 2017 at 13:19

9

Solved

How can you make SSH read the password from stdin, which it doesn't do by default?
Shanteshantee asked 27/8, 2009 at 11:7

17

Solved

I was wondering if there is a way to save my Subversion password when doing svn operations from the console. The console is the only option that I have. When I try to do any Subversion action, e.g....
Swelling asked 24/5, 2010 at 18:17

10

Solved

This code is supposed to hash a password with a salt. The salt and hashed password are being saved in the database. The password itself is not. Given the sensitive nature of the operation, I wante...
Historiography asked 7/3, 2012 at 0:34

13

Solved

When connecting to a network share for which the current user (in my case, a network enabled service user) has no rights, name and password have to be provided. I know how to do this with Win32 fu...
Ascensive asked 17/11, 2008 at 13:7

2

A bunch of different software tools all use the Unix-specific pwd module and so are not runnable on Windows. The module only has a few functions associated with the user and the password file. Fr...
Templar asked 23/5, 2015 at 14:22

8

Solved

I am currently using the following for hashing passwords: var pass_shasum = crypto.createHash('sha256').update(req.body.password).digest('hex'); Could you please suggest improvements to make the...
Monde asked 23/12, 2012 at 23:56

22

Solved

I have a version of phpMyAdmin located on my local Apache server. I am trying to login without a password however phpMyAdmin keeps throwing the warning: Login without a password is forbidden by...
Foldaway asked 6/5, 2011 at 8:27

3

I am using Cygwin and Git. Every time I push/pull to a repo on Bitbucket with a https url I am asked to enter a password. Is there a way to store these credentials (like with ssh-keys)? I tried ...
Aleksandr asked 8/9, 2013 at 12:57

10

I want to generate a password in a Helm template, this is easy to do using the randAlphaNum function. However the password will be changed when the release is upgraded. Is there a way to check if a...
Unworldly asked 16/5, 2019 at 13:44

7

Solved

You know how in Linux when you try some Sudo stuff it tells you to enter the password and, as you type, nothing is shown in the terminal window (the password is not shown)? Is there a way to do th...
Loathsome asked 8/2, 2012 at 22:3

7

Solved

I know that in Shiny Server Pro there is a function of password control. The question is that Shiny has function passwordInput(), which is like textInput() Has anybody thought about how to do the f...
Swallowtail asked 11/3, 2015 at 13:15

8

Solved

I'm trying to create an API for my user registration using Django Rest Framework. I created a serializer by following the step from the api-guide class CreateUserSerializer(serializers.ModelSerial...
Weatherworn asked 26/12, 2016 at 14:15

22

Solved

Does Python have a built-in, simple way of encoding/decoding strings using a password? Something like this: >>> encode('John Doe', password = 'mypass') 'sjkl28cn2sx0' >>> decode...
Telegony asked 22/3, 2010 at 6:23

38

Solved

Is there a clever way to let the user switch between hide and view password in an android EditText? A number of PC based apps let the user do this.
Vandiver asked 10/9, 2010 at 15:11

7

I installed AMPPS using the "website" and "brew cask" but in both times when I enter the mac user password it gives "the password you entered is incorrect" I thought i typed the password wrong or ...
Idealism asked 12/1, 2020 at 2:18

2

Solved

I am using MySQL 5.5. It contains (commented) lines in my.ini: [client] #password = your_password If I uncomment "password" line, it does not see it, and allows me to connect with an emp...
Lederer asked 11/8, 2019 at 9:51

12

Solved

I'd like to store the hash of a password on the phone, but I'm not sure how to do it. I can only seem to find encryption methods. How should the password be hashed properly?
Rincon asked 15/11, 2010 at 3:32

5

I write a pdf cracking and found the password of the protected pdf file. I want to write a program in Python that can display that pdf file on the screen without password.I use the PyPDF library. I...
Beaverboard asked 30/9, 2014 at 21:0

7

Regex Password complexity requires that any three of the following four characteristics must be applied when creating or changing a password. Alpha characters - at least 1 upper case alpha charac...
Slier asked 14/6, 2013 at 7:7

36

Solved

One of the joys of working for a government healthcare agency is having to deal with all of the paranoia around dealing with PHI (Protected Health Information). Don't get me wrong, I'm all for doin...
Fitly asked 28/8, 2008 at 14:18

27

Solved

I have been trying to reset my MySQL root password. I have run mysqld_safe --skip-grant-tables, updated the root password, and checked the user table to make sure it is there. Once restarting the M...
Ochlophobia asked 23/9, 2011 at 19:47

8

Solved

I installed mysql on ubuntu server and did not specify password. When I do mysql -u root -p it prompts for password and without providing any input I just hit enter and it works. Now I need to pe...
Disarrange asked 2/10, 2010 at 1:25

35

Solved

When a user on our site loses his password and heads off to the Lost Password page we need to give him a new temporary password. I don't really mind how random this is, or if it matches all the "ne...
Enthuse asked 10/9, 2008 at 18:45

© 2022 - 2024 — McMap. All rights reserved.