Update BeEFStarter

This commit is contained in:
Francesco Grotti
2017-02-19 18:01:55 +01:00
committed by GitHub
parent cfd3c4a50b
commit 966b75aeee

View File

@@ -1,4 +1,10 @@
#!/bin/bash
DATE=$(date)
echo $DATE
LOG_FILE=$PWD/beef.log
exec > >(tee -a ${LOG_FILE} )
exec 2> >(tee -a ${LOG_FILE} >&2)
echo $DATE > $PWD/beef.log
echo "[*]Starting the BeEF Framework and Panel..."
echo "[*]Go to http://10.0.0.1:3000/ui/panel for control BeEF"
echo "[*]More infos will appear right now..."