mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-04 23:27:18 +00:00
10 lines
175 B
Text
10 lines
175 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
git clone https://github.com/jjyg/ssh_decoder.git
|
||
|
chmod 755 ssh_decoder/ssh_decoder.rb
|
||
|
|
||
|
mkdir bin
|
||
|
cd bin
|
||
|
ln -s ../ssh_decoder/ssh_decoder.rb ssh_decoder
|
||
|
cd ..
|