elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.


 


  Mostrar Mensajes
Páginas: [1] 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ... 27
1  Foros Generales / Dudas Generales / ¿Que es?¿Como funciona Click'n'Load 2 Jdownloader en PHP & AES?Te Explico en: 23 Mayo 2013, 22:48
¿Que es?

Click and Load ? en español significa Haga clic y Carga







Mediante “Click and Load”, JDownloader “decodificará” el archivo para colocarlos en la lista de descarga automáticamente, sin necesidad de copiar los links uno por uno


¿ Como funciona Click'n'Load 2 Jdowloader?

  Click'N'Load - JDownloader.org que ha de servir de seguro , queria mostrales como es , de que se trata , como funciona , como es el procedimiento  ? ya que en internet no hay mucha informacion documentacion yo te explico el funcionamiento interno que puedes implementar en tu pagina web como wordpress /Vbulletin/ Smf/ mybb . :P

primero se instalan Mipony ò JDownloader cual les guste mejor.


Mipony - Gestor de descargas


JDownloader.org - Official Homepage

de ahi los va reconocer automatico los enlaces con este truco

primero vamos a ver la parte de como funciona los cifrados

AES
Citar


jk: AES clave como javascript funktion. la función f siempre tiene que devolver la llave correcta.
cifrada: El Crypted URL del texto. Vea la sección PHP para detalles de cifrado.



Este es lo importante que hace todo el trabajo de convertidor cifrarlo encriptador links en AES , quiero aclarar que los enlaces del ejemplo estan caidos rotos son imaginarios

esto es por asi decirlo el convertidor

Ejemplo

esto es la funcion de comose realisa Internamente en php  :)

Codigo php muy importante para que funcione.

<?php

Código:
function base16Encode($arg){
    $ret="";
    for($i=0;$i<strlen($arg);$i++){
        $tmp=ord(substr($arg,$i,1));    
        $ret.=dechex($tmp);    
}
    return $ret;
}

$key="1234567890987654";
$transmitKey=base16Encode($key);
$link="http://www.mediafire.com/?xxxx1/jDownloader.dmgrnhttp://www.mediafire.com/?xxxx2/jDownloader2.dmg";
$cp = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', 'cbc', '');
@mcrypt_generic_init($cp, $key,$key);
$enc = mcrypt_generic($cp, $link);    
mcrypt_generic_deinit($cp);    
mcrypt_module_close($cp);
$crypted=base64_encode($enc);
      
echo $crypted;

?>

el truco es copiar  y pegar en  en esta pagina php online muy buena por cierto.

aqui

Test run php code online, right here - WriteCodeOnline.com/PHP

luego clic en el boton Run Code

y magicamente   ! esta cifrado en AES esto ya no lo detecta ningun navegador o gestor de descarga no lo reconoce ni el FBI  ^^   :D ..

rx5GFbIvZGJVEYNHIg9bOfRWl8FAb09sLqQggXd1Pda6FhgcBGEKu+w7eM0oz8Thl60UFxtqgoMmFA8zqINxyCAPAHGvMCsaZaXs8G8aPOP6HRktniE8Ur3y3NMZp0L1nJJz9bokFRq3gHp6VTQv4Q==

 

luego aqui el html

Código:
<html>
<FORM ACTION="http://127.0.0.1:9666/flash/addcrypted2" target="hidden" METHOD="POST">
   <INPUT TYPE="hidden" NAME="passwords" VALUE="myPassword">  
   <INPUT TYPE="hidden" NAME="source" VALUE="http://jdownloader.org/spielwiese">  
   <INPUT TYPE="hidden" NAME="jk" VALUE="function f(){ return '31323334353637383930393837363534';}">
   <INPUT TYPE="hidden" NAME="crypted" VALUE="rx5GFbIvZGJVEYNHIg9bOfRWl8FAb09sLqQggXd1Pda6FhgcBGEKu+w7eM0oz8Thl60UFxtqgoMmFA8zqINxyCAPAHGvMCsaZaXs8G8aPOP6HRktniE8Ur3y3NMZp0L1nJJz9bokFRq3gHp6VTQv4Q==">
   <INPUT TYPE="SUBMIT" NAME="submit" VALUE="Add Link to JDownloader">
</FORM>

note se que puse lo cifrado en AES supuestamente estan los 2 enlaces , lo prove aqui

Probar código HTML. Herramientas webmaster :: LaWebera.es

y me lanza en MiPony listo para descargar los 2 enlaces de descarga pero ojo en el codigo fuente no se ve los enlaces de descarga, solo se puede visualisar letras osea esta "camuflado "    



rx5GFbIvZGJVEYNHIg9bOfRWl8FAb09sLqQggXd1Pda6FhgcBGEKu+w7eM0oz8Thl60UFxtqgoMmFA8zqINxyCAPAHGvMCsaZaXs8G8aPOP6HRktniE8Ur3y3NMZp0L1nJJz9bokFRq3gHp6VTQv4Q==






  

y de yapa la funcion convertidor en base 64

ejemplo :

Man = TWFu

Código:
<html>  
<head>  
    <script type="text/javascript">  
        function b64(){  
            var key = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 /='.split('');
            var e = document.getElementById('str');  
            var a = document.getElementById('res');  
            var str = e.value; var r = new Array(); var s = new Array();  
            for(i=0,x='';i<str.length;i  ){  
                if(str.charCodeAt(i).toString(2).length!=8) x = '0';  
                r.push(x str.charCodeAt(i).toString(2));  
            }  
            r = r.join('');  
            for(c=0,k=0;c<(Math.ceil(r.length/6));c  ){  
                k = parseInt(r.substr(c*6,6),2);  
                //alert(k);  
                if(isNaN(k)){  
                    s.push(key[64]);  
                } else {  
                    s.push(key[k]);  
                }  
            }  
            a.innerHTML = s.join('');  
        }  
    </script>  
</head>  
<body>  
<p>Man = TWFu</p>  
<p>  
    <input type="text" id="str" value="Man" />  
    <input type="button" onclick="b64()" value="convertir a b64" />  
</p>  
<p id="res"></p>  
</body>  
</html>


base64
Citar

fuente:

JDownloader.org - Official Homepage

[Solved] I need help for encrypting with click n load 2 - JD Community

Espero Ayude.

Saludos.
2  Programación / Desarrollo Web / ¿Creen que se pueda clonar Tinychat ,Justin.tv , facebook ,taringa en uno solo? en: 23 Mayo 2013, 22:23
¿Creen  que se pueda clonar Tinychat ,Justin.tv , facebook ,taringa en uno solo script?

3  Programación / PHP / clon de cuevana en: 16 Mayo 2013, 08:58
bueno navegando por la red encontre esta duda y bueno l


por lo que puede leer esta infectado codigo malicioso que falta limpiar y tiene problemas de registro :-\

la demo es igual: http://www.lightmovies.com.ar/



bueno me parecio interesante no lo puedo negar el script de cuevana    :xD

derrepente pueden fixearlo  ;-)

fuente : http://www.marcofbb.com.ar/foro/scripts-prefabricados/(ayuda)script-cuevana!/
4  Programación / PHP / Re: alguien sabe como se hace este script ? en: 12 Mayo 2013, 19:15
Esta hecho con jquery y jqueryui (el estilo del boton css). Te das cuenta por que agrega las librerias.
Código
  1. <link rel="stylesheet" type="text/css" href="http://foro-vip.com//css/jquery-ui.css?1341301048"/> /* Archivo CSS para JqueryUI - Le da estilo al boton y popup de errores dentro de la pagina */
  2. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  3. /* Libreria Jquery */
  4. <script type="text/javascript" src="http://foro-vip.com//js/jquery-ui-1.8.23.custom.min.js"></script>
  5. /* Libreria JqueryUI */
  6.  

Luego tenes..
Código
  1. <script type="text/javascript" src="http://foro-vip.com//js/aes.js"></script> /* Utilizado para cifrar, descifrar, generar keys, etc, creo que no es utilizado ? */
  2. <script type="text/javascript" src="http://foro-vip.com//js/acciones2.js"></script>  /* La mayoria son funciones para el foro vbulletin, pero al final encontramos lo que queremos. */
  3.  

acciones2.js
Código
  1. var redirector_url = 'http://identi.li/u.php?u=';
  2.  
  3. function linkify(text) {
  4.    if (text) {
  5.        text = text.replace(/((https?\:\/\/)|(www\.))(\S+)(\w{2,4})(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/gi, function (url) {
  6.            var full_url = url;
  7.            if (!full_url.match('^https?:\/\/')) {
  8.                full_url = 'http://' + full_url;
  9.            }
  10.            fullurl = $.trim(full_url);
  11.            url = $.trim(url);
  12.            return '<a target="_blank" rel="nofollow" href="' + redirector_url + full_url + '">' + url + '</a><br/>';
  13.        });
  14.    }
  15.    return text;
  16. }
  17. var timerinterval = 0;
  18. var t_spoiler = 10;
  19. var frame_change = 0;
  20. cdown = {
  21.    spl: {},
  22.    time: 5,
  23.    load: function () {
  24.        var obj = $('.contador');
  25.        var txt = '';
  26.        if (t_spoiler <= this.time && t_spoiler > 0) t_spoiler = t_spoiler - 1;
  27.        if (t_spoiler == this.time) txt = 'Click en Publicidad';
  28.        else if (t_spoiler == 0) txt = 'Click aqu&iacute; para continuar';
  29.        else if (t_spoiler < this.time) txt = 'Espere ' + t_spoiler + ' seg. ';
  30.        obj.html(txt);
  31.        if (t_spoiler <= 0) {
  32.            clearInterval(timer_interval);
  33.            $('#my-dialog').dialog('close');
  34.            _decrypt.open();
  35.        }
  36.    },
  37.    frame: function () {
  38.        frame_change++;
  39.        t_spoiler = this.time
  40.        cdown_start();
  41.    }
  42. }
  43. cdown_start = function () {
  44.    if (frame_change > 1) {
  45.        frame_change = 0;
  46.        timer_interval = setInterval("cdown.load()", 1000);
  47.    }
  48. }
  49. var _open_ads = function () {
  50.    var obj = $('#my-dialog');
  51.    var frame = '<iframe onload="cdown.frame()" id="frame_publi" width="600" height="300" src="http://wwww.identi.li/popup.php"></iframe>';
  52.    dialog_conf.width = 700;
  53.    obj.dialog({
  54.        title: 'Click en la publicidad &raquo; Esperar ' + cdown.time + ' seg'
  55.    });
  56.    obj.html(frame), obj.dialog(dialog_conf);
  57.    obj.dialog("option", "buttons", [{
  58.        text: 'Click en Publicidad',
  59.        "class": 'ui-button-negative contador floatR'
  60.    }]);
  61.    obj.dialog("open");
  62.    $('.ui-dialog-titlebar-close').remove();
  63.    $('frame_publi').live(function () {
  64.        $('a').attr('target', '_self');
  65.    })
  66.    $('.ui-dialog, #frame_publi,.ui-widget-overlay').bind("contextmenu", function (e) {
  67.        return false;
  68.    });
  69. }
  70. var _decrypt = {
  71.    hash: {},
  72.    objeto: {},
  73.    links: function () {
  74.        $('div #decrypt').click(function () {
  75.            if (!$(this).hasClass('block')) {
  76.                _decrypt.objeto = $(this);
  77.                if (global.pauth != 1 && $.cookie('ads_accepted') == null) ventanaSecundaria();
  78.                else _decrypt.open();
  79.            }
  80.        });
  81.    },
  82.    open: function () {
  83.        var elem = this.objeto.parent().find('#hide'),
  84.            content = elem.html();
  85.        this.objeto.addClass('ui-button-positive');
  86.        this.objeto.unbind();
  87.        elem.html(content).slideDown();
  88.    }
  89. }
  90. $(document).on('ready', function () {
  91.    $('.post_body a, .comment-content a').attr('target', '_blank');
  92.    _decrypt.links();
  93. });
  94.  
  95. function getRandom(variablea, variableb) {
  96.    return Math["floor"](Math["random"]() * (variableb - variablea + 1)) + variablea;
  97. };
  98. var pconfig = {
  99.    time: getRandom(12, 16)
  100. };
  101. var t_spoiler = pconfig["time"];
  102. var hija = null;
  103. var timer = 0;
  104. var publi_open = 0;
  105. var publi_closed = 0;
  106.  
  107. function ventanaSecundaria() {
  108.    $("div #decrypt")["addClass"]("block");
  109.    t_spoiler = pconfig["time"];
  110.    publi_closed = 0;
  111.    publi_open = 0;
  112.    hija = window["open"](global["boardurl"] + "/popup.php", "ventana1", "width=450,height=425,scrollbars=0,toolbar=no,directories=no,menubar=no,status=no,top=0,left=0");
  113.    timer = window["setInterval"]("contador()", 1000);
  114. };
  115.  
  116. function contador() {
  117.    var variable14 = _decrypt["objeto"];
  118.    if (hija != null && publi_closed == 0) {
  119.        try {
  120.            var variable15 = hija["closed"];
  121.        } catch (err) {
  122.            var variable15 = true;
  123.        };
  124.        if (hija["closed"]) {
  125.            t_spoiler = pconfig["time"];
  126.            mydialog["alert"]("Haz click en un anuncio y espera con la pagina abierta", "Atencion!");
  127.            variable14["val"]("Ver Links De Descarga");
  128.            _decrypt["objeto"]["bind"]();
  129.            variable14["removeClass"]("ui-button-negative");
  130.            $("div #decrypt")["removeClass"]("block");
  131.            publi_closed = 1;
  132.            hija = null;
  133.            clearInterval(timer);
  134.            return false;
  135.        };
  136.        var variable16 = window["location"]["host"];
  137.        try {
  138.            var variable17 = hija["location"]["host"];
  139.            var variable18 = hija["frames"]["length"];
  140.        } catch (err) {
  141.            var variable17 = "";
  142.            var variable18 = 0;
  143.        };
  144.        if (variable16 != variable17) {
  145.            variable14["addClass"]("ui-button-negative");
  146.            var variable19 = "";
  147.            if (t_spoiler <= pconfig["time"] && t_spoiler > 0) {
  148.                t_spoiler = t_spoiler - 1;
  149.            };
  150.            if (t_spoiler == pconfig["time"]) {
  151.                variable19 = "Click en Publicidad";
  152.            } else {
  153.                if (t_spoiler == 0) {
  154.                    variable19 = "Ya puedes descargar!";
  155.                } else {
  156.                    if (t_spoiler < pconfig["time"]) {
  157.                        variable19 = "No cerrar la publicidad, abriendo links en " + t_spoiler + " seg. ";
  158.                    };
  159.                };
  160.            };
  161.            variable14["val"](variable19);
  162.            if (t_spoiler <= 0) {
  163.                t_spoiler = pconfig["time"];
  164.                publi_open = 1;
  165.                clearInterval(timer);
  166.                _decrypt["open"]();
  167.                $["cookie"]("ads_accepted", 1, {
  168.                    expires: 180
  169.                });
  170.                $("div #decrypt")["removeClass"]("block");
  171.                variable14["removeClass"]("ui-button-negative");
  172.            };
  173.        };
  174.    };
  175. };
  176.  

Esto es sacado de identi ;D, aparte de crear el popup y de establecer un temporizador tambien genera una cookie para establecer que se a aceptado la petición.
Es un poco mas elaborado, si recien estas viendo javascript te recomiendo empezar leyendo  sobre las funciones setInterval y window.open (son propias de javascript) y tratar de conbinarlas. Tambien si utilizas firefox podes descargarte Firebug es un complemento muy util para destripar un sitio web.

esto ayuda quisas :huh:

http://forobeta.com/otras-plataformas/173040-regalo-script-de-identi.html
5  Programación / PHP / ¿Click'n'Load 2 JDownloader cifrar es AES php en bbcode ejemplos ? en: 6 Mayo 2013, 16:33
¿Click'n'Load 2 JDownloader cifrar es  AES php ejemplos ?  :huh: :huh:


Quiero saber cómo puedo integrar Click'n'load 2 en mi wordpress usando un bbcode o algo así [CNL] TEX[/ CNL], de esa manera puedo proteger enlaces.

todo lo básico se explica aquí no comprendo.

fuente:

http://jdownloader.org/knowledge/wiki/glossary/cnl2

http://board.jdownloader.org/showthread.php?t=40020
6  Programación / Desarrollo Web / Re: os invito a que me hackeeis la web y decir como lo habeis hecho en: 5 Mayo 2013, 04:48
yo quiero el script de esta web  ;D

http://identi.foro-web.net/

User : demo

pass : demomarco

http://www.identi.li/
7  Programación / Ingeniería Inversa / Re: Ingeniería Inversa en Android en: 2 Mayo 2013, 19:13
 que se prepare el https://play.google.com/store  ;D buena informacion  :D
8  Foros Generales / Foro Libre / Re: ¿Identi no puedo sacarlo de mantenimiento ayuda? en: 2 Mayo 2013, 18:37
Asi a simple vista no se ve nada raro, el problema debe estar en algun otro lado.

Intenta deshabilitar ese mod, si te funciona entonces el mod está mal hecho.

Intenta comentar la linea 3 y 4 para que esas variables no existan e intentar forzar al mod a no dejar el sitio en mantenimiento.

Si nada te resulta entonces anda dandole un echo 'test';exit; linea por linea, sección por sección hasta que logres ver en que parte se detiene el script con ese mensaje, porque si desde la configuración no se puede entonces lo unico que queda es depurarlo.

Saludos.

mira esto es lo que  intente hacer.





Código
  1. <?php
  2. $maintenance = '0';
  3. $mtitle = 'Mantenimiento';
  4. $mmessage = 'Pagina en mantenimiento, aguarde un momento';
  5. $limit_posts = '20'; //Cantidad de posts mostrados por pagina
  6. $mbname = 'Mi Comunidad';
  7. $language = 'spanish';
  8. $boardurl = 'http://127.0.0.1/foro/identi/';
  9. $url = 'http://127.0.0.1/foro/identi/';
  10. $chatid = '43220954';
  11. $widget = 'Spirate.Net';
  12. $slogan = 'Social Community Script';
  13. $no_avatar = 'http://127.0.0.1/foro/identi/Themes/default/images/avatar.gif';
  14. $webmaster_email = 'Agrega aqui tu correp';
  15. $cookiename = 'SPCookies168';
  16. $db_server = '127.0.0.1/';
  17. $db_name = 'identi2';
  18. $db_user = 'root';
  19. $db_passwd = '';
  20. $db_prefix = 'smf_';
  21. $db_persist = '0';
  22. $db_error_send = 1;
  23. $boarddir = 'C:\EasyPHP-12.1\www\foro\identi';
  24. $sourcedir = 'C:\EasyPHP-12.1\www\foro\identi/Sources';
  25. $db_last_error = 1367465924;
  26. if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources'))
  27.   $sourcedir = $boarddir . '/Sources';
  28. $db_character_set = 'utf8';
  29. ?>

use repair_settings.php y no funciono.

http://www.simplemachines.org/community/index.php?topic=219422.0





pero no entiendo como hacer 'test';exit y depurar no comprendo puedo solucionarlo ?.

bueno solo encontre estas 2 SQL pero el vacio si subio el lleno no.






9  Programación / PHP / Re: ¿base 64 php se puede cifra enlaces de descarga? en: 30 Abril 2013, 01:15
Y porque quieres encriparlos  :-\ Si base64 no tiene sentido para este tipo de cosas.. encriptalos en AES o RC4..así al menos los visitantes no podrán descifrarlos antes de que ocurra X cosa... si los vas a cifrar en base64 ni te molestes en hacerlo xD.

PD: Estoy trabajando (tiempo libre) en un script para estas cosas.. cuando lo tenga lo publico..

Saludos

pero en AES y RS4 es  Con ida y vuelta  :huh:  me refiero a que tiene un metodo covertidor  para volverlo a su forma normal lo uculto  :huh:

yo lo que quisiera es un generador de post como el de identi con el truco de porteger links como Click'n'Load 2 - JDownloader y algo que protega los links un spoiler con contador cuandp termine de contar se desencripte.

este script es el que  usa identi

http://www.spirate.net/foro/noticias-y-actualizaciones/descargar-spirate-2-4-beta-27042/

El script va ser Como phpost y spirate es mi duda yo me apunto si es asi  ;-)

Saludos

10  Programación / PHP / Re: ¿base 64 php se puede cifra enlaces de descarga? en: 29 Abril 2013, 05:55
Mas bien, no entiendo ni un carajo de lo que has puesto...

Saludos

algo como un convertidor de enlaces de descarga a base64 , pero que decodifique luego los enlaces de descarga  a sus estado normal y conocido.  ;-)

Código
  1. <html>
  2. <head>
  3.    <script type="text/javascript">
  4.        function b64(){
  5.            var key = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='.split('');
  6.            var e = document.getElementById('str');
  7.            var a = document.getElementById('res');
  8.            var str = e.value; var r = new Array(); var s = new Array();
  9.            for(i=0,x='';i<str.length;i++){
  10.                if(str.charCodeAt(i).toString(2).length!=8) x = '0';
  11.                r.push(x+str.charCodeAt(i).toString(2));
  12.            }
  13.            r = r.join('');
  14.            for(c=0,k=0;c<(Math.ceil(r.length/6));c++){
  15.                k = parseInt(r.substr(c*6,6),2);
  16.                //alert(k);
  17.                if(isNaN(k)){
  18.                    s.push(key[64]);
  19.                } else {
  20.                    s.push(key[k]);
  21.                }
  22.            }
  23.            a.innerHTML = s.join('');
  24.        }
  25.    </script>
  26. </head>
  27. <body>
  28. <p>Man = TWFu</p>
  29. <p>
  30.    <input type="text" id="str" value="Man" />
  31.    <input type="button" onclick="b64()" value="convertir a b64" />
  32. </p>
  33. <p id="res"></p>
  34. </body>
  35. </html>


Código
  1. function base64_encode (str) {
  2.    var bin, bits = '', charset = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/', index, r = '', n = str.length, len = (n + 2 - ((n + 2) % 3)) / 3 * 4;
  3.    for (var i = 0, c = str.length; i &lt; c; ++i) {
  4.        bin = str.charCodeAt(i).toString(2);
  5.        if (bin.length !== 8) {
  6.            bin = 0 + bin;
  7.        }
  8.        bits += bin;
  9.    }
  10.    for (var i = 0, c = Math.ceil(bits.length / 6); i &lt; c; ++i) {
  11.        index = parseInt(bits.substr(i * 6, 6), 2);
  12.        r += charset[index];
  13.    }
  14.    while (r.length &lt; len) {
  15.        r += '=';
  16.    }
  17.    return r;
  18. }
11  Programación / PHP / ¿base 64 php se puede cifra enlaces de descarga? en: 29 Abril 2013, 05:07
¿base 64  php se puede cifra enlaces de descarga?

si ya se que estais artos del popup spoiler



 

existe   alguna otra forma de proteger aparte  popup spoiler  :huh:

solo encontre esta informacion

Código
  1. <?php
  2. $str = 'Me van a Emcriptar D:';
  3. echo base64_encode($str);
  4. ?>

http://php.net/manual/es/function.base64-encode.php

http://writecodeonline.com/php/

Click'n'Load 2

Código:
<FORM ACTION="http://127.0.0.1:9666/flash/add" target="hidden" METHOD="POST"> <INPUT TYPE="hidden" NAME="passwords" VALUE="myPassword"> <INPUT TYPE="hidden" NAME="source" VALUE="http://jdownloader.org/spielwiese"> <INPUT TYPE="hidden" NAME="urls" VALUE="{AQUI PONER EL LINK DE DESCARGA}"> <INPUT TYPE="SUBMIT" NAME="submit" VALUE="Clic aqui para Agregar Links a Jdownloader"> </FORM>

www.jdownloader.org/knowledge/


tambien tengo un  problema

 No puedo sacar de Mantenimiento el script  en el localhost con XAMPP  :S  pero quisas  :$   alguien quiera verla  y rescatar sus mods :)

 

Settings.php

Código
  1. <?php
  2.  
  3. $verify_menciones=0;//Aqui lo cambie a 0 estaba en 1 y no puedo sacarlo de mateniemiento plop XD
  4. $maintenance = 0; // Aqui tambien me dijeron que cambiara a =  ''; pero no resulto
  5. $mtitle = 'Actualización del Sitio';
  6. $mmessage = 'Identi estará nuevamente operativo dentro de unas horas.';
  7. $mbname = 'Identi';
  8. $language = 'spanish';
  9. $limit_posts = '20';
  10. $boardurl = 'http://localhost';
  11. $url = 'http://localhost/';
  12. $chatid = '43220954'; // ID de tu chat de xat.com
  13. $widget = 'Novedades en Identi'; // Lo que saldrá en el título del widget
  14. $slogan = 'Tus descargas en mediafire'; // lo que saldrá en el título de tu web, no pongas el nombre
  15. $no_avatar = '/images/def/avatar.png';
  16. $webmaster_email = 'seruji0@hotmail.com';
  17. $cookiename = 'SMFCookie11';
  18. $db_server = 'localhost';
  19. $db_name = '';
  20. $db_user = 'root';
  21. $db_passwd = '';
  22. $db_prefix = 'smf_';
  23. $db_persist = 0;
  24. $db_error_send = 1;
  25. $boarddir = 'C:\\xampp\htdocs';
  26. $sourcedir = 'C:\\xampp\htdocs/Sources';
  27. $db_last_error = 1335835390;
  28. if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources'))
  29.   $sourcedir = $boarddir . '/Sources';
  30. $db_character_set = 'UTF-8';
  31. $test=true;
  32. ?>

index.php

