Live Ddos View

Live DDoS Attack Map | Apakau

Live DDoS Attack Map

This map is the fruit of collaboration between Google Ideas and Arbor Networks in an effort to raise awareness about distributed denial of service attacks in the world everyday.

Exploring the Data

The Digital Attack Map displays global DDoS activity on any given day. Attacks are displayed as dotted lines, scaled to size, and placed according to the source and destination countries of the attack traffic when known. Some features include:

  • Use the histogram at the bottom of the map to explore historical data.
  • Select a country to view DDoS activity to or from that country.
  • Use the color option to view attacks by class, duration, or source/destination port.
  • Use the news section to find online reports of attack activity from a specified time.
  • View the gallery to explore some examples of days with notable DDoS attacks.

Sign Up

Sunday, August 30, 2015

Create Socks Proxy Through SSH Tunnel in Kali Linux

Log in to using the following command ssh

Code: [Select]
ssh -D 8099 root@192.168.1.56
Setup ProxyChains configuration

Code: [Select]
nano /etc/proxychains.conf
Add the following line
socks4 127.0.0.1 8099

Now you can use proxychains. Examples:

Code: [Select]
proxychains rdesktop 192.168.56.5
Code: [Select]
proxychains msfconsole

~Phr3ak