This commit is contained in:
Nick Moy 2019-11-03 08:01:29 -06:00 committed by GitHub
commit 88da28a796
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -10,8 +10,8 @@ output = subprocess.check_output('who')
if 'my_username' not in output:
sys.exit()
coffee_machine_ip = '10.10.42.42'
password = '1234'
coffee_machine_ip = 'REPLACE THIS WITH YOUR IP ADDRESS'
password = 'REPLACE THIS WITH YOUR PASSWORD'
password_prompt = 'Password: '
con = telnetlib.Telnet(coffee_machine_ip)

View File

@ -6,8 +6,8 @@ import time
from hackerutils import sh
COFFEE_MACHINE_ADDR = '10.10.42.42'
COFFEE_MACHINE_PASS = '1234'
COFFEE_MACHINE_ADDR = 'REPLACE WITH YOUR IP ADDRESS HERE'
COFFEE_MACHINE_PASS = 'REPLACE WITH YOUR PASSWORD HERE'
COFFEE_MACHINE_PROM = 'Password: '