Código
  1. <?php
  2. if(!isset($_COOKIE['desa12'])){
  3.  
  4.    if(isset($_POST['pass']) && $_POST['pass']=='bender'){
  5.                setcookie('desa12',1,time()+86400);
  6.                header('Location: /');}
  7. echo'<form method="post">Pass: <input type="text" name="pass">
  8. <input type="submit" value="Entrar"></form>';
  9. }
  10.  
  11. $forum_version = 'Identi v.2';
  12. define('SMF', 1);
  13. $time_start = microtime();
  14. // Make sure some things simply do not exist.
  15. foreach (array('db_character_set') as $variable)
  16.    if (isset($GLOBALS[$variable]))
  17.        unset($GLOBALS[$variable]);
  18.  
  19. // Load the settings...
  20. require_once(dirname(__FILE__) . '/Settings.php');
  21. require_once($sourcedir . '/QueryString.php');
  22. require_once($sourcedir . '/Subs.php');
  23. require_once($sourcedir . '/Errors.php');
  24. require_once($sourcedir . '/Load.php');
  25. require_once($sourcedir . '/Security.php');
  26. if (@version_compare(PHP_VERSION, '4.2.3') != 1)
  27.    require_once($sourcedir . '/Subs-Compat.php');
  28. if (!empty($maintenance) && $maintenance == 2)
  29.    db_fatal_error();
  30. if (empty($db_persist))
  31.    $db_connection = @mysql_connect($db_server, $db_user, $db_passwd);
  32. else
  33.    $db_connection = @mysql_pconnect($db_server, $db_user, $db_passwd);
  34.  
  35. if (!$db_connection || !@mysql_select_db($db_name, $db_connection))
  36.    db_fatal_error();
  37. reloadSettings();
  38.  
  39.  
  40. // Unserialize the array of pretty board URLs
  41. $context = array('pretty' => array(
  42.    'action_array' => unserialize($modSettings['pretty_action_array']),
  43.    'board_urls' => unserialize($modSettings['pretty_board_urls']),
  44.    'db_count' => 0,
  45. ));
  46. // Clean the request variables, add slashes, etc.
  47. cleanRequest();
  48.  
  49. // Seed the random generator?
  50. if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69)
  51.    smf_seed_generator();
  52.  
  53. // Determine if this is using WAP, WAP2, or imode.  Technically, we should check that wap comes before application/xhtml or text/html, but this doesn't work in practice as much as it should.
  54. if (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'application/vnd.wap.xhtml+xml') !== false)
  55.    $_REQUEST['wap2'] = 1;
  56. elseif (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'text/vnd.wap.wml') !== false)
  57. {
  58.    if (strpos($_SERVER['HTTP_USER_AGENT'], 'DoCoMo/') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'portalmmm/') !== false)
  59.        $_REQUEST['imode'] = 1;
  60.    else
  61.        $_REQUEST['wap'] = 1;
  62. }
  63. if (!defined('WIRELESS'))
  64.    define('WIRELESS', isset($_REQUEST['wap']) || isset($_REQUEST['wap2']) || isset($_REQUEST['imode']));
  65. if (WIRELESS)
  66. {
  67.    define('WIRELESS_PROTOCOL', isset($_REQUEST['wap']) ? 'wap' : (isset($_REQUEST['wap2']) ? 'wap2' : (isset($_REQUEST['imode']) ? 'imode' : '')));
  68.    $modSettings['enableCompressedOutput'] = '0';
  69.    $modSettings['defaultMaxMessages'] = 5;
  70.    $modSettings['defaultMaxTopics'] = 9;
  71.  
  72.    if (WIRELESS_PROTOCOL == 'wap')
  73.        header('Content-Type: text/vnd.wap.wml');
  74. }
  75. if (!empty($modSettings['enableCompressedOutput']) && !headers_sent() && ob_get_length() == 0)
  76. {
  77.    if (@ini_get('zlib.output_compression') == '1' || @ini_get('output_handler') == 'ob_gzhandler' || @version_compare(PHP_VERSION, '4.2.0') == -1)
  78.        $modSettings['enableCompressedOutput'] = '0';
  79.    else
  80.        ob_start('ob_gzhandler');
  81. }
  82. if (empty($modSettings['enableCompressedOutput']))
  83.    ob_start();
  84.  
  85. set_error_handler('error_handler');
  86. loadSession();
  87. call_user_func(smf_main());
  88. obExit(null, null, true);
  89. function smf_main()
  90. {
  91.  
  92.    global $modSettings, $settings, $user_info, $board, $topic, $maintenance, $sourcedir;
  93.    if (isset($_GET['action']) && $_GET['action'] == 'keepalive')
  94.        die;
  95.    loadUserSettings();
  96.    loadBoard();
  97.    loadTheme();
  98.    is_not_banned();
  99.    loadPermissions();
  100.    // Referrals Mod - Check For Referrals
  101.    if (isset($_GET['referredby']) || isset($_COOKIE['smf_referrals']))
  102.        loadReferral();
  103.    if (empty($_REQUEST['action']) || !in_array($_REQUEST['action'], array('dlattach', 'jsoption', '.xml')))
  104.    {
  105.        writeLog();
  106.        if (!empty($modSettings['hitStats']))
  107.            trackStats(array('hits' => '+'));
  108.    }
  109.    // twitter mod -->
  110.        if (include_once($sourcedir . '/twitter.php'))
  111.            twitter_cron();
  112.        // <-- twitter mod
  113.    if (!empty($maintenance) && !allowedTo('admin_forum'))
  114.    {
  115.        if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'login2' || $_REQUEST['action'] == 'logout'))
  116.        {
  117.            require_once($sourcedir . '/LogInOut.php');
  118.            return $_REQUEST['action'] == 'login2' ? 'Login2' : 'Logout';
  119.        }
  120.        else
  121.        {
  122.            require_once($sourcedir . '/Subs-Auth.php');
  123.            return 'InMaintenance';
  124.        }
  125.    }
  126.    elseif (empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && (!isset($_REQUEST['action']) || !in_array($_REQUEST['action'], array('coppa', 'login', 'login2', 'register', 'register2', 'reminder', 'activate', 'smstats', 'help', 'verificationcode'))))
  127.    {
  128.        require_once($sourcedir . '/Subs-Auth.php');
  129.        return 'KickGuest';
  130.    }
  131.    elseif (empty($_REQUEST['action']))
  132.    {
  133.        if (empty($board) && empty($topic))
  134.        {
  135.            require_once($sourcedir . '/Recent.php');
  136.            return 'RecentPosts';
  137.        }
  138.        elseif (empty($topic))
  139.        {
  140.            require_once($sourcedir . '/MessageIndex.php');
  141.            return 'MessageIndex';
  142.        }
  143.        else
  144.        {
  145.            require_once($sourcedir . '/Display.php');
  146.            return 'Display';
  147.        }
  148.    }
  149.    $actionArray = array(
  150.  
  151.        'url' => array('url.php', 'url_main'),
  152.  
  153.        'activate' => array('Register.php', 'Activate'),
  154.        'admin' => array('Admin.php', 'Admin'),
  155.  
  156.        'ban' => array('ManageBans.php', 'Ban'),
  157.        'boardrecount' => array('Admin.php', 'AdminBoardRecount'),
  158.        'favoritos' => array('Favoritos.php', 'Favoritos'),
  159.        'cleanperms' => array('Admin.php', 'CleanupPermissions'),
  160.        'convertentities' => array('Admin.php', 'ConvertEntities'),
  161.        'convertutf8' => array('Admin.php', 'ConvertUtf8'),
  162.        'coppa' => array('Register.php', 'CoppaForm'),
  163.        'contactenos' => array('Contactenos.php', 'ShowHelp'),
  164.        'deletemsg' => array('RemoveTopic.php', 'DeleteMessage'),
  165.        'detailedversion' => array('Admin.php', 'VersionDetail'),
  166.        'display' => array('Display.php', 'Display'),
  167.        'dumpdb' => array('DumpDatabase.php', 'DumpDatabase2'),
  168.  
  169.        'featuresettings' => array('ModSettings.php', 'ModifyFeatureSettings'),
  170.        'featuresettings2' => array('ModSettings.php', 'ModifyFeatureSettings2'),
  171.        'findmember' => array('Subs-Auth.php', 'JSMembers'),
  172.  
  173.        'terminos-y-condiciones' => array('terminos-y-condiciones.php', 'ShowHelp'),
  174.  
  175.        'protocolo' => array('Protocolo.php', 'ShowHelp'),
  176.        'comunidades' => array('comunidades2.php', 'comunidades_main'),
  177.        'im' => array('PersonalMessage.php', 'MessageMain'),
  178.  
  179.        'lock' => array('LockTopic.php', 'LockTopic'),
  180.        'login' => array('LogInOut.php', 'Login'),
  181.        'login2' => array('LogInOut.php', 'Login2'),
  182.        'logout' => array('LogInOut.php', 'Logout'),
  183.        'maintain' => array('Admin.php', 'Maintenance'),
  184.        'manageattachments' => array('ManageAttachments.php', 'ManageAttachments'),
  185.        'manageboards' => array('ManageBoards.php', 'ManageBoards'),
  186.        'managecalendar' => array('ManageCalendar.php', 'ManageCalendar'),
  187.        'managesearch' => array('ManageSearch.php', 'ManageSearch'),
  188.        'markasread' => array('Subs-Boards.php', 'MarkRead'),
  189.        'membergroups' => array('ManageMembergroups.php', 'ModifyMembergroups'),
  190.        'mergetopics' => array('SplitTopics.php', 'MergeTopics'),
  191.        'mlist' => array('Memberlist.php', 'Memberlist'),
  192.        'modifycat' => array('ManageBoards.php', 'ModifyCat'),
  193.        'modifykarma' => array('Karma.php', 'ModifyKarma'),
  194.        'hist-mod' => array('Modlog.php', 'ViewModlog'),
  195.        'movetopic' => array('MoveTopic.php', 'MoveTopic'),
  196.        'movetopic2' => array('MoveTopic.php', 'MoveTopic2'),
  197.        'movetopic3' => array('MoveTopic.php', 'MoveTopic3'),
  198.  
  199.        'optimizetables' => array('Admin.php', 'OptimizeTables'),
  200.        'packageget' => array('PackageGet.php', 'PackageGet'),
  201.        'packages' => array('Packages.php', 'Packages'),
  202.        'permissions' => array('ManagePermissions.php', 'ModifyPermissions'),
  203.        'pgdownload' => array('PackageGet.php', 'PackageGet'),
  204.        'pm' => array('PersonalMessage.php', 'MessageMain'),
  205.        'post' => array('Post.php', 'Post'),
  206.        'agregar' => array('Agregar.php', 'Agregar'),
  207.        'agregar2' => array('Agregar.php', 'Agregar2'),
  208.        'post2' => array('Post.php', 'Post2'),
  209.        'postsettings' => array('ManagePosts.php', 'ManagePostSettings'),
  210.  
  211.        /* 'profile' => array('Profile.php', 'ModifyProfile'),
  212.         'profile2' => array('Profile.php', 'ModifyProfile2'), */
  213.        'quotefast' => array('Post.php', 'QuoteFast'),
  214.        'quickmod' => array('Subs-Boards.php', 'QuickModeration'),
  215.        'quickmod2' => array('Subs-Boards.php', 'QuickModeration2'),
  216.        'index' => array('Recent.php', 'RecentPosts'),
  217.        'regcenter' => array('ManageRegistration.php', 'RegCenter'),
  218.        'registrarse' => array('Register.php', 'Register'),
  219.        'register2' => array('Register.php', 'Register2'),
  220.        'reminder' => array('Reminder.php', 'RemindMe'),
  221.        'removetopic2' => array('RemoveTopic.php', 'RemoveTopic2'),
  222.        'removeoldtopics2' => array('RemoveTopic.php', 'RemoveOldTopics2'),
  223.        'repairboards' => array('RepairBoards.php', 'RepairBoards'),
  224.        'requestmembers' => array('Subs-Auth.php', 'RequestMembers'),
  225.        'search' => array('Search.php', 'PlushSearch1'),
  226.        'search2' => array('Search.php', 'PlushSearch2'),
  227.        'serversettings' => array('ManageServer.php', 'ModifySettings'),
  228.        'serversettings2' => array('ManageServer.php', 'ModifySettings2'),
  229.        'saveme' => array('Protocolo.php', 'ShowHelps'),
  230.  
  231.        'smileys' => array('ManageSmileys.php', 'ManageSmileys'),
  232.        'splittopics' => array('SplitTopics.php', 'SplitTopics'),
  233.        'TOPs' => array('Stats.php', 'DisplayStats'),
  234.        'sticky' => array('LockTopic.php', 'Sticky'),        
  235.        'rz' => array('Acciones.php', 'Acciones'),
  236.        'theme' => array('Themes.php', 'ThemesMain'),
  237.        'trackip' => array('Profile.php', 'trackIP'),
  238.        'viewErrorLog' => array('ManageErrors.php', 'ViewErrorLog'),
  239.        'viewmembers' => array('ManageMembers.php', 'ViewMembers'),
  240.        'viewprofile' => array('Profile.php', 'ModifyProfile'),
  241.  
  242.        'twittersettings'    =>    array('TwitterSettings.php', 'ModifyTwitterSettings'),
  243.        'Vigilapuntos' => array('Vigilapuntos.php', 'Vigilapuntos'),
  244.        'catalogo-programas' => array('cat-software.php', 'inicio'),
  245.        'editados' => array('editados.php', 'editados'),
  246.        'catalogform_pelic' => array('catalogform_pelic.php', 'catalogform_pelic'),
  247.        'catalogo_pelic' => array('catalogo_pelic.php', 'catalogo_pelic'),
  248.        'catalogform_music' => array('catalogform_music.php', 'catalogform_music'),
  249.        'catalogo_musica' => array('catalogo_musica.php', 'catalogo_musica'),
  250.        'catalogform_juegos' => array('catalogform_juegos.php', 'catalogform_juegos'),
  251.        'catalogo_juegos' => array('catalogo_juegos.php', 'catalogo_juegos'),
  252.        'form_series' => array('form_series.php', 'form_series'),
  253.        'catalogo_series' => array('catalogo_series.php', 'catalogo_series'),
  254.        'publiform' => array('publiform.php', 'publiform_main'),
  255.        'anunciantes' => array('anunciantes.php', 'anunciantes_main'),
  256.        'borradores' => array('drafts.php', 'drafts'),
  257.        'buscador' => array('buscador.php', 'buscador'),
  258.        'streaming' => array('streaming.php', 'streaming'),
  259.            /* 'tags' => array('Tags.php', 'TagsMain'), */
  260.        //'extras' => array('Extras.php', 'Extras'),
  261.            /* 'buddies' => array('Buddies.php', 'BuddiesMain'), */
  262.            //'staff' => array('SeccionStaff.php', 'StaffMain'),    
  263.                /* 'jsoption' => array('Themes.php', 'SetJavaScript'),
  264.         'jspedidos' => array('pedidos.php','Setpedidos'),
  265.         'jsmodify' => array('Post.php', 'JavaScriptModify'), */
  266.                //'widget' => array('widget.php', 'ShowHelp'),
  267.        /* 'denunciar' => array('Denunciar.php', 'ShowHelp'), */
  268.    /*     'enlazanos' => array('Enlazanos.php', 'ShowHelp'), */
  269.        /* 'gsearch' => array('gsearch.php', 'ShowHelp'), */
  270.                /* 'jsoption' => array('Themes.php', 'SetJavaScript'),
  271.         'jsmodify' => array('Post.php', 'JavaScriptModify'), */
  272.                /* 'news' => array('ManageNews.php', 'ManageNews'), */
  273.        //'monitor' => array('Monitor.php', 'Monitor'),
  274.            /* 'printpage' => array('Printpage.php', 'PrintTopic'), */
  275.        /* 'sitemap' => array('Sitemap.php', 'ShowSiteMap'), */
  276.        //'verificationcode' => array('Register.php', 'VerificationCode'),
  277.        //'who' => array('Who.php', 'Who'),
  278.        //'.xml' => array('News.php', 'ShowXmlFeed'),
  279.        //'enviar-puntos' => array('shop/Shop.php', 'Shop'),
  280.        //'shop_general' => array('shop/ShopAdmin.php', 'ShopGeneral'),
  281.        //'shop_inventory' => array('shop/ShopAdmin.php', 'ShopInventory'),
  282.        //'shop_items_add' => array('shop/ShopAdmin.php', 'ShopItemsAdd'),
  283.        //'shop_items_edit' => array('shop/ShopAdmin.php', 'ShopItemsEdit'),
  284.        //'shop_restock' => array('shop/ShopAdmin.php', 'ShopRestock'),
  285.        //'shop_usergroup' => array('shop/ShopAdmin.php', 'ShopUserGroup'),    
  286.        //'shop_cat' => array('shop/ShopAdmin.php', 'ShopCategories'),
  287.        //'denuncias' => array('Denuncias.php', 'DenunciasMain'),
  288.        //'spam' => array('spam.php', 'spam'),
  289.        //'games' => array('games.php', 'GamesMain'),
  290.        //'rank' => array('Ranking.php', 'RankMain'),
  291.        //'pedidos' => array('pedidos.php','pedidos_main'),
  292.        //'imagenes' => array('Gallery.php', 'GalleryMain'),
  293.        //'dlattach' => array('Display.php', 'Download'),
  294.        //'recomendar' => array('Recomendar.php', 'ShowHelp'),
  295.        //'enviar-a-amigo' => array('SendTopic.php', 'SendTopic'),
  296.        //'cine' => array('Cine.php', 'cine'),
  297.        //'trofeos' => array('Trofeos.php', 'TMain'),
  298.        //'actrank' => array('Actrank.php', 'RankMain'),
  299.        //'help' => array('Help.php', 'ShowHelp'),    
  300.        //'helpadmin' => array('Help.php', 'ShowAdminHelp'),
  301.        //'notify' => array('Notify.php', 'Notify'),
  302.        //'notifyboard' => array('Notify.php', 'BoardNotify'),
  303.    );
  304.  
  305.    $i = 1;
  306.    while (isset($modSettings['CA' . $i . '_name']))
  307.    {
  308.        $actionArray[$modSettings['CA' . $i . '_name']] = array('CustomAction.php', 'CustomAction');
  309.        $i++;
  310.    }
  311.  
  312.    // Get the function and file to include - if it's not there, do the board index.
  313.    if (!isset($_REQUEST['action']) || !isset($actionArray[$_REQUEST['action']]))
  314.    {
  315.        if (!empty($settings['catch_action']))
  316.        {
  317.            require_once($sourcedir . '/Themes.php');
  318.            return 'WrapAction';
  319.        }
  320.        require_once($sourcedir . '/Recent.php');
  321.        return 'RecentPosts';
  322.    }
  323.  
  324.    require_once($sourcedir . '/' . $actionArray[$_REQUEST['action']][0]);
  325.    return $actionArray[$_REQUEST['action']][1];
  326.  
  327.  
  328. }
  329.  
  330. ?>

