├── robco-industries ├── img │ ├── bg.png │ ├── bg-off.png │ ├── monitorborder.png │ └── monitorborder-off.png ├── sound │ ├── k1.ogg │ ├── k2.ogg │ ├── k3.ogg │ ├── k4.ogg │ ├── k5.ogg │ ├── k6.ogg │ ├── k7.ogg │ ├── k8.ogg │ ├── k9.ogg │ ├── k10.ogg │ ├── kenter.ogg │ ├── passbad.ogg │ ├── poweron.ogg │ ├── passgood.ogg │ └── poweroff.ogg ├── ajax │ ├── wordlist.php │ └── wordlist.txt ├── css │ └── terminal.css └── js │ ├── terminal.js │ └── jquery.min.js ├── README.md └── index.html /robco-industries/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/img/bg.png -------------------------------------------------------------------------------- /robco-industries/sound/k1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/k1.ogg -------------------------------------------------------------------------------- /robco-industries/sound/k2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/k2.ogg -------------------------------------------------------------------------------- /robco-industries/sound/k3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/k3.ogg -------------------------------------------------------------------------------- /robco-industries/sound/k4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/k4.ogg -------------------------------------------------------------------------------- /robco-industries/sound/k5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/k5.ogg -------------------------------------------------------------------------------- /robco-industries/sound/k6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/k6.ogg -------------------------------------------------------------------------------- /robco-industries/sound/k7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/k7.ogg -------------------------------------------------------------------------------- /robco-industries/sound/k8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/k8.ogg -------------------------------------------------------------------------------- /robco-industries/sound/k9.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/k9.ogg -------------------------------------------------------------------------------- /robco-industries/img/bg-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/img/bg-off.png -------------------------------------------------------------------------------- /robco-industries/sound/k10.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/k10.ogg -------------------------------------------------------------------------------- /robco-industries/sound/kenter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/kenter.ogg -------------------------------------------------------------------------------- /robco-industries/sound/passbad.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/passbad.ogg -------------------------------------------------------------------------------- /robco-industries/sound/poweron.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/poweron.ogg -------------------------------------------------------------------------------- /robco-industries/sound/passgood.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/passgood.ogg -------------------------------------------------------------------------------- /robco-industries/sound/poweroff.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/sound/poweroff.ogg -------------------------------------------------------------------------------- /robco-industries/img/monitorborder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/img/monitorborder.png -------------------------------------------------------------------------------- /robco-industries/img/monitorborder-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/Fallout.Terminal-Hacking/HEAD/robco-industries/img/monitorborder-off.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Fallout Terminal-Hacking-Game 2 | 3 | This was made with CSS/JS to reflect the great terminal-hacking-minigame that can be found all over the Fallout-Universe. 4 | View it in action [here](https://breakout.bernis-hideout.de). 5 | -------------------------------------------------------------------------------- /robco-industries/ajax/wordlist.php: -------------------------------------------------------------------------------- 1 | 2 | $words = @file_get_contents('wordlist.txt'); 3 | 4 | if ($words === FALSE || !isset($_GET['length']) || !isset($_GET['count'])) { 5 | echo "{}"; 6 | exit(); 7 | } 8 | 9 | if (!is_numeric($_GET['count']) || !is_numeric($_GET['length'])) { 10 | echo "{}"; 11 | exit(); 12 | } 13 | 14 | $words = explode(" ", $words); 15 | $retwords="{\"words\":[";$i=0;$index=0;$wordlen=0;$length = $_GET['length'];$count = $_GET['count'];$failsafe=0; 16 | do { 17 | $index = rand(0,count($words)); 18 | $wordlen = strlen($words[$index]); 19 | if ($wordlen == $length) { 20 | $retwords .= "\"".strtolower($words[$index]."\","); 21 | $i++; 22 | } else { 23 | $failsafe++; 24 | } 25 | if ($failsafe > 1000) $i = $failsafe; 26 | } while ($i < $count); 27 | 28 | $retwords = substr($retwords,0,strlen($retwords)-1) . "]}"; 29 | echo $retwords; 30 | ?> -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
11 |