Automated Mini Hacking Station (the Cheapest)
by step2paradox in Circuits > Microcontrollers
5968 Views, 32 Favorites, 0 Comments
Automated Mini Hacking Station (the Cheapest)
welcome to my project
this project is a mini hacking station you can use it for do uncountable thing
test your wifi network security
observe your office when you are out
and you can connect to this machine with your mobile and control it any where
...
How Can You Use This Project
I maked a very short video to show you how can you use this project
but before watching it if you want to make this project for distrub other people please press : CTRL+W
you don't ? ok let's start
Requirements
-orange pi lite (or any board like that) https://goo.gl/DyUf6I
-Sdcard c10 16GB or above https://goo.gl/3PFwBE
-Wifi adapter support monitoring (TL-WN722N)
-Computer with linux system (my suggest debian or ubuntu)
-Powerbank with output : 5v 2A (it can be 2.1 or 2.5 A)
-And sure orange pi usb power cable https://goo.gl/QCRRdR
Setup the System
I explain every thing on the video for make it easy to understood
- You can find the system image here: armbian.org
https://goo.gl/Tnmgg5
code used in the video:
- Sudo fdisk -l
_ sudo dd bs=1M if=SYSTEM_IMAGE.img of=/dev/sd*
Now We Will Configure the Wifi Network :
configure any linux network with terminal
CODES:
Nano SDCARD_PATH/etc/network/interfaces
Delete everything in this file and write :
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface FIRST inet dhcp
iface SECOND inet dhcp
And save it and quite
- nano SDCARD_PATH/etc/wpa_supplicant/wpa_supplicant.conf
Delete everything in this file and write :
network={ ssid="SCHOOLS NETWORK NAME"
psk="SCHOOLS PASSWORD"
id_str="FIRST"}
network={ ssid="HOME NETWORK NAME"
psk="HOME PASSWORD"
id_str="SECOND"}
But of course you must change the information in this code with your wifi network information After that save and quite
- ssh root@THE_IP_YOU_FIND_IN_THE_LAST_STEP
and also you can control the board with your phone with any ssh client
If you need to use vnc server to control the board take a look at that
https://learn.adafruit.com/adafruit-raspberry-pi-l...
Step 2 Paradox
Install the Wifi Adapter Driver and Configure the Shutdown Button
install drivers and configure the button in orange pi lite
CODES:
- sudo apt-get update && sudo apt-get install firmware-atheros - sudo apt-get update
- sudo apt-get install acpid
- sudo /etc/init.d/acpid restart
- nano /etc/acpi/events/button_power
- event=button/power action=/sbin/shutdown -h now
- sudo /etc/init.d/acpid restart
Install Kali Linux Tools on the System
install kali linux tools to any linux system
- sudo su
- git clone https://github.com/LionSec/katoolin.git && cp katoolin/katoolin.py /usr/bin/katoolin
- chmod +x /usr/bin/katoolin - sudo katoolin
Source :https://github.com/LionSec/katoolin
Almost DONE!
Now you will choose tools according to your goal
if you need that for wifi take a look at
https://github.com/entropy1337/infernal-twin
you can install that in this board and start use it
if you find that useful please vote for me
if you have any question just write a comment and i will try to help you
did you have best ideas please share it with us ..
GOOD LUCK !!!!