2019-05-01 16:39:45 -05:00
|
|
|
compile: /usr/bin/mcs CryptoWorkbench.csharp /opt/aninix/Uniglot/
|
|
|
|
/usr/bin/mcs -out:cryptoworkbench.exe /opt/aninix/Uniglot/CSharp/*.csharp *.csharp 2>&1
|
2016-08-04 12:10:50 -05:00
|
|
|
|
|
|
|
test: /usr/bin/mono compile
|
2019-05-01 16:39:45 -05:00
|
|
|
# TODO This needs to be a pytest battery across the input.
|
2017-07-06 12:10:56 -05:00
|
|
|
echo quit | /usr/bin/mono cryptoworkbench.exe ./sample.txt
|
2016-08-04 12:10:50 -05:00
|
|
|
|
|
|
|
clean:
|
2019-05-01 16:39:45 -05:00
|
|
|
for i in `cat .gitignore`; do rm -Rf $$i; done
|
2016-08-04 12:10:50 -05:00
|
|
|
|
|
|
|
install: compile /bin/bash bash.cryptoworkbench
|
2019-05-01 16:39:45 -05:00
|
|
|
mkdir -p ${pkgdir}/opt ${pkgdir}/usr/local/bin/
|
2017-07-06 12:10:56 -05:00
|
|
|
mv cryptoworkbench.exe ${pkgdir}/opt
|
|
|
|
cp bash.cryptoworkbench ${pkgdir}/usr/local/bin/cryptoworkbench
|
|
|
|
cp captivecrypto.bash ${pkgdir}/usr/local/bin/captivecrypto
|
2017-06-19 13:16:59 -05:00
|
|
|
make checkperm
|
2016-08-04 12:10:50 -05:00
|
|
|
|
2017-06-19 13:16:59 -05:00
|
|
|
checkperm:
|
2017-07-06 12:10:56 -05:00
|
|
|
chmod 0555 ${pkgdir}/opt/cryptoworkbench.exe ${pkgdir}/usr/local/bin/cryptoworkbench ${pkgdir}/usr/local/bin/captivecrypto
|
|
|
|
chown root:root ${pkgdir}/usr/local/bin/captivecrypto ${pkgdir}/opt/cryptoworkbench.exe
|
2016-08-04 12:10:50 -05:00
|
|
|
|
2019-05-01 16:39:45 -05:00
|
|
|
sshuser: install ForceCommand.txt pwgen
|
2016-08-04 12:10:50 -05:00
|
|
|
grep captivecrypto /etc/shells || echo '/usr/local/bin/captivecrypto' /etc/shells
|
2019-05-01 16:39:45 -05:00
|
|
|
if ! id crypto &>/dev/null; then useradd -k -d /home/crypto -s /usr/local/bin/captivecrypto crypto; fi
|
|
|
|
echo "crypto:$(pwgen 24 1)" | chpasswd;
|
2016-08-04 12:10:50 -05:00
|
|
|
cat ./ForceCommand.txt >> /etc/ssh/sshd_config
|
|
|
|
echo crypto | passwd --stdin crypto
|
|
|
|
|
|
|
|
tmux: /usr/bin/tmux
|
|
|
|
@echo Making sure cryptoworkbench setting isn\'t already in /etc/tmux.conf...
|
2017-07-06 12:10:56 -05:00
|
|
|
[ `grep -c "cryptoworkbench" /etc/tmux.conf` -eq 0 ]
|
2016-08-04 12:10:50 -05:00
|
|
|
echo "bind-key -T prefix x new-window cryptoworkbench" >> /etc/tmux.conf
|
|
|
|
echo 'bind-key -T prefix X confirm-before -p "kill-pane #P? (y/n)" kill-pane' >> /etc/tmux.conf
|
2017-06-19 13:16:59 -05:00
|
|
|
|
|
|
|
diff: captivecrypto.bash
|
|
|
|
diff captivecrypto.bash /usr/local/bin/captivecrypto
|
|
|
|
diff ./bash.cryptoworkbench /usr/local/bin/cryptoworkbench
|
|
|
|
|
|
|
|
reverse:
|
|
|
|
cat /usr/local/bin/captivecrypto > ./captivecrypto.bash
|
|
|
|
cat /usr/local/bin/cryptoworkbench > ./bash.cryptoworkbench
|