deberia funcionar asi

demo:
Código
  1. http://identi.foro-web.net
/

User: demo
pass: demomarco

 

 http://www.dailymotion.com/video/xxvcmy_script_webcam



 

panel de moderacion  :P

 

descarga :

 http://www.mediafire.com/?v309gxlz79cdlxw

contraseña : bender

el spoiler de identi  pero como adpatarlo con base 64  :huh:



Código:
<script>function ventanaSecundaria(){t=11;timer=window.setInterval("contador()",1000);hija=window.open("http://www.tupagina.com/popup.php","ventana1","width=640,height=425,scrollbars=0"}function contador(){if(hija!=null){if(hija.closed){alert("Clicke un anuncio y espere con la pagina abierta";clearInterval(timer);t=10;document.getElementById("contador".value="Mostrar Enlaces De Descarga";return}if(hija.frames.length!=3){t=t-1;if(t<=0){clearInterval(timer);document.getElementById("hide".style.display="";t="spoiler"}document.getElementById("contador".value=t;return false}}}</script><div style=margin:20px;margin-top:5px><div class="smallfont" style=margin-bottom:2px><b></b></i> <p class="Boton BtnGreen"><input type="button" id="contador" value="Mostrar Enlaces De Descarga" style=width:300px;height=35px;font-weight:bold;font-size:16px;margin:0px;padding:0px; onClick=ventanaSecundaria()><div class="alt2" style=margin:0px;padding:6px;border:1pxinset;> <div id="hide" style=display:none;> </p> <div class="info_bbc"> ACA PONES EL LINK </div></div></div></div>


Código:
<div align='center'><script>function ventanaSecundaria(){t=11;timer=window.setInterval('contador()',1000);hija=window.open('http://www.simplemachines.org/popup.php','ventana','width=640,height=425,scrollbars=0')}function contador(){if(hija!=null){if(hija.closed){alert('Clicke un anuncio y espere 10 segundos');clearInterval(timer);t=10;document.getElementById('contador').value='Mostrar Video';return}if(hija.frames.length!=3){t=t-1;if(t<=0){clearInterval(timer);document.getElementById('hide').style.display='';t='Video'}document.getElementById('contador').value=t;return false}}}</script> <div style='margin:20px; margin-top:5px'> <div class='smallfont' style='margin-bottom:2px'></i> <p class='Boton BtnGreen'> <input type='button' id='contador' value='Mostrar Video!' style='width:297;height=35;font-weight:bold;font-size:16px;margin:0px;padding:0px' onClick=ventanaSecundaria()></div> <div class='alt2' style='margin: 0px; padding: 6px; border: 1px inset;'> <div id='hide' style='display: none;'> <div class='info_bbc'> "ACA PONES EL INFRAME DE VIDEO" </div></div> </div></div></div>

Código:
<src="/images/links1.png" border="0" /><br> <br> <script>function ventanaSecundaria(){t=11;timer=window.setInterval("contador()",1000);hija=window.open("/popup.php","ventana1","width=640,height=425,scrollbars=0"}function contador(){if(hija!=null){if(hija.closed){alert("Clicke un anuncio y espere con la pagina abierta";clearInterval(timer);t=10;document.getElementById("contador".value="Mostrar Enlaces De Descarga";return}if(hija.frames.length!=3){t=t-1;if(t<=0){clearInterval(timer);document.getElementById("hide".style.display="";t="spoiler"}document.getElementById("contador".value=t;return false}}}</script> <div style=margin:20px;margin-top:5px> <div class="smallfont" style=margin-bottom:2px> <p class="Boton BtnGreen"> <input type="button" id="contador" value="Mostrar Enlaces De Descarga" style=width:300px;height=35px;font-weight:bold;font-size:16px;margin:0px;padding:0px; onClick="ventanaSecundaria()"></div> <div class="alt2" style=margin:0px;padding:6px;border:1pxinset;> <div id="hide" style=display:none;> </p> <div class="info_bbc"> ACA PONES EL LINK </div></div></div></div>
12  Programación / Ingeniería Inversa / thempaoster v2.0 tengalo de estudio ! en: 27 Abril 2013, 05:54
Solo tenganlo en la mira es un software Uploader usado a nivel mundial NO PIDO NINGUN CRACK  yo solo informo para que lo estudien su proteccion .

themaposter  v1.3o

http://uploading.com/files/e73a7mba/themaPoster%2Bv.1.30%2B.rar/

Info

themaposter v2.0

http://poster.freddy.lt/

Te pediran la licencia anterior, la envias y vuelves a poner tu email, segun de 1 dia 5 dias tarda en llegarte la nueva licencia.




Esto me gusto, ya te saca los id jejeje de los foros


1.- señores no se fien del Templates Finder que trae,recuerden que a veces hay subforos y esos no los detecta,porque hize un testeo de varios y marcaba el principal nada mas.

2.- Tambien recuerda que los foros, cuando eres visitante solo te muestra algunas secciones y no todas,como cuando estas registrado,por lo que el finder hace un chequeo como visitante nada mas, por lo tanto habra foros que no te detecte mas secciones.

3.- Hay foros que le sirve esa opcion.

4.- Es un poco mas rapido que la version anterior la verdad.

5.- lo de las banderitas se m ehace una mamada, no estare poniendole a cada foro su banderita, no los quiero para concurso jaja.

Amigo las captchas si las detecta, cuando creas el post y sabes que te pide captcha, vete a Modo de Estado donde salen cuando estas posteando y hasta como muestra la imagen, ahi debes meter la captcha, ya no te sale enfrente o te sale como pup-pop ya no, les dejo la imagen.



Bueno,para los que no saben como convertir los templates lea dire.

1.- Descargate el convertidor, viene el link junto con la llave,al rato lo pongo aqui.
2.- Lo descomprimes y ejecutas.
3.- ya ejecutado,saldra una ventana,no la cierres,dirijete a la carpeta de user,de tu anterior thema.
4.- Selecionaras todos los archivos,menos el que dice id,copias y pegas en la carpeta de user del convertidor,ahi abra unos,reemplazalos.
6.- Ahora si,dale ok a todo hasta que te abra la carpeta del convertidor,los archivos que te muestra cuando se abre esa carpeta,copia todos.
7.-Los archivos  copiados,los pegaras en la carpeta de user,de tu nuevo thema.
todo esto debe estar cerrado.

Nueva Actualizacion 2.3


 
13  Foros Generales / Foro Libre / ¿Identi no puedo sacarlo de mantenimiento ayuda? en: 21 Abril 2013, 17:24
pero lo estuve probando y no puedo lo puedo sacar de matenimiento es spirate modificado.



en el localhost con XAMPP

http://sourceforge.net/projects/xampp/

Settings.php

Código
  1. <?php
  2.  
  3. $verify_menciones=0;//Aqui lo cambie a 0 estaba en 1 y no puedo sacarlo de mateniemiento
  4. $maintenance = 0;
  5. $mtitle = 'Actualización del Sitio';
  6. $mmessage = 'Identi estará nuevamente operativo dentro de unas horas.';
  7. $mbname = 'Identi';
  8. $language = 'spanish';
  9. $limit_posts = '20';
  10. $boardurl = 'http://localhost';
  11. $url = 'http://localhost/';
  12. $chatid = '43220954'; // ID de tu chat de xat.com
  13. $widget = 'Novedades en Identi'; // Lo que saldrá en el título del widget
  14. $slogan = 'Tus descargas en mediafire'; // lo que saldrá en el título de tu web, no pongas el nombre
  15. $no_avatar = '/images/def/avatar.png';
  16. $webmaster_email = 'seruji0@hotmail.com';
  17. $cookiename = 'SMFCookie11';
  18. $db_server = 'localhost';
  19. $db_name = '';
  20. $db_user = 'root';
  21. $db_passwd = '';
  22. $db_prefix = 'smf_';
  23. $db_persist = 0;
  24. $db_error_send = 1;
  25. $boarddir = 'C:\\xampp\htdocs';
  26. $sourcedir = 'C:\\xampp\htdocs/Sources';
  27. $db_last_error = 1335835390;
  28. if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources'))
  29.   $sourcedir = $boarddir . '/Sources';
  30. $db_character_set = 'UTF-8';
  31. $test=true;
  32. ?>
  33.  

index.php

Código
  1.  
  2. <?php
  3. if(!isset($_COOKIE['desa12'])){
  4.  
  5. if(isset($_POST['pass']) && $_POST['pass']=='bender'){
  6. setcookie('desa12',1,time()+86400);
  7. header('Location: /');}
  8. echo'<form method="post">Pass: <input type="text" name="pass">
  9. <input type="submit" value="Entrar"></form>';
  10. }
  11.  
  12. $forum_version = 'Identi v.2';
  13. define('SMF', 1);
  14. $time_start = microtime();
  15. // Make sure some things simply do not exist.
  16. foreach (array('db_character_set') as $variable)
  17. if (isset($GLOBALS[$variable]))
  18. unset($GLOBALS[$variable]);
  19.  
  20. // Load the settings...
  21. require_once(dirname(__FILE__) . '/Settings.php');
  22. require_once($sourcedir . '/QueryString.php');
  23. require_once($sourcedir . '/Subs.php');
  24. require_once($sourcedir . '/Errors.php');
  25. require_once($sourcedir . '/Load.php');
  26. require_once($sourcedir . '/Security.php');
  27. if (@version_compare(PHP_VERSION, '4.2.3') != 1)
  28. require_once($sourcedir . '/Subs-Compat.php');
  29. if (!empty($maintenance) && $maintenance == 2)
  30. db_fatal_error();
  31. if (empty($db_persist))
  32. $db_connection = @mysql_connect($db_server, $db_user, $db_passwd);
  33. else
  34. $db_connection = @mysql_pconnect($db_server, $db_user, $db_passwd);
  35.  
  36. if (!$db_connection || !@mysql_select_db($db_name, $db_connection))
  37. db_fatal_error();
  38. reloadSettings();
  39.  
  40.  
  41. // Unserialize the array of pretty board URLs
  42. $context = array('pretty' => array(
  43. 'action_array' => unserialize($modSettings['pretty_action_array']),
  44. 'board_urls' => unserialize($modSettings['pretty_board_urls']),
  45. 'db_count' => 0,
  46. ));
  47. // Clean the request variables, add slashes, etc.
  48. cleanRequest();
  49.  
  50. // Seed the random generator?
  51. if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69)
  52. smf_seed_generator();
  53.  
  54. // Determine if this is using WAP, WAP2, or imode.  Technically, we should check that wap comes before application/xhtml or text/html, but this doesn't work in practice as much as it should.
  55. if (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'application/vnd.wap.xhtml+xml') !== false)
  56. $_REQUEST['wap2'] = 1;
  57. elseif (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'text/vnd.wap.wml') !== false)
  58. {
  59. if (strpos($_SERVER['HTTP_USER_AGENT'], 'DoCoMo/') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'portalmmm/') !== false)
  60. $_REQUEST['imode'] = 1;
  61. else
  62. $_REQUEST['wap'] = 1;
  63. }
  64. if (!defined('WIRELESS'))
  65. define('WIRELESS', isset($_REQUEST['wap']) || isset($_REQUEST['wap2']) || isset($_REQUEST['imode']));
  66. if (WIRELESS)
  67. {
  68. define('WIRELESS_PROTOCOL', isset($_REQUEST['wap']) ? 'wap' : (isset($_REQUEST['wap2']) ? 'wap2' : (isset($_REQUEST['imode']) ? 'imode' : '')));
  69. $modSettings['enableCompressedOutput'] = '0';
  70. $modSettings['defaultMaxMessages'] = 5;
  71. $modSettings['defaultMaxTopics'] = 9;
  72.  
  73. if (WIRELESS_PROTOCOL == 'wap')
  74. header('Content-Type: text/vnd.wap.wml');
  75. }
  76. if (!empty($modSettings['enableCompressedOutput']) && !headers_sent() && ob_get_length() == 0)
  77. {
  78. if (@ini_get('zlib.output_compression') == '1' || @ini_get('output_handler') == 'ob_gzhandler' || @version_compare(PHP_VERSION, '4.2.0') == -1)
  79. $modSettings['enableCompressedOutput'] = '0';
  80. else
  81. ob_start('ob_gzhandler');
  82. }
  83. if (empty($modSettings['enableCompressedOutput']))
  84.  
  85. set_error_handler('error_handler');
  86. loadSession();
  87. call_user_func(smf_main());
  88. obExit(null, null, true);
  89. function smf_main()
  90. {
  91.  
  92. global $modSettings, $settings, $user_info, $board, $topic, $maintenance, $sourcedir;
  93. if (isset($_GET['action']) && $_GET['action'] == 'keepalive')
  94. die;
  95. loadUserSettings();
  96. loadBoard();
  97. loadTheme();
  98. is_not_banned();
  99. loadPermissions();
  100. // Referrals Mod - Check For Referrals
  101. if (isset($_GET['referredby']) || isset($_COOKIE['smf_referrals']))
  102. loadReferral();
  103. if (empty($_REQUEST['action']) || !in_array($_REQUEST['action'], array('dlattach', 'jsoption', '.xml')))
  104. {
  105. writeLog();
  106. if (!empty($modSettings['hitStats']))
  107. trackStats(array('hits' => '+'));
  108. }
  109. // twitter mod -->
  110. if (include_once($sourcedir . '/twitter.php'))
  111. twitter_cron();
  112. // <-- twitter mod
  113. if (!empty($maintenance) && !allowedTo('admin_forum'))
  114. {
  115. if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'login2' || $_REQUEST['action'] == 'logout'))
  116. {
  117. require_once($sourcedir . '/LogInOut.php');
  118. return $_REQUEST['action'] == 'login2' ? 'Login2' : 'Logout';
  119. }
  120. else
  121. {
  122. require_once($sourcedir . '/Subs-Auth.php');
  123. return 'InMaintenance';
  124. }
  125. }
  126. elseif (empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && (!isset($_REQUEST['action']) || !in_array($_REQUEST['action'], array('coppa', 'login', 'login2', 'register', 'register2', 'reminder', 'activate', 'smstats', 'help', 'verificationcode'))))
  127. {
  128. require_once($sourcedir . '/Subs-Auth.php');
  129. return 'KickGuest';
  130. }
  131. elseif (empty($_REQUEST['action']))
  132. {
  133. if (empty($board) && empty($topic))
  134. {
  135. require_once($sourcedir . '/Recent.php');
  136. return 'RecentPosts';
  137. }
  138. elseif (empty($topic))
  139. {
  140. require_once($sourcedir . '/MessageIndex.php');
  141. return 'MessageIndex';
  142. }
  143. else
  144. {
  145. require_once($sourcedir . '/Display.php');
  146. return 'Display';
  147. }
  148. }
  149. $actionArray = array(
  150.  
  151. 'url' => array('url.php', 'url_main'),
  152.  
  153. 'activate' => array('Register.php', 'Activate'),
  154. 'admin' => array('Admin.php', 'Admin'),
  155.  
  156. 'ban' => array('ManageBans.php', 'Ban'),
  157. 'boardrecount' => array('Admin.php', 'AdminBoardRecount'),
  158.        'favoritos' => array('Favoritos.php', 'Favoritos'),
  159. 'cleanperms' => array('Admin.php', 'CleanupPermissions'),
  160. 'convertentities' => array('Admin.php', 'ConvertEntities'),
  161. 'convertutf8' => array('Admin.php', 'ConvertUtf8'),
  162. 'coppa' => array('Register.php', 'CoppaForm'),
  163. 'contactenos' => array('Contactenos.php', 'ShowHelp'),
  164. 'deletemsg' => array('RemoveTopic.php', 'DeleteMessage'),
  165. 'detailedversion' => array('Admin.php', 'VersionDetail'),
  166. 'display' => array('Display.php', 'Display'),
  167. 'dumpdb' => array('DumpDatabase.php', 'DumpDatabase2'),
  168.  
  169. 'featuresettings' => array('ModSettings.php', 'ModifyFeatureSettings'),
  170. 'featuresettings2' => array('ModSettings.php', 'ModifyFeatureSettings2'),
  171. 'findmember' => array('Subs-Auth.php', 'JSMembers'),
  172.  
  173. 'terminos-y-condiciones' => array('terminos-y-condiciones.php', 'ShowHelp'),
  174.  
  175. 'protocolo' => array('Protocolo.php', 'ShowHelp'),
  176. 'comunidades' => array('comunidades2.php', 'comunidades_main'),
  177. 'im' => array('PersonalMessage.php', 'MessageMain'),
  178.  
  179. 'lock' => array('LockTopic.php', 'LockTopic'),
  180. 'login' => array('LogInOut.php', 'Login'),
  181. 'login2' => array('LogInOut.php', 'Login2'),
  182. 'logout' => array('LogInOut.php', 'Logout'),
  183. 'maintain' => array('Admin.php', 'Maintenance'),
  184. 'manageattachments' => array('ManageAttachments.php', 'ManageAttachments'),
  185. 'manageboards' => array('ManageBoards.php', 'ManageBoards'),
  186. 'managecalendar' => array('ManageCalendar.php', 'ManageCalendar'),
  187. 'managesearch' => array('ManageSearch.php', 'ManageSearch'),
  188. 'markasread' => array('Subs-Boards.php', 'MarkRead'),
  189. 'membergroups' => array('ManageMembergroups.php', 'ModifyMembergroups'),
  190. 'mergetopics' => array('SplitTopics.php', 'MergeTopics'),
  191. 'mlist' => array('Memberlist.php', 'Memberlist'),
  192. 'modifycat' => array('ManageBoards.php', 'ModifyCat'),
  193. 'modifykarma' => array('Karma.php', 'ModifyKarma'),
  194. 'hist-mod' => array('Modlog.php', 'ViewModlog'),
  195. 'movetopic' => array('MoveTopic.php', 'MoveTopic'),
  196. 'movetopic2' => array('MoveTopic.php', 'MoveTopic2'),
  197. 'movetopic3' => array('MoveTopic.php', 'MoveTopic3'),
  198.  
  199. 'optimizetables' => array('Admin.php', 'OptimizeTables'),
  200. 'packageget' => array('PackageGet.php', 'PackageGet'),
  201. 'packages' => array('Packages.php', 'Packages'),
  202. 'permissions' => array('ManagePermissions.php', 'ModifyPermissions'),
  203. 'pgdownload' => array('PackageGet.php', 'PackageGet'),
  204. 'pm' => array('PersonalMessage.php', 'MessageMain'),
  205. 'post' => array('Post.php', 'Post'),
  206. 'agregar' => array('Agregar.php', 'Agregar'),
  207. 'agregar2' => array('Agregar.php', 'Agregar2'),
  208. 'post2' => array('Post.php', 'Post2'),
  209. 'postsettings' => array('ManagePosts.php', 'ManagePostSettings'),
  210.  
  211. /* 'profile' => array('Profile.php', 'ModifyProfile'),
  212. 'profile2' => array('Profile.php', 'ModifyProfile2'), */
  213. 'quotefast' => array('Post.php', 'QuoteFast'),
  214. 'quickmod' => array('Subs-Boards.php', 'QuickModeration'),
  215. 'quickmod2' => array('Subs-Boards.php', 'QuickModeration2'),
  216. 'index' => array('Recent.php', 'RecentPosts'),
  217. 'regcenter' => array('ManageRegistration.php', 'RegCenter'),
  218. 'registrarse' => array('Register.php', 'Register'),
  219. 'register2' => array('Register.php', 'Register2'),
  220. 'reminder' => array('Reminder.php', 'RemindMe'),
  221. 'removetopic2' => array('RemoveTopic.php', 'RemoveTopic2'),
  222. 'removeoldtopics2' => array('RemoveTopic.php', 'RemoveOldTopics2'),
  223. 'repairboards' => array('RepairBoards.php', 'RepairBoards'),
  224. 'requestmembers' => array('Subs-Auth.php', 'RequestMembers'),
  225. 'search' => array('Search.php', 'PlushSearch1'),
  226. 'search2' => array('Search.php', 'PlushSearch2'),
  227. 'serversettings' => array('ManageServer.php', 'ModifySettings'),
  228. 'serversettings2' => array('ManageServer.php', 'ModifySettings2'),
  229.        'saveme' => array('Protocolo.php', 'ShowHelps'),
  230.  
  231. 'smileys' => array('ManageSmileys.php', 'ManageSmileys'),
  232. 'splittopics' => array('SplitTopics.php', 'SplitTopics'),
  233. 'TOPs' => array('Stats.php', 'DisplayStats'),
  234. 'sticky' => array('LockTopic.php', 'Sticky'),
  235. 'rz' => array('Acciones.php', 'Acciones'),
  236. 'theme' => array('Themes.php', 'ThemesMain'),
  237. 'trackip' => array('Profile.php', 'trackIP'),
  238. 'viewErrorLog' => array('ManageErrors.php', 'ViewErrorLog'),
  239. 'viewmembers' => array('ManageMembers.php', 'ViewMembers'),
  240. 'viewprofile' => array('Profile.php', 'ModifyProfile'),
  241.  
  242. 'twittersettings' => array('TwitterSettings.php', 'ModifyTwitterSettings'),
  243. 'Vigilapuntos' => array('Vigilapuntos.php', 'Vigilapuntos'),
  244. 'catalogo-programas' => array('cat-software.php', 'inicio'),
  245. 'editados' => array('editados.php', 'editados'),
  246. 'catalogform_pelic' => array('catalogform_pelic.php', 'catalogform_pelic'),
  247. 'catalogo_pelic' => array('catalogo_pelic.php', 'catalogo_pelic'),
  248. 'catalogform_music' => array('catalogform_music.php', 'catalogform_music'),
  249. 'catalogo_musica' => array('catalogo_musica.php', 'catalogo_musica'),
  250. 'catalogform_juegos' => array('catalogform_juegos.php', 'catalogform_juegos'),
  251. 'catalogo_juegos' => array('catalogo_juegos.php', 'catalogo_juegos'),
  252. 'form_series' => array('form_series.php', 'form_series'),
  253. 'catalogo_series' => array('catalogo_series.php', 'catalogo_series'),
  254. 'publiform' => array('publiform.php', 'publiform_main'),
  255. 'anunciantes' => array('anunciantes.php', 'anunciantes_main'),
  256. 'borradores' => array('drafts.php', 'drafts'),
  257. 'buscador' => array('buscador.php', 'buscador'),
  258. 'streaming' => array('streaming.php', 'streaming'),
  259. /* 'tags' => array('Tags.php', 'TagsMain'), */
  260. //'extras' => array('Extras.php', 'Extras'),
  261. /* 'buddies' => array('Buddies.php', 'BuddiesMain'), */
  262. //'staff' => array('SeccionStaff.php', 'StaffMain'),
  263. /* 'jsoption' => array('Themes.php', 'SetJavaScript'),
  264.         'jspedidos' => array('pedidos.php','Setpedidos'),
  265. 'jsmodify' => array('Post.php', 'JavaScriptModify'), */
  266. //'widget' => array('widget.php', 'ShowHelp'),
  267. /* 'denunciar' => array('Denunciar.php', 'ShowHelp'), */
  268. /* 'enlazanos' => array('Enlazanos.php', 'ShowHelp'), */
  269. /* 'gsearch' => array('gsearch.php', 'ShowHelp'), */
  270. /* 'jsoption' => array('Themes.php', 'SetJavaScript'),
  271. 'jsmodify' => array('Post.php', 'JavaScriptModify'), */
  272. /* 'news' => array('ManageNews.php', 'ManageNews'), */
  273. //'monitor' => array('Monitor.php', 'Monitor'),
  274. /* 'printpage' => array('Printpage.php', 'PrintTopic'), */
  275. /* 'sitemap' => array('Sitemap.php', 'ShowSiteMap'), */
  276. //'verificationcode' => array('Register.php', 'VerificationCode'),
  277. //'who' => array('Who.php', 'Who'),
  278. //'.xml' => array('News.php', 'ShowXmlFeed'),
  279. //'enviar-puntos' => array('shop/Shop.php', 'Shop'),
  280. //'shop_general' => array('shop/ShopAdmin.php', 'ShopGeneral'),
  281. //'shop_inventory' => array('shop/ShopAdmin.php', 'ShopInventory'),
  282. //'shop_items_add' => array('shop/ShopAdmin.php', 'ShopItemsAdd'),
  283. //'shop_items_edit' => array('shop/ShopAdmin.php', 'ShopItemsEdit'),
  284. //'shop_restock' => array('shop/ShopAdmin.php', 'ShopRestock'),
  285. //'shop_usergroup' => array('shop/ShopAdmin.php', 'ShopUserGroup'),
  286. //'shop_cat' => array('shop/ShopAdmin.php', 'ShopCategories'),
  287. //'denuncias' => array('Denuncias.php', 'DenunciasMain'),
  288. //'spam' => array('spam.php', 'spam'),
  289. //'games' => array('games.php', 'GamesMain'),
  290. //'rank' => array('Ranking.php', 'RankMain'),
  291. //'pedidos' => array('pedidos.php','pedidos_main'),
  292. //'imagenes' => array('Gallery.php', 'GalleryMain'),
  293. //'dlattach' => array('Display.php', 'Download'),
  294. //'recomendar' => array('Recomendar.php', 'ShowHelp'),
  295. //'enviar-a-amigo' => array('SendTopic.php', 'SendTopic'),
  296. //'cine' => array('Cine.php', 'cine'),
  297.    //'trofeos' => array('Trofeos.php', 'TMain'),
  298. //'actrank' => array('Actrank.php', 'RankMain'),
  299. //'help' => array('Help.php', 'ShowHelp'),
  300. //'helpadmin' => array('Help.php', 'ShowAdminHelp'),
  301. //'notify' => array('Notify.php', 'Notify'),
  302. //'notifyboard' => array('Notify.php', 'BoardNotify'),
  303. );
  304.  
  305. $i = 1;
  306. while (isset($modSettings['CA' . $i . '_name']))
  307. {
  308. $actionArray[$modSettings['CA' . $i . '_name']] = array('CustomAction.php', 'CustomAction');
  309. $i++;
  310. }
  311.  
  312. // Get the function and file to include - if it's not there, do the board index.
  313. if (!isset($_REQUEST['action']) || !isset($actionArray[$_REQUEST['action']]))
  314. {
  315. if (!empty($settings['catch_action']))
  316. {
  317. require_once($sourcedir . '/Themes.php');
  318. return 'WrapAction';
  319. }
  320. require_once($sourcedir . '/Recent.php');
  321. return 'RecentPosts';
  322. }
  323.  
  324. require_once($sourcedir . '/' . $actionArray[$_REQUEST['action']][0]);
  325. return $actionArray[$_REQUEST['action']][1];
  326.  
  327.  
  328. }
  329.  
  330. ?>
  331.  







descarga :


http://www.mediafire.com/?v309gxlz79cdlxw


contraseña : bender



deberia funcionar asi

demo: http://identi.foro-web.net/


User: demo
pass: demomarco


http://www.dailymotion.com/video/xxvcmy_script_webcam




analisis


http://virusscan.jotti.org/es/scanresult/2181af8041541c3311f28910380eeb7d74ae4461




fuente:


http://www.spirate.net/foro/off-topic/vendo-theme-de-pijenti-original-bd/


http://www.spirate.net/foro/noticias-y-actualizaciones/spirate-v2-3-final/




Saludos.
14  Programación / Desarrollo Web / Generador de post falta poco para hacerla como la de identi. en: 19 Abril 2013, 05:42
bueno para ser sincero solo me gusta el generador de post de identi algo que no tiene taringa , bueno se podria usar para varias plataforma como Wordpress , smf , phbb , mybb  :D

















aqui el avance

http://www.mediafire.com/?gdgi5g2tjao8fm6
 

pueden probar el otro generador  de post,

www.identi.li

fuente:

http://www.forosdelweb.com/f54/identi-base-datos-1045851/
15  Programación / Desarrollo Web / Plantlla Series Yonkis Blogger en: 17 Abril 2013, 07:33
Hola gente  aqui la plantilla de series yonkis  :P

el creador
Atte: JoseTensei



Demo : http://seriesyonkis-clonesblogger.blogspot.com/

Descarga : http://www.clonesblogger.com/2013/04/descargar-plantilla-peliculasyonkis-para-blogger.html
Páginas: [1] 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ... 27
Powered by SMF 1.1.18 | SMF © 2006-2008, Simple Machines