Categories: Kali Linux

Secret Keeper : Python Script To Encrypt & Decrypt Files With A Given Key

Secret Keeper is a file encryptor written in python which encrypt your files using Advanced Encryption Standard (AES). CBC Mode is used when creating the AES cipher wherein each block is chained to the previous block in the stream.

Also ReadXSS Fuzzer : Tool Which Generates XSS Payloads Based On User-Defined Vectors & Fuzzing Lists

Secret Keeper Features

  1. Secret Keeper has the ability to generate a random encryption key base on the user input.
  2. Secret Keeper can successfully encrypt and decrypt .txt and .docx file types.

How to Install and Run in Linux?

  • Enter the following command in the terminal to download it.

git clone https://github.com/Sameera-Madhushan/Secret-Keeper

  • After downloading the program, enter the following command to navigate to the Digger directory and listing the contents

cd Secret-Keeper && ls

  • Install dependencies

pip3 install -r requirements.txt

  • Now run the script with following command.

python3 Secret-Keeper.py

How to Install and Run in Windows

  • Download and run Python 2.7.x and Python 3.7 setup file from Python.org
    • In Install Python 3.7, enable Add Python 3.6 to PATH
  • Download and run Git setup file from Git-scm.com, choose Use Git from Windows Command Propmt.
  • Afther that, Run Command Propmt and enter these commands:
git clone https://github.com/Sameera-Madhushan/Secret-Keeper
cd Secret-Keeper
pip3 install -r requirements.txt
python3 Secret-Keeper.py

You can follow us on LinkedinTwitterFacebook for daily Cybersecurity updates also you can take the Best Cybersecurity courses online to keep your self-updated.

R K

Recent Posts

Bomber : Navigating Security Vulnerabilities In SBOMs

bomber is an application that scans SBOMs for security vulnerabilities. So you've asked a vendor…

12 hours ago

EmbedPayloadInPng : A Guide To Embedding And Extracting Encrypted Payloads In PNG Files

Embed a payload within a PNG file by splitting the payload across multiple IDAT sections.…

12 hours ago

Exploit Street – Navigating The New Terrain Of Windows LPEs

Exploit-Street, where we dive into the ever-evolving world of cybersecurity with a focus on Local…

3 days ago

ShadowDumper – Advanced Techniques For LSASS Memory Extraction

Shadow Dumper is a powerful tool used to dump LSASS (Local Security Authority Subsystem Service)…

3 days ago

Shadow-rs : Harnessing Rust’s Power For Kernel-Level Security Research

shadow-rs is a Windows kernel rootkit written in Rust, demonstrating advanced techniques for kernel manipulation…

2 weeks ago

ExecutePeFromPngViaLNK – Advanced Execution Of Embedded PE Files via PNG And LNK

Extract and execute a PE embedded within a PNG file using an LNK file. The…

3 weeks ago