summaryrefslogtreecommitdiff
path: root/EndoForge/src
diff options
context:
space:
mode:
Diffstat (limited to 'EndoForge/src')
-rwxr-xr-xEndoForge/src/AuthorizedKeysCommand15
-rw-r--r--EndoForge/src/anonymous-access.conf10
2 files changed, 0 insertions, 25 deletions
diff --git a/EndoForge/src/AuthorizedKeysCommand b/EndoForge/src/AuthorizedKeysCommand
deleted file mode 100755
index 6e13063..0000000
--- a/EndoForge/src/AuthorizedKeysCommand
+++ /dev/null
@@ -1,15 +0,0 @@
1#!/bin/sh
2username=$1
3userhome=$2
4fingerprint=$3
5authline="$4 $5"
6
7case "$userhome" in
8 *'"'*) exit ;;
9esac
10
11usercommand=$userhome/.ssh/AnonymousAccessCommand
12
13[ -x "$usercommand" ] || exit
14
15printf 'command="%s",no-port-forwarding %s\n' "$usercommand $fingerprint" "$authline"
diff --git a/EndoForge/src/anonymous-access.conf b/EndoForge/src/anonymous-access.conf
deleted file mode 100644
index 5cd6b6a..0000000
--- a/EndoForge/src/anonymous-access.conf
+++ /dev/null
@@ -1,10 +0,0 @@
1ExposeAuthInfo=yes
2AuthorizedKeysCommandUser=root
3AuthorizedKeysCommand=/etc/ssh/AuthorizedKeysCommand %u %h %f "%t %k"
4
5# %u The username.
6# %h The home directory of the user.
7# %f The fingerprint of the key or certificate.
8# %t The key or certificate type.
9# %k The base64-encoded key or certificate for authentication.
10