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.
Tuesday, February 3, 2015
Terabit Virus of Maker 3.1
Basic Tutorial About Javascript Injection
Javascript injection allows you to change websites behavior without refreshing or leaving it. It provides on spot interaction with the source code of website from browser window. Javascript script might come really handy when you are hacking basic websites. Javascript injection allows you to alter the form values before sending it to server.
In Javascript injection, javascript codes are injected from address bar of the browser window. In this tutorial we’ll go through the basics of javascript injection, if you are javascript expert then it might be below your knowledge. However freshers might find it interesting and informative.
To command any javascript code to your browser you must inform it that its javascript. It can be done by adding “Javascript:”(without quotes) just before your code.
Below is the sample code to input in your browser.
Javascript: alert("Welcome to HacksPC.com");
The above code is to be typed in browser address bar similar to image below:
After you complete the code, press enter, you’ll see the something similar to below:
In the code typed above, Javascript: is the protocol which you must type before initiating any javascript code snippet. Alert is just the javascript function that gives alert box on the screen. ; is the end of statement command that you have in every programming language, like C, C++, PHP etc.
To have more clear vision about statement end symbol, refer to following example,
javascript: alert("First message"); alert("second message"); alert("Third message");
It gives three separate windows with three different messages.
The alert() function is only used to get information from the website. For example to get form value, cookies etc.
Javascript:alert(document.cookie);
Above code example shows the cookies that are set in your browser by your current website.
This can be very useful if you are trying to hack basic websites. Cookies are set most in page login systems that might be helpful to get illegal access to the website’s administrator page.
For example in above image, you can see username and password set in cookies section which was revealed with the help of javascript injection.
If the website is not strong enough you can modify the username to administrator’s username and gain full access to the website.
To change the cookie value you can follow the syntax similar to below:
javascript:void(document.cookie="Cookie_name=Cookie_value");
“void” in simple terms applies the function without refreshing the page. Literally, it means that the function won’t return any result.
javascript:void(document.cookie="username=user123"); alert(document.cookie);
The above code will change the cookie value and show the changed value.
You can change any cookie value by applying syntax like above.
To change multiple cookies following pattern will help.
javascript:void(document.cookie="username=user123"); void(document.cookie="password=pass123"); alert(document.cookie);
You can add multiple statements to do multiple tasks at once.
Changing cookie value allows you to confuse the website about your real details like username,log in status, and other dynamic values that are cookied.
Javascript: alert("Welcome to HacksPC.com");
javascript: alert("First message"); alert("second message"); alert("Third message");
javascript:void(document.cookie="Cookie_name=Cookie_value");
javascript:void(document.cookie="username=user123"); alert(document.cookie);
javascript:void(document.cookie="username=user123"); void(document.cookie="password=pass123"); alert(document.cookie);
Cookie Injection Using Greasemonkey and Complete Other Complete Guides by Kitamura Yoshimune
userscripts-mirror.org
To Use The Script:
How The Script Works:
Security Implications Of Cookies
// @exclude https?://gmail.com/* // @exclude https?://mail.google.com/</del> |
External Links:
HTTP Protocol: http://en.wikipedia.org/wiki/HTTP
TCP Protocol: http://en.wikipedia.org/wiki/TCP
Cookies: http://en.wikipedia.org/wiki/HTTP_cookie
Wireshark: http://www.wireshark.org/
Ettercap: http://ettercap.sourceforge.net/
ARP Poisoning: http://en.wikipedia.org/wiki/ARP_spoofing
Ethereal: http://www.ethereal.com/