|
Tuesday, 28. August 2012 | Week 35 |
|
|
|
.: Stripe CTF 2.0

|
|
11:23 | Networking | Permalink |
|
|
Sunday, 5. August 2012 | Week 31 |
|
|
|
.: icanhazip.com clone with nginx
Thanks to the ngx_echo module, it is trivially easy to build a clone of the icanhazip.com service with nginx:
server {
listen 80;
listen [::]:80;
location / {
echo $remote_addr;
}
}
|
|
23:58 | Linux | Permalink |
|
.: How to get a Rootshell on a Cisco WAP121
The Cisco WAP121 runs a Linux based firmware. This is how you get a Rootshell on it:
- Login to the Web GUI of the WAP121 and enable the SSH management access
- Login with SSH and enter this command:
sh
This probably works with the Cisco WAP321 as well (I only tested with the WAP121).
Also when having still only the one 'cisco' user account configured you can directly get a Rootshell via SSH like this: ssh -l root@<WAP121 IP>
|
|
20:02 | Networking | Permalink |
|