no-more-secrets

A command line tool that recreates the famous data decryption effect seen in the 1992 movie Sneakers.

Github星跟踪图

Version

No More Secrets

This project provides a command line tool called nms that recreates the
famous data decryption effect seen on screen in the 1992 hacker movie Sneakers.
For reference, you can see this effect at 0:35 in this movie clip.

This command works on piped data. Pipe any ASCII or UTF-8 text to nms,
and it will apply the Hollywood effect, initially showing encrypted data,
then starting a decryption sequence to reveal the original plain-text characters.

Screenshot

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.

Screenshot

By default, this project has no dependencies, but it does rely on ANSI/VT100
terminal escape sequences to recreate the effect. Most modern terminal
programs support these sequences so this should not be an issue for most
users. If yours does not, this project also provides a ncurses implementation
which supports non-ANSI terminals, but at the expense of losing the inline
functionality (ncurses will always clear the screen prior to displaying output).

Table of Contents

  1. Download and Install
  2. Usage
  3. The NMS Library
  4. License
  5. Tips

Download and Install

More and more Unix/Linux platforms are including this project in their
package manager. You may wish to search your package manager to see if it
is an installation option. If you install form a package manager, please
check that you have the latest version (nms -v). If not, I suggest
installing from source by following the instructions below.

To install this project from source, you will need to have the tools git,
gcc, and make to download and build it. Install them from your package
manager if they are not already installed.

Once you have the necessary tools installed, follow these instructions:

Install:

$ git clone https://github.com/bartobri/no-more-secrets.git
$ cd ./no-more-secrets
$ make nms
$ make sneakers             ## Optional
$ sudo make install

Uninstall:

$ sudo make uninstall

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. Install this
library from your package manager
. Next, follow these instructions:

$ git clone https://github.com/bartobri/no-more-secrets.git
$ cd ./no-more-secrets
$ make nms-ncurses
$ make sneakers-ncurses     ## Optional
$ sudo make install

Usage

nms works on piped data. Pipe any ASCII or UTF-8 characters to it and
enjoy the magic. In the below examples, I use a simple directory listing.

$ 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

Note that by default, after the initial encrypted characters are displayed,
nms will wait for the user to press a key before initiating the decryption
sequence. This is how the it is depicted in the movie.

Command Line Options

-a

Set the auto-decrypt flag. This will automatically start the
decryption sequence without requiring a key press.

-s

Set a flag to mask space characters. This will only mask single blank space
characters. Other space characters such as tabs and newlines will not be masked.

-f <color>

Set the foreground color of the decrypted text to the color
specified. Valid options are white, yellow, black, magenta, blue, green,
or red. This is blue by default.

-c

Clear the screen prior to printing any output. Specifically,
it saves the state of the terminal (all current output), and restores it
once the effect is completed. Note that when using this option, nms requires
the user to press a key before restoring the terminal.

-v

Display version info.

The NMS Library

For those who would like to use this effect in their own projects, I have
created a C library that provides simple interface and can easily be used
for any program that runs from the command line.

See LibNMS for more info.

License

This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License. See LICENSE for
more details.

Tips

Tips are always appreciated!

主要指标

概览
名称与所有者bartobri/no-more-secrets
主编程语言C
编程语言C (语言数: 3)
平台
许可证GNU General Public License v3.0
所有者活动
创建于2016-04-04 20:41:05
推送于2024-11-05 02:04:47
最后一次提交2024-11-04 21:04:37
发布数9
最新版本名称v1.0.1 (发布于 )
第一版名称v0.1.0 (发布于 2016-04-30 17:31:39)
用户参与
星数7.6k
关注者数126
派生数297
提交数271
已启用问题?
问题数50
打开的问题数2
拉请求数22
打开的拉请求数0
关闭的拉请求数18
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?