CLI-программы, которые показывают «хакероподобный» вывод терминала

17577
Nils Werner

Возможно, странный запрос, но я ищу терминальные программы для Linux, которые постоянно выдают случайный, но «важный» текст, так же, как это делают в голливудских фильмах.

Вы знаете, как, ping www.google.deно быстрее и, возможно, более «случайным», с более широким разнообразием линий показано.

8
Другая идея: случайно выбрать man-страницу и пролистать ее, а затем выбрать другую. Nils Werner 10 лет назад 1
Просто откройте сложную программу Windows с вином, которая будет выплевывать тонны загадочных сообщений :) Gene 10 лет назад 1
не по теме, IMO, но [хакер Typer] (http://hackertyper.com/) и веб-браузер на всю страницу должны сделать свое дело Journeyman Geek 10 лет назад 2
Я помню, что был скрипт, использующий `screen` или` tmux` (не могу вспомнить, какой именно). Он открывал некоторые панели и запускал в них `nmap`,` ping`, `ps`,` top` и другие вещи, затем закрывал некоторые из открытых панелей и снова открывал новые, и так далее. К сожалению, я не могу найти его сейчас и не могу вспомнить его название .. MarSoft 6 лет назад 0

3 ответа на вопрос

5
Ash King

The tool to do that trick is cmatrix. As far as I know, cmatrix is included in the repository of most Linux distros so installing it is a piece of cake. If you use Ubuntu or any other similar distro, just run this command to install cmatrix:

sudo apt-get install cmatrix

In Arch Linux, the installing command will be:

sudo pacman -S cmatrix

After you get cmatrix installed, to know what it looks like, just open the terminal and run the cmatrix command and the matrix will start running on your terminal. To stop the matrix, just hit the "q" key.

Rather than the default green + black you can also change it to blue and black, IMO it looks a lot smarter.

Command: cmatrix -BC blue

Source + info: http://www.asty.org/cmatrix/

Идея изящная, но похоже, что она взята из Матрицы, а не как «какой-то важный компьютерный вывод, связанный со взломом». Nils Werner 10 лет назад 0
@NilsWerner зачем изобретать велосипед? открыть несколько терминалов, несколько цветов, один жирный и разные в центре и т. д. Lorenzo Von Matterhorn 10 лет назад 1
5
Levans

You can prepare a list of "important looking output command" and have then run at random.

For example, create a file commands containing one command per line :

ping -c 4 www.google.fr lspci lsmod ifconfig dmesg | tail -n 15 

You can add the displaying of parts of logs, depending of your distribution (on my gentoo I may had tail -n 15 /var/log/emerge.log, etc...).

Then just have them run at random non stop by launching something like :

while true; do sh -c "$(shuf -n 1 /path/to/file/commands)"; sleep 0.5; done 

Depending what command you put in the command list, you might need to run it from a root shell.

4
ash

In one of The Girl With The Dragon Tattoo movies (I think the Swedish one) during a "hacker scene" Lisbeth had a terminal open on her Mac and it looked like it was just the output of ls -R on a Linux system (maybe they used ssh to make it go slower) (and yes, I mean Linux, because I don't think Mac OS X has aspell libraries).

Personally, I would try the output of compiling something from source, preferably something with some dependencies. You can probably use your package management system for this, but I don't know what distro you're using. I used to run a Gentoo system and even though compiling something like OpenOffice.org (as we used then) or Firefox from source took a long time, I still get a warm hacker-feeling from watching something compile.

Something else you might try is the console output from an IRC client. Not the chat rooms themselves but the output from the server with all the archaic control messages and the MOTD's and such. Especially if the feeling you're going for is hacker communications and not just hacker computer program output.

If you want to be super-authentic (à la The Matrix Reloaded, I'd suggest downloading Kali Linux and set up a box to hack into, or at least use nmap and some SQL database, but pretty much anything done on the command line looks l33t to the masses.

Смотрите http://nmap.org/movies/, он использовался в обоих фильмах, на которые вы ссылались. mr.spuratic 10 лет назад 2
+1 для nmap. Для того, что хочет ОП, это очевидный путь. Вы можете скачать его бесплатно с insecure.org. gnometorule 10 лет назад 0
Я знаю, что это старый, но убедитесь, что вы измените любые IP-адреса, которые могут быть там, на невозможные (т.е. сделайте, чтобы одна из четырех частей IPv4 превышала 255). Это позволит: 1) предотвратить любые претензии со стороны реальных владельцев IP-адресов, и 2) показать внимательным техническим специалистам, что вы знаете, что делаете, активно аннулируя IP-адреса (умные по достоинству оценят проблемы безопасности, глупые). сделают себя дураками, если не поймут и не закричат: «Ха, они даже не знают, как выглядит IP-адрес». (Это вариант IPv4 для 555 в телефонных номерах :)) SadBunny 7 лет назад 0

Похожие вопросы