No More Secrets is a command line tool called nms that recreates the famous data decryption effect seen on screen in the 1992 hacker movie Sneakers.
Also included in this project is a program called sneakers
that recreates what we see in the above movie clip. Note that this program requires the user to select one of the menu options before it terminates.
Install in FreeBSD using pkg
# Search for package
pkg search -f nms
# Install package
pkg install nms
Code language: PHP (php)
Install using github
git clone https://github.com/bartobri/no-more-secrets.git
cd ./no-more-secrets
make nms
make sneakers ## Optional
sudo make install
Code language: PHP (php)
Install with Ncurses Support
If your terminal does not support ANSI/VT100 escape sequences, the effect may not render properly. This project provides a ncurses implementation for such cases. You will need the ncurses library installed.
git clone https://github.com/bartobri/no-more-secrets.git
cd ./no-more-secrets
make nms-ncurses
make sneakers-ncurses ## Optional
sudo make install
Code language: PHP (php)
Usage
ls -l | nms
ls -l | nms -a // Set auto-decrypt flag
ls -l | nms -s // Set flag to mask space characters
ls -l | nms -f green // Set foreground color to green
ls -l | nms -c // Clear screen
nms -v // Display version
Code language: JavaScript (javascript)