The simple things to give you more information about a system.
read http://marc.info/?l=bugtraq&m=110809126916608&w=2
just some info from javascript.
Javascript web hacks.
javascript:alert(document.lastModified) – shows the date a web pages was modified.
javascript:var%20c=0; – Not sure crashes a running javascript. This injects a value of 0 into the variable “c”.
javascript:alert(c=0) – Same set the variable “c” to 0.
This URL will display an alert dialog with the contents of the HTTP cookie for the current site: This URL will display an alert dialog with the contents of the HTTP cookie for the current site:
javascript:alert(document.cookie) Show the active cookie.
javascript:alert(”Hello world.”)
Search on goole for rapidshare stuff
+inurl:avi|mpg|wmv site:rapidshare.com Pattern
Beat the long Rapidshare wait.
www.elitehackers.info/forums/archive/index.php/t-2766.html
Javascript to turn off the ability to right click on a page.
<S C R I P T LANGUAGE=”Java Script”>
<!–
//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com
var message=”Sorry, right-click has been disabled”;
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function(”return false”)
// –>
</S C R I P T>
Then there is the hack to disable this javascript.
Type in the URL
javascript:void(document.oncontextmenu=null)
