Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mini-ware/file-locker
Keep your files obfuscated by locking them with XOR encryption
https://github.com/mini-ware/file-locker
cli encryption hacking linux password security shell xor
Last synced: 9 days ago
JSON representation
Keep your files obfuscated by locking them with XOR encryption
- Host: GitHub
- URL: https://github.com/mini-ware/file-locker
- Owner: Mini-Ware
- License: gpl-2.0
- Created: 2021-09-26T04:07:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-02T16:31:39.000Z (over 3 years ago)
- Last Synced: 2023-03-05T22:06:09.715Z (almost 2 years ago)
- Topics: cli, encryption, hacking, linux, password, security, shell, xor
- Language: Shell
- Homepage: https://www.reddit.com/r/bash/comments/pvrjfb/i_made_script_to_lock_files_using_xor_encryption/
- Size: 101 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# File-Locker
Keep your files obfuscated by locking them with XOR encryption
![License](https://img.shields.io/github/license/Mini-Ware/File-Locker)
![Stars](https://img.shields.io/github/stars/Mini-Ware/File-Locker)
![Forks](https://img.shields.io/github/forks/Mini-Ware/File-Locker)
![Contributors](https://img.shields.io/github/contributors/Mini-Ware/File-Locker)
![Issues](https://img.shields.io/github/issues/Mini-Ware/File-Locker)
![Commit](https://img.shields.io/github/last-commit/Mini-Ware/File-Locker)
# What is XOR encryption?
- XOR Encryption algorithm is an easy to implement method of symmetric encryption
- You can read more about it on [Wikipedia](https://en.wikipedia.org/wiki/XOR_cipher)
# How to use?
![](https://github.com/Mini-Ware/File-Locker/blob/main/example.png)
1) Clone this repository
```shell
$ git clone https://github.com/Mini-Ware/File-Locker
```
2) To lock a file, run the following commands
```shell
$ cd File-Locker
$ chmod +x run.sh
$ ./run.sh
```
3) To unlock that file, run the following commands
```shell
$ ./run.sh
```
# Disclaimer
- Methods such as factoring could possibly break XOR encryption
- XOR encryption is NOT the most secure way of encrypting data
- You can read more about it on [Wikipedia](https://en.m.wikibooks.org/wiki/Cryptography/Breaking_Vigen%C3%A8re_cipher)
# Anything else?
- Star this repository if you found it interesting/helpful
- Submit issues for new features/report bugs
- Contribute by making pull requests