Hace mucho que dejé de reportar problemas de seguridad a facebook y yahoo por lo mismo. No vale la pena.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
ahora todas las paginas que tengan un hash "noback" no se podran volver atrás 
$(document).ready(function(){
if(document.location.hash.substr(1) == 'noback'){
/* Hack que previene el uso del botón volver atrás del historial ========= */
window.onhashchange = function(){
if (document.location.hash.length < 5)
history.go(1);
};
/* Push 10 History */
document.location = document.location.href.split('#')[0] + "#"
for(i = 0; i < 4; i++)
document.location += "!";
/* ======================================================================= */
}
});
y ajustó los 10 historiales en ves de 11 contando el historial cero.
$(document).ready(function(){
/* Hack que previene el uso del botón volver atrás del historial ========= */
window.onhashchange = function(){
if (document.location.hash.length < 10)
history.go(1);
};
/* Push 10 History */
document.location = document.location.href.split('#')[0] + "#"
for(i = 0; i < 10; i++)
document.location += "@";
/* ======================================================================= */
});previene = function(){ history.go(1); };
window.back = previene();previene = function(){ window.stop(); history.go(1); };
window.back = previene();
<body onunload="history(1)">$(windows).unload = function(){ window.stop(); history(1); return false; };http://pagina.com/#500
http://pagina.com/#501
http://pagina.com/#502
...$(document).ready(function(){
window.onhashchange = function(){
if (typeof (window.stop) != 'undefined')
window.stop();
if (typeof (document.execCommand) != 'undefined')
document.execCommand('Stop');
if (document.location.hash.length < 10)
history.go(1);
};
/* Push 10 History */
document.location += "#";
for(i = 0; i < 10; i++)
document.location += "@";
});
y lo genial es que funciona con cualquier navegador, espero que a alguien mas le sirva porque es un tema muy muy discutido en todos lados y ninguno de los que he visto ha sabido dar una solución como se debe.