Showing posts with label metasploitable. Show all posts
Showing posts with label metasploitable. Show all posts

Wednesday, September 18, 2019

Setting up a Damn Vulnerable Raspberry Pi Server

https://null-byte.wonderhowto.com/how-to/set-up-practice-computer-kill-raspberry-pi-0177320/

https://www.youtube.com/watch?v=fKOX4InkaGc
https://www.youtube.com/watch?v=B0MQqyBe1_g

Dowload from here:
https://whitedome.com.au/re4son/download/sticky-fingers-dv-pi-3/

and unzip the img file using 7-zip

Use win disk imager to copy to microsd card. I am using 16GB sd card.

Create a new file called ssh in /boot

Create this file in /boot :

[wpa_supplicant.conf]

network={
  ssid="NETWORK_NAME"
  psk="NETWORK_PASSWORD"
  key_mgmt=WPA-PSK
}

Eject and insert into rpi0 and boot.

Scan your network for ip address with zenmap.
Either look for port 22 open, or, dv-p3 name.

Then ssh to it with putty, ssh pi@192.168.1.48,  passwd: raspberry

If you are using rndis (direct usb connection with bonjour), then :
ssh dv-pi3.local using putty

Then:

dv-pi status # Show status of vulnerable applications
dv-pi start # Start vulnerable applications
dv-pi stop # Stop vulnerable applications

Hacking rpi0:
`````````````````
https://www.youtube.com/watch?v=p5QwtYYeZZY [ basic msfconsole and msfvenom ]
https://shaneoneill.io/2018/11/17/hacking-your-own-raspberry-pi-part-2-wordpress-exploits/