Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/fucking_coffee.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
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)
Expand Down
4 changes: 2 additions & 2 deletions python3/fucking_coffee.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

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: '


Expand Down