From bbd3dadb8a22209aee3a3cdf0bda9386186223ee Mon Sep 17 00:00:00 2001 From: Noah Date: Fri, 9 Feb 2018 11:52:54 -0500 Subject: [PATCH] Fix README typo The README has `bcap` as the set api username _and_ password. In the examples that follow, the username is set as `bpcap`. I changed this. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9b9ccbca..039df671 100644 --- a/README.md +++ b/README.md @@ -221,7 +221,7 @@ api.rest on Get information about the current session: - curl -k --user bpcap:bcap https://bettercap-ip:8083/api/session + curl -k --user bcap:bcap https://bettercap-ip:8083/api/session Execute a command in the current interactive session: @@ -229,11 +229,11 @@ Execute a command in the current interactive session: Get last 50 events: - curl -k --user bpcap:bcap https://bettercap-ip:8083/api/events?n=50 + curl -k --user bcap:bcap https://bettercap-ip:8083/api/events?n=50 Clear events: - curl -k --user bpcap:bcap -X DELETE https://bettercap-ip:8083/api/events + curl -k --user bcap:bcap -X DELETE https://bettercap-ip:8083/api/events