About 333,000 results
Open links in new tab
  1. python - ZipFile: Check for correct Password - Stack Overflow

    Dec 22, 2021 · I have this code to unzip a zip file that is encrypted with a password: import zipfile def main (pswd): file_name = 'somefile.zip' with zipfile.ZipFile (file_name) as file: return file.

  2. Checking Dictionary Key Value from Text File - Stack Overflow

    Dec 28, 2019 · Python beginner here and I'm trying to create a login system (using Python 3). I've created a function to store user's username and password as a dictionary {uname:pswd} in a …

  3. Grab password from a file by searching username and store that …

    Nov 22, 2019 · I have a password file containing different username and associated password for that user $ cat /apps/test_lab/.passwd amon: abc@321 bmon: dgf@869 cmon: ascd@!!@657 …

  4. Retrieving a PFX certificate from Azure Key Vault

    Apr 7, 2023 · I am running the same function with what 'should' be the exact same file, just pulled from Key Vault instead of a local system. So why would the output be different? Does key …

  5. How do I specify a password to 'psql' non-interactively?

    If its not too late to add most of the options in one answer: There are a couple of options: set it in the pgpass file. link set an environment variable and get it from there: export …

  6. keytool : Certificate import gives error message - Keystore was ...

    Apr 30, 2017 · keytool -exportcert -keystore .keystore -alias usera -file usera.crt NOW! I am trying to import this certificate in cacerts in JDK using similar password and following command but …

  7. rar - Batch Password Cracker - Stack Overflow

    Is it possible to make a batch that either Brute forces or tries an password list on a password secured .rar or .zip, and how?

  8. passwords - Validating username/pswd from .txt file in python ...

    Dec 3, 2017 · Validating username/pswd from .txt file in python - unwanted looping Asked 7 years, 2 months ago Modified 7 years, 2 months ago Viewed 1k times

  9. encryption - How to extract the password hash from a password …

    Also note that a file/container protected by a password does not usually contain a hash of the password (like for example a UNIX Shadow file would). Instead it contains data protected by …

  10. apache - Storing a password in a PHP script - Stack Overflow

    Feb 21, 2016 · Say I have a file that contains a single password. It's blocked from Apache to deny access. Then, I create a PHP script that reads this file and does something with the contents …