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: 6 months 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 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-02T16:31:39.000Z (over 4 years ago)
- Last Synced: 2025-03-28T00:44:02.986Z (about 1 year 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






# 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?

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