├── LinuxCmdLine - AnalystsAndOperators.pdf ├── README.md ├── Zero To Linux.pdf └── setup ├── Answers-AnalystsAndOperators.txt ├── Answers-Bonus.txt ├── Answers-ZeroToLinux.txt ├── BUILDERS ├── 00initialize.sh ├── 01phrase_that_pays.sh ├── 02PictureDir.sh ├── 03History.sh ├── 04evil.sh ├── 05sshsticky.sh ├── 06mandb.sh ├── 07logdir.sh └── include │ ├── evil.sh │ ├── histories │ ├── bash-history-lab │ ├── bash-history-root │ └── insert-history │ ├── images │ ├── daemon.jpg │ ├── puffy.gif │ ├── text.txt │ └── tux.png │ ├── objects │ ├── access_log-champlain │ ├── access_log-hudak │ ├── audit.log │ ├── bash_history │ ├── error_log-hudak │ ├── host_ip_info │ ├── hudak-unalloc-strings.gz │ ├── hudak-unalloc.gz │ ├── ip_addrs │ ├── maillog-oneline.csv │ ├── maillog.csv │ ├── make-suspicious.sh │ ├── names │ ├── numbered_lines │ ├── passwd │ ├── psscan-output │ └── shadow │ └── phrase_that_pays ├── Exercises-AnalystsAndOperators.txt ├── Exercises-Bonus.txt ├── Exercises-ZeroToLinux.txt └── install.sh /LinuxCmdLine - AnalystsAndOperators.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/LinuxCmdLine - AnalystsAndOperators.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/README.md -------------------------------------------------------------------------------- /Zero To Linux.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/Zero To Linux.pdf -------------------------------------------------------------------------------- /setup/Answers-AnalystsAndOperators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/Answers-AnalystsAndOperators.txt -------------------------------------------------------------------------------- /setup/Answers-Bonus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/Answers-Bonus.txt -------------------------------------------------------------------------------- /setup/Answers-ZeroToLinux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/Answers-ZeroToLinux.txt -------------------------------------------------------------------------------- /setup/BUILDERS/00initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/00initialize.sh -------------------------------------------------------------------------------- /setup/BUILDERS/01phrase_that_pays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/01phrase_that_pays.sh -------------------------------------------------------------------------------- /setup/BUILDERS/02PictureDir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/02PictureDir.sh -------------------------------------------------------------------------------- /setup/BUILDERS/03History.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/03History.sh -------------------------------------------------------------------------------- /setup/BUILDERS/04evil.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/04evil.sh -------------------------------------------------------------------------------- /setup/BUILDERS/05sshsticky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/05sshsticky.sh -------------------------------------------------------------------------------- /setup/BUILDERS/06mandb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo mandb 4 | -------------------------------------------------------------------------------- /setup/BUILDERS/07logdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/07logdir.sh -------------------------------------------------------------------------------- /setup/BUILDERS/include/evil.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/evil.sh -------------------------------------------------------------------------------- /setup/BUILDERS/include/histories/bash-history-lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/histories/bash-history-lab -------------------------------------------------------------------------------- /setup/BUILDERS/include/histories/bash-history-root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/histories/bash-history-root -------------------------------------------------------------------------------- /setup/BUILDERS/include/histories/insert-history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/histories/insert-history -------------------------------------------------------------------------------- /setup/BUILDERS/include/images/daemon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/images/daemon.jpg -------------------------------------------------------------------------------- /setup/BUILDERS/include/images/puffy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/images/puffy.gif -------------------------------------------------------------------------------- /setup/BUILDERS/include/images/text.txt: -------------------------------------------------------------------------------- 1 | this is not an image file 2 | -------------------------------------------------------------------------------- /setup/BUILDERS/include/images/tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/images/tux.png -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/access_log-champlain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/access_log-champlain -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/access_log-hudak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/access_log-hudak -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/audit.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/audit.log -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/bash_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/bash_history -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/error_log-hudak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/error_log-hudak -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/host_ip_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/host_ip_info -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/hudak-unalloc-strings.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/hudak-unalloc-strings.gz -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/hudak-unalloc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/hudak-unalloc.gz -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/ip_addrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/ip_addrs -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/maillog-oneline.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/maillog-oneline.csv -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/maillog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/maillog.csv -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/make-suspicious.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/make-suspicious.sh -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/names -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/numbered_lines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/numbered_lines -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/passwd -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/psscan-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/psscan-output -------------------------------------------------------------------------------- /setup/BUILDERS/include/objects/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/objects/shadow -------------------------------------------------------------------------------- /setup/BUILDERS/include/phrase_that_pays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/BUILDERS/include/phrase_that_pays -------------------------------------------------------------------------------- /setup/Exercises-AnalystsAndOperators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/Exercises-AnalystsAndOperators.txt -------------------------------------------------------------------------------- /setup/Exercises-Bonus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/Exercises-Bonus.txt -------------------------------------------------------------------------------- /setup/Exercises-ZeroToLinux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/Exercises-ZeroToLinux.txt -------------------------------------------------------------------------------- /setup/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halpomeranz/LinuxCmdLine/HEAD/setup/install.sh --------------------------------------------------------------------------------