Tuesday, September 27, 2016

Stealing creds from a locked PC using a Hak5 LAN Turtle

Interesting hack explained on Youtube by Hak5:


Stealing creds from a locked PC using a Hak5 LAN Turtle, plus Mubix joins us! This time on Hak5!

The original article can be found at this website::
https://room362.com/ – Mubix’s Site

More links:
https://hashcat.net/hashcat/ – Hashcat
https://crack.sh/ – Crack.sh
https://youtu.be/Vsc-SA0g5Fo – Hak5’s PWM with an Arduino and a Rainbow LED Board

Source:
https://www.hak5.org/episodes/season-21/snagging-creds-from-locked-machines-with-a-lan-turtle-hak5-2104

Sunday, September 25, 2016

Kali on a Raspberry Pi - Part 3 - Connect to wifi from command line in Kali Linux and update Kali.


Because the command-line is the only available option to use, I needed to know how to connect to a
Wi-Fi network on the command-line. I found this article:

https://www.blackmoreops.com/2014/09/18/connect-to-wifi-network-from-command-line-in-linux/

Before I could start with this tutorial, I connected an additional USB Wi-Fi dongle to the Raspberry Pi and used it to connect to my private Wi-Fi.

After I had a working internet connection, I started on the command-line the update process of Kali to get the latest version:

apt-get update
apt-get dist-upgrade
reboot

This takes a while, so be patient. :-)

Next >>



Tuesday, September 6, 2016

Kali on a Raspberry Pi - Part 2 - Enable management with WiFi.

First I had to connected a power adapter, keyboard, mouse and display to the Raspberry Pi.

The next step was to connect my internet router to the Raspberry Pi with an UTP cable.

I used this tutorial to create an access-point on the Raspberry Pi 3:

USING YOUR NEW RASPBERRY PI 3 AS A WIFI ACCESS POINT WITH HOSTAPD
https://frillip.com/using-your-raspberry-pi-3-as-a-wifi-access-point-with-hostapd/

Of course you can choose you own SSID settings and WPA key.

When you are ready, you can check the connection with you laptop, PC or other mobile device.

If you can connect to the wireless network, then you can disconnect al the input and output devices.

Now you can use a SSH client to connect to the Raspberry Pi.

I used Putty for this task: http://www.putty.org/

Next >>


Monday, September 5, 2016

Kali on a Raspberry Pi - Part 1 -The start of my project.

After testing Kali on my laptop with Oracle VM VirtualBox, I decided to test Kali on a Raspberry Pi. After checking the various models, I decided to buy the Raspberry Pi 3. The fastest model with Wifi. 

The next step was to start on this page:
http://docs.kali.org/kali-on-arm/install-kali-linux-arm-raspberry-pi

After I downloaded the image, I used this program to write the image to the micro SD memorycard:

https://sourceforge.net/projects/win32diskimager/

The next step was:

Changing the SSH host keys can be accomplished by doing the following:

root@kali:~ rm /etc/ssh/ssh_host_*
root@kali:~ dpkg-reconfigure openssh-server
root@kali:~ service ssh restart

The next step was to create a management connection to the Raspberry Pi without the need for a monitor and keyboard. Read about it in my next post.

Next >>