Fixing dependency; upkeep
This commit is contained in:
parent
e505628407
commit
8c3919fefa
@ -247,9 +247,9 @@ namespace AniNIX.Crypto {
|
|||||||
case "regex":
|
case "regex":
|
||||||
try {
|
try {
|
||||||
if (line.Length == 3) {
|
if (line.Length == 3) {
|
||||||
Console.Write(ExecuteCommand.Run(String.Format("bash /usr/local/src/CryptoWorkbench/regex-lookup.bash \"{0}\" \"{1}\"",line[1].Replace("\\","\\\\").Replace("$","\\$"),line[2].Replace("\\","\\\\").Replace("$","\\$"))));
|
Console.Write(ExecuteCommand.Run(String.Format("bash /opt/aninix/CryptoWorkbench/regex-lookup.bash \"{0}\" \"{1}\"",line[1].Replace("\\","\\\\").Replace("$","\\$"),line[2].Replace("\\","\\\\").Replace("$","\\$"))));
|
||||||
} else if (line.Length == 2) {
|
} else if (line.Length == 2) {
|
||||||
Console.Write(ExecuteCommand.Run(String.Format("bash /usr/local/src/CryptoWorkbench/regex-lookup.bash \"{0}\"",line[1].Replace("\\","\\\\").Replace("$","\\$"))));
|
Console.Write(ExecuteCommand.Run(String.Format("bash /opt/aninix/CryptoWorkbench/regex-lookup.bash \"{0}\"",line[1].Replace("\\","\\\\").Replace("$","\\$"))));
|
||||||
Console.WriteLine();
|
Console.WriteLine();
|
||||||
} else {
|
} else {
|
||||||
Console.Error.WriteLine("Need at least one search term.");
|
Console.Error.WriteLine("Need at least one search term.");
|
||||||
|
43
Makefile
43
Makefile
@ -1,27 +1,32 @@
|
|||||||
|
execDir=/usr/local/bin
|
||||||
|
optDir=/opt/aninix/CryptoWorkbench
|
||||||
|
|
||||||
compile: /usr/bin/mcs CryptoWorkbench.csharp /opt/aninix/Uniglot/
|
compile: /usr/bin/mcs CryptoWorkbench.csharp /opt/aninix/Uniglot/
|
||||||
/usr/bin/mcs -out:cryptoworkbench.exe /opt/aninix/Uniglot/CSharp/*.csharp *.csharp 2>&1
|
/usr/bin/mcs -out:shell.exe /opt/aninix/Uniglot/CSharp/*.csharp *.csharp 2>&1
|
||||||
|
|
||||||
test: /usr/bin/mono compile
|
test: /usr/bin/mono compile
|
||||||
# TODO This needs to be a pytest battery across the input.
|
# TODO This needs to be a pytest battery across the input.
|
||||||
echo quit | /usr/bin/mono cryptoworkbench.exe ./sample.txt
|
echo quit | /usr/bin/mono shell.exe ./sample.txt
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
for i in `cat .gitignore`; do rm -Rf $$i; done
|
for i in `cat .gitignore`; do rm -Rf $$i; done
|
||||||
|
|
||||||
install: compile /bin/bash bash.cryptoworkbench
|
install: compile /bin/bash cryptoworkbench captivecrypto
|
||||||
mkdir -p ${pkgdir}/opt ${pkgdir}/usr/local/bin/
|
mkdir -p ${pkgdir}${optDir}
|
||||||
mv cryptoworkbench.exe ${pkgdir}/opt
|
mkdir -p ${pkgdir}${execDir}
|
||||||
cp bash.cryptoworkbench ${pkgdir}/usr/local/bin/cryptoworkbench
|
install -m 555 -o 0 -g 0 shell.exe ${pkgdir}${optDir}
|
||||||
cp captivecrypto.bash ${pkgdir}/usr/local/bin/captivecrypto
|
install -m 555 -o 0 -g 0 regex-lookup.bash ${pkgdir}${optDir}
|
||||||
make checkperm
|
install -m 755 -o 0 -g 0 cryptoworkbench ${pkgdir}${execDir}
|
||||||
|
install -m 755 -o 0 -g 0 captivecrypto ${pkgdir}${execDir}
|
||||||
|
|
||||||
checkperm:
|
checkperm:
|
||||||
chmod 0555 ${pkgdir}/opt/cryptoworkbench.exe ${pkgdir}/usr/local/bin/cryptoworkbench ${pkgdir}/usr/local/bin/captivecrypto
|
chmod 0555 ${pkgdir}${optDir}shell.exe
|
||||||
chown root:root ${pkgdir}/usr/local/bin/captivecrypto ${pkgdir}/opt/cryptoworkbench.exe
|
chmod 0755 ${pkgdir}${execDir}cryptoworkbench ${pkgdir}${execDir}captivecrypto
|
||||||
|
chown root:root ${pkgdir}${execDir}cryptoworkbench ${pkgdir}${execDir}captivecrypto ${pkgdir}${optDir}shell.exe
|
||||||
|
|
||||||
sshuser: install ForceCommand.txt pwgen
|
sshuser: install ForceCommand.txt pwgen /usr/sbin/ssh /usr/sbin/sshd
|
||||||
grep captivecrypto /etc/shells || echo '/usr/local/bin/captivecrypto' /etc/shells
|
grep captivecrypto /etc/shells || echo '${execDir}captivecrypto' /etc/shells
|
||||||
if ! id crypto &>/dev/null; then useradd -k -d /home/crypto -s /usr/local/bin/captivecrypto crypto; fi
|
if ! id crypto &>/dev/null; then useradd -k -d /home/crypto -s ${execDir}captivecrypto crypto; fi
|
||||||
echo "crypto:$(pwgen 24 1)" | chpasswd;
|
echo "crypto:$(pwgen 24 1)" | chpasswd;
|
||||||
cat ./ForceCommand.txt >> /etc/ssh/sshd_config
|
cat ./ForceCommand.txt >> /etc/ssh/sshd_config
|
||||||
echo crypto | passwd --stdin crypto
|
echo crypto | passwd --stdin crypto
|
||||||
@ -32,10 +37,10 @@ tmux: /usr/bin/tmux
|
|||||||
echo "bind-key -T prefix x new-window cryptoworkbench" >> /etc/tmux.conf
|
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
|
echo 'bind-key -T prefix X confirm-before -p "kill-pane #P? (y/n)" kill-pane' >> /etc/tmux.conf
|
||||||
|
|
||||||
diff: captivecrypto.bash
|
diff: ${execDir}captivecrypto ${execDir}cryptoworkbench
|
||||||
diff captivecrypto.bash /usr/local/bin/captivecrypto
|
diff ./captivecrypto ${execDir}captivecrypto
|
||||||
diff ./bash.cryptoworkbench /usr/local/bin/cryptoworkbench
|
diff ./cryptoworkbench ${execDir}cryptoworkbench
|
||||||
|
|
||||||
reverse:
|
reverse: ${execDir}captivecrypto ${execDir}cryptoworkbench
|
||||||
cat /usr/local/bin/captivecrypto > ./captivecrypto.bash
|
cat ${execDir}captivecrypto > ./captivecrypto
|
||||||
cat /usr/local/bin/cryptoworkbench > ./bash.cryptoworkbench
|
cat ${execDir}cryptoworkbench > ./cryptoworkbench
|
||||||
|
6
PKGBUILD
6
PKGBUILD
@ -1,8 +1,8 @@
|
|||||||
# Maintainer: Shikoba Kage <darkfeather@aninix.net>
|
# Maintainer: Shikoba Kage <darkfeather@aninix.net>
|
||||||
pkgname=cryptoworkbench
|
pkgname=cryptoworkbench
|
||||||
pkgver=0.1.c1ed369
|
pkgver=0.2.4b6f343
|
||||||
pkgver() {
|
pkgver() {
|
||||||
printf "0.1.""$(git rev-parse --short HEAD)"
|
printf "0.2.""$(git rev-parse --short HEAD)"
|
||||||
}
|
}
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
epoch=
|
epoch=
|
||||||
@ -11,7 +11,7 @@ arch=("x86_64")
|
|||||||
url="https://aninix.net/foundation/CryptoWorkbench"
|
url="https://aninix.net/foundation/CryptoWorkbench"
|
||||||
license=('custom')
|
license=('custom')
|
||||||
groups=()
|
groups=()
|
||||||
depends=('mono>=5.0.0' 'curl' 'grep' 'bash>=4.4' 'git>=2.13' 'uniglot')
|
depends=('mono>=5.0.0' 'curl' 'grep' 'bash>=4.4' 'git>=2.13' 'Uniglot')
|
||||||
makedepends=('make>=4.2')
|
makedepends=('make>=4.2')
|
||||||
checkdepends=()
|
checkdepends=()
|
||||||
optdepends=()
|
optdepends=()
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
if [ "$1" != "" ]; then
|
|
||||||
time mono /opt/cryptoworkbench.exe "$1";
|
|
||||||
else
|
|
||||||
time mono /opt/cryptoworkbench.exe
|
|
||||||
fi
|
|
||||||
read
|
|
9
captivecrypto
Normal file
9
captivecrypto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ $(pgrep -afc CryptoWorkbench) -gt 10 ]; then
|
||||||
|
echo All slots used -- you\'ll have to wait.
|
||||||
|
sleep 5
|
||||||
|
exit;
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec bash -c "time mono /opt/aninix/CryptoWorkbench/shell.exe --blind; read"
|
@ -1,9 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ $(pgrep -afc cryptoworkbench.exe) -gt 10 ]; then
|
|
||||||
echo All slots used -- you\'ll have to wait.
|
|
||||||
sleep 5
|
|
||||||
exit;
|
|
||||||
fi
|
|
||||||
|
|
||||||
exec bash -c "time mono /opt/cryptoworkbench.exe --blind; read"
|
|
7
cryptoworkbench
Normal file
7
cryptoworkbench
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
if [ -n "$1" ]; then
|
||||||
|
time mono /opt/aninix/CryptoWorkbench/shell.exe "$1";
|
||||||
|
else
|
||||||
|
time mono /opt/aninix/CryptoWorkbench/shell.exe;
|
||||||
|
fi
|
||||||
|
read
|
Loading…
Reference in New Issue
Block a user