• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • Solaris
    • Oracle Linux
    • VCS
  • Interview Questions
  • Database
    • oracle
    • oracle 12c
    • ASM
    • mysql
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

fcrackzip Command Examples in Linux

by Deepika

“fcrackzip” is a command-line tool in Linux-based systems that allows a user to crack the password of a ZIP archive file. This means that it can be used to recover the password of a password-protected ZIP file if the user has forgotten the password or if the password is not known.

fcrackzip uses a brute-force method to try different password combinations until it finds the correct one. It can also use a dictionary attack, which is a method of trying all the words in a dictionary as passwords. It also supports incremental mode that allows to specify a charset and a minimal and maximal length for the password.

fcrackzip Command Examples

1. Brute-force a password with a length of 4 to 8 characters, and contains only alphanumeric characters (order matters):

# fcrackzip --brute-force --length 4-8 --charset aA1 archive

2. Brute-force a password in verbose mode with a length of 3 characters that only contains lowercase characters, `$` and `%`:

# fcrackzip -v --brute-force --length 3 --charset a:$% archive

3. Brute-force a password that contains only lowercase and special characters:

# fcrackzip --brute-force --length 4 --charset a! archive

4. Brute-force a password containing only digits, starting from the password `12345`:

# fcrackzip --brute-force --length 5 --charset 1 --init-password 12345 archive

5. Crack a password using a wordlist:

# fcrackzip --use-unzip --dictionary --init-password wordlist archive

6. Benchmark cracking performance:

# fcrackzip --benchmark

Filed Under: Linux

Some more articles you might also be interested in …

  1. How To Change Timezone for Oracle Grid Infrastructure
  2. “su: Authentication failure” – in Docker
  3. What is Anacron and usage of Anacron in Linux
  4. How To Create a Partition Using “parted” Command
  5. CentOS / RHEL 7 : How to remove rescue image using grubby
  6. iSCSI connection command examples (Cheat Sheet)
  7. Understanding /etc/login.defs file
  8. atq Command Examples in Linux
  9. How to resize (extend) a partition-based file system in Linux
  10. dd: command not found

You May Also Like

Primary Sidebar

Recent Posts

  • fprintd-delete Command Examples in Linux
  • fprintd-delete: command not found
  • foreman: command not found
  • foreman Command Examples in Linux

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright