Fix Responderconf function
parent
ed5a49100c
commit
7d4be6e25f
|
@ -203,7 +203,7 @@ The log files can be saved to SSHFS or tmp.\n" 16 60 3\
|
||||||
esac
|
esac
|
||||||
configure
|
configure
|
||||||
;;
|
;;
|
||||||
$DIALOG_CANCEL)
|
$DIALOG_CANCEL)
|
||||||
configure;;
|
configure;;
|
||||||
$DIALOG_ESC)
|
$DIALOG_ESC)
|
||||||
configure;;
|
configure;;
|
||||||
|
@ -243,7 +243,7 @@ Responder can target the Host machine (The computer the LAN Turtle is plugged in
|
||||||
esac
|
esac
|
||||||
configure
|
configure
|
||||||
;;
|
;;
|
||||||
$DIALOG_CANCEL)
|
$DIALOG_CANCEL)
|
||||||
configure;;
|
configure;;
|
||||||
$DIALOG_ESC)
|
$DIALOG_ESC)
|
||||||
configure;;
|
configure;;
|
||||||
|
@ -317,9 +317,9 @@ mode
|
||||||
|
|
||||||
function responderconf {
|
function responderconf {
|
||||||
dialog \
|
dialog \
|
||||||
|
--help-button \
|
||||||
--title "Editing: /etc/turtle/Responder/Responder.conf" \
|
--title "Editing: /etc/turtle/Responder/Responder.conf" \
|
||||||
--editbox /etc/turtle/Responder/Responder.conf 18 72\
|
--editbox /etc/turtle/Responder/Responder.conf 18 72\
|
||||||
--help-button \
|
|
||||||
2>$CONF
|
2>$CONF
|
||||||
return=$?
|
return=$?
|
||||||
case $return in
|
case $return in
|
||||||
|
@ -327,9 +327,22 @@ dialog \
|
||||||
cat $CONF | {
|
cat $CONF | {
|
||||||
cat $CONF > /etc/turtle/Responder/Responder.conf
|
cat $CONF > /etc/turtle/Responder/Responder.conf
|
||||||
rm $CONF
|
rm $CONF
|
||||||
|
configure
|
||||||
};;
|
};;
|
||||||
esac
|
$DIALOG_HELP)
|
||||||
configure
|
dialog --title "Help" \
|
||||||
|
--msgbox "For information on this configuration, see: https://github.com/SpiderLabs/Responder" 20 60
|
||||||
|
responderconf
|
||||||
|
;;
|
||||||
|
$DIALOG_CANCEL)
|
||||||
|
rm $CONF
|
||||||
|
configure
|
||||||
|
;;
|
||||||
|
$DIALOG_ESC)
|
||||||
|
rm $CONF
|
||||||
|
configure
|
||||||
|
;;
|
||||||
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
function configure {
|
function configure {
|
||||||
|
|
Loading…
Reference in New Issue