
Öncelikle ya yan bir domain adresiniz olsun. Yada bir tane sub domain açın.
asıl siteniz film.com ise videoları çekeceğiniz yer farklı bir site olabilir yada video.film.com olabilir. Her neyse onu siz seçin aşağıdakı php kodlarıyla yapmanız gerekenler
pwnd.php dosyasını sub domaine veya farklı bir domaine atın ve bu sitenin adresini olustum.php açarak http://localhost yazan yere yazın.
linkolustur.html ve olustum.php dosyalarını kendi sitenizde ana dizine atın.
linkolustur.html açarak vk iframe kodunu girin size şifrelenmiş iframeyi verecek. Resim: http://prntscr.com/5ohub0
şifrenmiş iframeyide normal vk iframe ekler gibi sitenize ekleyin.
tamamdır.
eğer hala da yapamayan pm atsın kucuk bi ücret ile yaparım. Ama herkesin yapabileceğini düşünüyorum. Sorusu olan yazsın.
linkolustur.html kodları
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<HEAD profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="Content-language" content="TR">
<TITLE>Pawnedb</TITLE>
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAChEjGGecr5xAGUw9STUkBRQ1ibT7dshoBuyEHN4Vl6xyHQLFShQyOBqlYL8fh0PVmot-BAxyjbjRPQ"></script>
<script>
google.load("jquery", "1.7.1");
</script>
<script>
function gonder(a,b,c){
var text_1 = $("#iframekod").val();
//alert(text_1);
if (text_1 != '')
{
jQuery("#aldim").html('Veriler cekiliyor bekleyin...').show();
jQuery.ajax({type:"GET",url:'/olustum.php?encode='+text_1,
success:function(a){
//alert(a);
jQuery("#aldim").html(a).show();
}
})
}
else
{
jQuery("#aldim").html('Kutu boş olmasın lütfen :)').show();
alert('Kutu boş olmasın lütfen :)');
}
}
</script>
</HEAD>
<BODY>
<form action="gonder" method="get" target="_blank" name="cek">
İframe kodu: <br><!--<input type="textarea" name="iframekod" id="iframekod">-->
<textarea rows="8" cols="60" name="iframekod" id="iframekod"></textarea><br>
<a href="#" onclick="gonder();" class="small yellow awesome">Ver</a><br>
</form>
<div id="aldim">
</div>
<!--
<textarea rows="15" cols="100" id="aldim">
</textarea>-->
</BODY>
<HTML>olustum.php kodları<?php
if (isset($_GET['encode']) && isset($_GET['hash']) && isset($_GET['hd'])) {
$a = base64_encode($_GET['encode'].'&id='.$_GET['id'].'&hash='.$_GET['hash'].'&hd='.$_GET['hd']);
$site='http://localhost';
$tamam = '<iframe src="'.$site.'/pwnd.php?a='.$a.'" width="640" height="340" frameborder="0"></iframe>';
echo '
<b></b>
<textarea rows="8" cols="50">'.$tamam.'</textarea>';
//echo $tamam;
}
else
{
echo 'Hata';
}
?>pwnd.php kodları
<?php
if (isset($_GET['a'])) {
$a = base64_decode($_GET['a']);
echo '
<body style="margin:0px 0px 0px 0px;">'.$a.'</body>';
}else
{
echo 'Hata';
}
?>
