password-protection Questions
2
Solved
I have a project with some SOAP interfaces configured to test my backends.
To be able to transfer the credentials, I had the choice either to:
Put a soap header <soapenv:Header>...</so...
Heterophyllous asked 23/10, 2015 at 8:1
11
I am trying to password protect a directory, and have two files in the directory which should password protected it:
.htaccess
.htpasswd
HTACCESS:
###Contents of .htaccess:
AuthUserFile /var/w...
Worms asked 4/4, 2012 at 16:11
8
Solved
In a UI of mine, I have a PasswordField like so (urm the one at the bottom!):
I want a user to be able to check the checkbox you see in the picture and have all "secret" password characters disp...
Jefe asked 9/6, 2013 at 20:47
11
Solved
I have a password in my code which is needed to connect to a sftp server. Whats the best way to "obfuscate" or hide it in the code?
Thanks
Etherify asked 11/11, 2010 at 14:7
4
Solved
I need to put a password protection to PDF files using ghostscript in php.
These files will be uploading to server using simple form (I don't need any help with this), but they won't have any prot...
Annadiane asked 16/10, 2012 at 18:21
6
I would like to build a Hugo site that can be:
password protected (specific pages, not the entire site)
be hosted with a private repo that is free or very low cost
can be edited using a CMS inter...
Lahomalahore asked 24/3, 2018 at 21:47
4
Solved
I'm now on level 7 of Hartl's rails tutorial book and I'm starting to think about my application in deployment. It's an app that allows about 12 social workers to communicate collaboratively and pr...
Hypercorrect asked 16/5, 2012 at 18:24
5
Solved
I need to create a ZIP file in node.js, protected by a password.
I am using "node-zip" module, that unfortunately doesn't support password protection:
var zip = new require('node-zip')();
zip.fil...
Airworthy asked 12/2, 2013 at 9:57
5
To have customer accounts more secure, a well crafted password is good practice. This is my Regular Expression string for password validation.
/^(?=.*[0-9])(?!.*?\d{3})(?=.*[a-zA-Z])(?!.*?[a-zA-Z...
Kindhearted asked 29/9, 2015 at 19:34
10
I have a page I want to password protect.
I've tried doing HTTP authentication, but for some reason it doesn't work on my hosting.
Any other quick (and easy) way to do this?
Durman asked 6/11, 2010 at 23:28
19
Solved
What is the correct way to log out of HTTP authentication protected folder?
There are workarounds that can achieve this, but they are potentially dangerous because they can be buggy or don't work ...
Ellenaellender asked 16/1, 2009 at 7:56
6
Solved
I wrote an automation program which logs in to a website to perform a certain task. The .py file will be given to a number of users but I don't want them to be able to read the code and see the pas...
Workhouse asked 2/7, 2016 at 5:14
3
Solved
I've put together a simple Excel database that performs a few macro functions and I need to distribute this database to a few people - but they cannot see how the macro function actually work...
Festatus asked 26/5, 2013 at 7:36
3
Solved
I know that the "how do I securely store a password?" questions have been asked many times here; and I know the answer is always "Never do this! Store hashes, never store passwords! Use bcrypt!"
B...
Venetis asked 31/8, 2016 at 13:55
6
Solved
I'm having this code to zip files but i need to protect this file with a password
$file = 'backup.sql';
$zipname = $file.'.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);...
Slotnick asked 3/10, 2016 at 14:2
5
I learned about using char[] to store passwords back in the Usenet days in comp.lang.java.*.
Searching Stack Overflow, you can also easily find highly upvoted questions like this:
Why is char[] pre...
Pannikin asked 6/10, 2022 at 4:51
2
Solved
I have been given the assignment of modifying an ASP.NET MVC application in such a way that navigating to myurl?username=xxxxxx automatically logs in user xxxxxx, without asking for a password.
I ...
Airdrie asked 23/1, 2015 at 13:25
3
Swagger - spring fox - hide password.
In one of our API I need to return alphanumeric code after verifying user id and password.
We are using springfox-swagger-ui-2.3.1.I have a field "password"...
Slop asked 14/9, 2017 at 22:25
5
Solved
Does anyone know the syntax for this? I've been looking everywhere and all I can find is C++ code for this. I'm trying to password protect an excel file programatically using the System.IO.Packagin...
Fard asked 27/5, 2009 at 14:25
2
Solved
I have been trying to make the Tensoboard password-protected, but it isn't easy as it is not a Flask app. An issue has been opened last year, but no news since.
Amersfoort asked 5/8, 2018 at 11:38
2
We have our development website password protected with htaccess and htpasswd. We have REST API on our dev website and we are able to bypass the password protection when we are not using any author...
Mcgaw asked 13/2, 2018 at 14:41
6
Solved
Looking to store usernames and passwords in a database, and am wondering what the safest way to do so is. I know I have to use a salt somewhere, but am not sure how to generate it securely or how t...
Interosculate asked 3/4, 2010 at 17:44
2
Solved
Currently, I'm storing my usernames & passwords in a SQL Server CE database.
I would like to use some Windows API in order to securely store my user passwords, so that no other application run...
Seligman asked 16/8, 2015 at 10:42
2
I need to run tests in different environments : DEV, STAGING, PRODUCTION.
And needless to say, the environment variables/secrets for the above environments would obviously be different.
I quick sol...
Vivacity asked 26/5, 2021 at 8:59
3
Solved
I have uploaded my project on GitHub public repo. But one of the files contains my password information. And there are several commits I have made already. How can I hide my password right from the...
Keldah asked 17/2, 2018 at 15:46
1 Next >
© 2022 - 2025 — McMap. All rights reserved.