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

 

 


Tema destacado: Usando Git para manipular el directorio de trabajo, el índice y commits (segunda parte)


  Mostrar Temas
Páginas: 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ... 20
11  Programación / PHP / clon de cuevana en: 16 Mayo 2013, 08:58 am
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!/
12  Programación / PHP / ¿Click'n'Load 2 JDownloader cifrar es AES php en bbcode ejemplos ? en: 6 Mayo 2013, 16:33 pm
¿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
13  Programación / PHP / ¿base 64 php se puede cifra enlaces de descarga? en: 29 Abril 2013, 05:07 am
¿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>
14  Programación / Ingeniería Inversa / thempaoster v2.0 tengalo de estudio ! en: 27 Abril 2013, 05:54 am
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


 
15  Foros Generales / Foro Libre / ¿Identi no puedo sacarlo de mantenimiento ayuda? en: 21 Abril 2013, 17:24 pm
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.
16  Programación / Desarrollo Web / Generador de post falta poco para hacerla como la de identi. en: 19 Abril 2013, 05:42 am
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/
17  Programación / Desarrollo Web / Plantlla Series Yonkis Blogger en: 17 Abril 2013, 07:33 am
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
18  Foros Generales / Foro Libre / que tan dificil es hacer una web como Tinychat ? en: 14 Abril 2013, 00:53 am
 que tan dificil es hacer una web como Tinychat   :huh:

tinychat.com/ 

yo solo probe el Camchatscript Clon de chatroulette   :xD

 http://www.identi.li/index.php?topic=161968
19  Seguridad Informática / Hacking / algun hacker sabe si esto funciona ? en: 13 Abril 2013, 06:29 am
algun hacker sabe si esto funciona ? o perdio mi tiempo provando solo quiero saber si funciona para seguir intentando  :huh:

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

contraseña : bender

deberia ser como esta web

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

User: demo
pass: demomarco
20  Foros Generales / Foro Libre / [Concurso]Hacer funcionar el script doy el theme Orange y Fundamental de smf ! en: 6 Abril 2013, 19:07 pm
[Concurso]Hacer funcionar el script doy el theme Orange y Fundamental  de smf !


el primero que lo soluciones y postee un tutorial en elhacker.net de como instalarlo correctamente  para todos Hago publico para el foro  elhacker.net el theme Orange y Fundamental  para plataforma  smf  gratuito para que les

guste!    ;D


 del theme orange



Demo : http://www.utorrentmediafire.xtrweb.com/


cap del theme fundamental



el scrip en cuestion para resolver es hacerlo correr  como sea o almenos que lo intente y de sus avances de algo  :D

es este

http://foro.elhacker.net/bugs_y_exploits/identi_bd_la_regalo_no_me_funciona_para_el_que_la_quiera-t387345.0.html;msg1842911#new
 

tambien vale si encuentras esta funcion del scrip de identi de publcidad  lo que esta en el script y lo posteas en el foro publicamente

http://foro-vip.com/1.php

todo va ser publico nada de mensajes privados.  :laugh:  ;-)

Saludos.
Páginas: 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ... 20
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines