Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed out the password and ip address to the coffee machine #182

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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