Direkt zum Hauptbereich

Posts

Es werden Posts vom April, 2017 angezeigt.

Kill Internet using ettercap

Hey there, a friend annoyed me, because he used almost all of the bandwidth on my internet. So I couldn't watch any YouTube video. I thought I could kill his internet connection with my laptop. In this contribution I want to tell you how I've done. All you need: a computer running Linux ( Kali Linux in my case) with the tool  ettercap . Firstly you have to open a terminal and type 'ettercap --help'. There shall be a help menu. Ettercap is a tool, which is focused on   Man-in-the-middle-attacks . We must generate an "etterfilter". Go to your favourite text editor. Enter: drop(); kill(); After that, save it as "kill" or something like that. Now type 'etterfilter kill -o kill.ef'. Replace 'kill' with your name of the script. Etterfilter will compile your scipt now. Finally we can attack our target! Type 'ettercap -T -q -p -F kill.ef -M arp:remote /<your target IP>// /<your gateway//'. In older ettercap versions, ...

YouTube Night Mode

I just found out how to enable the night mode on YouTube, so I thought I could show you how to. First you have to go on YouTube . Open the console in your webbrowser ('ctrl + shift + i' on Google Chrome) and enter the following command: ######################################## var cookieDate = new Date(); cookieDate.setFullYear(cookieDate.getFullYear( ) + 1); document.cookie="VISITOR_INFO1_LIVE=fPQ4jCL6EiE; expires=" + cookieDate.toGMTString( ) + "; path=/"; ######################################## Hit enter and refresh the website with 'ctrl + r' or 'F5'. Now you can see the new design on YouTube. Click on your profile picture and enable the night mode. To remove the new design, enter the same command but replace the '1' with a '0'. Have fun!

Jam an AP with wifijam

Hello my visitors, I want to show you, how to kick people from an WiFi access point with my tool WifiJam. First you have to download my script here . Then copy the script to your computer. Make it executable with 'chmod +x wifijam.sh' and run it with './wifijam.sh'. Now you can see the help. There are 3 attack options. On this post we are going to use the second one. This tutorial requires the aircrack suite ! Scan you area with airodump-ng. Copy the bssid and remember the channel! Now type './wifijam.sh -b <your bssid> -c <your channel> -i <your interface> -m 2' The script attacks now your target access point. Every device that is connected to the access point, will be deauthenticated . Have fun and do not make a fool!