Merge 18a72c0475 into 5c59766b50
This commit is contained in:
commit
88da28a796
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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: '
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue