Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Find default passwords for certain network devices' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Find default passwords for certain network devices
Authored by: mark hunte on May 23, '07 09:41:53AM
An Applescript version.


display dialog "Enter Device name" default answer "" buttons {"Cancel", "Go"} default button 2
copy the result as list to {text_returned, button_pressed}
if button_pressed is "Go" then
	set The_shell to do shell script ¬
		"curl -s http://www.phenoelit.de/dpl/dpl.html |grep -i " & quoted form of text_returned ¬
		& " | sed \"s/<[^>]*>/ /g\"| open -f"
else
	return
end if

---
mh

[ Reply to This | # ]