Exploring Router
Tools and Notes
- maintaining your NIC(network interface card) for mac
- some router backdoor
- some sample
- review on cheap router
WRinTL-WR845Nstands forwide routerwhich indicates broadband
Hacking using aircrack-ng
I tried airmon-ng and got this error Wireless tools not found.
reference
Router ROM
maybe hardware dependent
dd-wrt
popular, commercial use
tomato
many distributions, more hacks required, no commercial use
openwrt
more hardware hacks, expert required
m0n0wall
PfsenseOS can turn your PC into a routervyatta
x86specific
reference
Router OS detection
use nmap to scan open ports and OS detection, and I discover that TP-WR340G+ is using Wind River VxWorks.
# `-O` for OS detection
sudo nmap -O 192.168.1.1
reference
- nmap command examples by cyberciti
- VxWorks vulnerabilities by ics-cert
- VxWorks vulnerabilities by rapid7
Router UPnP
Universal Plug and Play (UPnP) is for automatic discovery of other UPnP devices on the network. It says UPnP can speedup internet speed for bit torrent download.
# install `miniupnpc` package
brew install miniupnpc
# list UPnP redirections
upnpc -l
# add port redirections
upnpc -a 192.168.31.2 22 22 TCP
referece