Files
BastilleBSD_bastille/usr/local/bin/bbsd-login
Christer Edwards 1b05271912 Initial toolkit POC
2018-04-06 13:40:48 -06:00

12 lines
168 B
Bash
Executable File

#!/bin/sh
#
# jexec $1 /usr/bin/login -f root
if [ $# -eq 1 ]; then
jexec $1 /usr/bin/login -f root
fi
if [ $# -eq 2 ]; then
jexec $1 /usr/bin/login -f $2
fi