Facebook dentro de un frame.

Iniciado por A2Corp, 19 Abril 2012, 03:30 AM

0 Miembros y 1 Visitante están viendo este tema.

A2Corp

Buenas forereos, tengo una duda.
Como puedo meter la pagina de facebook en un frame, ya sea x php o html. De la tipica manera "iframe src="http://www.facebook.com/" name="fid1" id="fid1" width="100%" height="100%" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"></iframe>



no me deja, sale en blanco.
Alguna idea?
Hackeo, luego existo...

Graphixx

Nada tiene fin solo hay pequeñas pausas, pausas que determinan el comienzo de otros. Graphixx
Mi blog

Graphixx

Nada tiene fin solo hay pequeñas pausas, pausas que determinan el comienzo de otros. Graphixx
Mi blog

A2Corp

Con google si se puede pero de manera mas compleja, leyendo el source y lo imprimes, algo asi:

<?php
$mi_url
="http://www.google.com";
$fofopen("$mi_url","r") or die ("No se ha encontrado la pagina.");
while (!
feof($fo)) {
$mi_cadena .= fgets($fo4096);
}
fclose ($fo);
print(
"<textarea name='mi_area' cols='100' rows='20'>$mi_cadena</textarea>");
?>


el problema es que facebook no se deja leer hahaha.
Hackeo, luego existo...

A2Corp

Both Google and Facebook make use of the X-Frame-Options HTTP response header in order to prevent their sites from being framed by a site on another domain.

X-Frame-options is only recognized by "newer" browsers. But don't get excited just yet, there are way to prevent frame in those browsers as well. Jeff Atwood (co-founder of Stack Overflow and the Stack Exchange network) has talks about frame busting on his blog.

The reason websites need to prevent framing is that iframes (and frames) allow for a malicious attack known as clickjacking. Clickjacking is:

    a malicious technique of tricking a Web user into clicking on something different to what the user perceives they are clicking on, thus potentially revealing confidential information or taking control of their computer while clicking on seemingly innocuous web pages.
Hackeo, luego existo...