Live Ddos View
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.
About Us
Apakau, Inc. - based in Sunnyvale, CA - provides a service that helps enterprises around the globe achieve maximum performance and availability of their web and mobile applications. By ensuring ultra low latency of dynamic application data and APIs, Apakau eliminates delays that users - all over the world - experience on enterprise applications, on desktop as well as mobile devices.
Contact Us
info@apakau.com
+1 (415) 462-4934
415 Oakmead Pkwy
Sunnyvale, CA 94085
Copyright © 2014 Apakau, Inc. All rights reserved.
Friday, June 19, 2015
XSS Tutorial
It is basically the injection of html code.
there are 2 types of xss or cross site scripting
1. Reflected - Injecting into a dynamic variable for example a search box. Usually used for cookie stealing
2. Stored - Injecting into a variable that will be displayed every time the page is displayed. Usually Used For Defacing
In reflection they will have to click your link to see the html code you injected for example :
http://vulnerable.site/vuln.php?search=<script>alert("XSS")</script>
Obviously they would not find that without you sending it.
Stored would stay on the pages for example injecting your html into a comment box on comment.php then you're code is displayed everytime comment.php is loaded so it will be seen more often as it is persistent in the source until a system admin manual removed the html in your comment
2. Reflected
step 1. Find a searchbox http://gyazo.com/772cf38b6d9c111fd3a12d904416f8b1
step 2. Put ur html in teh searchbox http://gyazo.com/a454ba4ccc0b01de51574bb975f891ea
step 3. search and watch http://gyazo.com/2a1ea9905dd2a569a02da635a113520c
3. Stored
No comments:
Post a Comment