Hoşgeldin Misafir

Kırılmasını Talep Ettiğiniz Temalar

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...

malibutr

16 Eki 2021
62 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:

Bunu kırabilirsen çok makbule geçer.
 

malibutr

16 Eki 2021
62 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
Elimde XenForo [XenGenTr] Style V9 teması mevcut. Dosya içerisinde bulunan eklenti ioncube ile şifrelenmiş. Kırabilecek olan arkadaşa dosyaları atıyorum. Eğer kırma yapabilirse temanın tüm halini atacağım.

l0y4bw6.png

2qgd2vy.png

nft4v0i.png

iri4qfd.png

Şaka yapmıyorum çok ciddiyim.
Kırılması gereken dosyaları aşağıdaki bağlantıdan atıyorum.
Kırabilen arkadaş varsa eğer aşağıdaki dosyalarda bulunan ioncube ile şifrelenmiş dosyaları decode edip bana atarsa full tema dosyalarını test ettikten sonra anında arkadaşa ileteceğim.

 

xquarz

26 Ocak 2023
12 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
Selamlar,


Foruma özel olarak kaynak yapısı oluşturacağım.
Tarafıma İoncube şifreli kırılmasını talep ettiğiniz yazılımları tam olarak tüm dosyalarıyla zip halinde özel mesaj yolundan iletmeniz yeterli olacaktır.
Tüm dosyalar geldikten sonra gerekli kırma işlemlerini sağlayıp ileteceğim.

Kural:

TÜM DOSYALAR DIŞINDA SADECE ŞİFRELİ DOSYALARI GÖNDERENLERİN MESAJLARI DİKKATE ALINMAYACAKTIR.

Dosyaları ZİP şeklinde ÖM yoluyla gönderim konu altına yazabilirsiniz.
Konu altına devamlı spam yorum atmayın. Sadece dosyaları bana iletin ve bekleyin.
glycon v2 olabilir formlarda verilenlerin hic biri calismiyor
 

Snekhers

31 Tem 2021
56 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:

Bunu kırabilirsen çok makbule geçer.
PHP:
<?php

lisans();
function lisans()
{
    $site = startBot("http://www.erencan.net/lisanslar/teknikservis-v1/" . $_SERVER["HTTP_HOST"]);
    if ($site != "" && $site == 0) {
        echo "<div align=\"center\"><br> Lisans oluşturulmamış. Ücretsiz olarak <br><a target=\"_blank\" href=\"http://www.erencan.net/icerik/1/ecd-teknik-servis-scripti-v1-0-0-ucretsiz\">ECD Teknik Servis Scripti v1.0.0 ÜCRETSİZ</a> <br>adresinden lisans alabilirsiniz.</div>";
        exit;
    }
}
function startBot($site_url, $timeout = 20)
{
    $ch = curl_init();
    $tarayici = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:32.0) Gecko/20100101 Firefox/32.0";
    curl_setopt($ch, CURLOPT_URL, $site_url);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
    curl_setopt($ch, CURLOPT_USERAGENT, $tarayici);
    $result = curl_exec($ch);
    curl_close($ch);
    return $result;
}
function pisset($value = "")
{
    if ($value == "") {
        if ($_POST) {
            return true;
        }
        return false;
    }
    if ($_POST) {
        if (isset($_POST[$value])) {
            return true;
        }
        return false;
    }
    return false;
}
function gisset($value = "")
{
    if ($value == "") {
        if ($_GET) {
            return true;
        }
        return false;
    }
    if ($_GET) {
        if (isset($_GET[$value])) {
            return true;
        }
        return false;
    }
    return false;
}
function post($value)
{
    if (isset($_POST[$value])) {
        return trim($_POST[$value]);
    }
    return false;
}
function get($value)
{
    if (isset($_GET[$value])) {
        return trim($_GET[$value]);
    }
    return false;
}
function git($value)
{
    header("location:" . $value);
    exit;
}
function sureliGit($url, $sure = 0)
{
    header("refresh:" . $sure . ";" . $url);
}
function pr($arr)
{
    echo "<pre>";
    print_r($arr);
    echo "</pre>";
}
function seoUrl($param)
{
    $convert_from = ["Ç", "ç", "Ğ", "ğ", "ı", "İ", "Ö", "ö", "Ş", "ş", "Ü", "ü"];
    $convert_to = ["C", "c", "G", "g", "i", "I", "O", "o", "S", "s", "U", "u"];
    $param = trim($param);
    $param = str_replace($convert_from, $convert_to, $param);
    $param = preg_replace("/\\r|\\n/", " ", $param);
    $param = preg_replace("/[^A-Za-z0-9]/", " ", $param);
    $param = preg_replace("/\\s+/", " ", $param);
    $param = str_replace(" ", "-", $param);
    $param = strtolower($param);
    return $param;
}
function GetIP()
{
    if (getenv("HTTP_CLIENT_IP")) {
        $ip = getenv("HTTP_CLIENT_IP");
    } else {
        if (getenv("HTTP_X_FORWARDED_FOR")) {
            $ip = getenv("HTTP_X_FORWARDED_FOR");
            if (strstr($ip, ",")) {
                $tmp = explode(",", $ip);
                $ip = trim($tmp[0]);
            }
        } else {
            $ip = getenv("REMOTE_ADDR");
        }
    }
    return $ip;
}
function kisalt($yazi, $sinir)
{
    $uzunluk = strlen($yazi);
    $icerik = substr($yazi, 0, $sinir);
    echo $icerik;
}
function durum($val)
{
    if ($val == 1) {
        return "Aktif";
    }
    return "Pasif";
}
function TarayiciAdres()
{
    global $siteAdresi;
    $adres = "http://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
    $link = explode("/", $adres);
    if ($_SERVER["HTTP_HOST"] == $siteAdresi) {
        unset($link[2]);
        return array_values($link);
    }
    return $link;
}
function select($value2, $value3)
{
    if ($value2 == $value3) {
        return "selected";
    }
}
function checked($value2, $value3)
{
    if ($value2 == $value3) {
        return "checked";
    }
}
function yuzde($a, $b)
{
    $c = $a / 100;
    echo floor($b / $c);
}
function ResimYukle($resim, $yer, $boyut = false, $on_ad = false)
{
    $image = new Verot\Upload\Upload($resim);
    if ($image->uploaded) {
        if ($boyut) {
            $image->file_name_body_pre = $on_ad;
            $boyut_bol = explode("x", $boyut);
            $image->image_convert = "jpg";
            $image->image_resize = true;
            $image->image_ratio_crop = true;
            list($image->image_x, $image->image_y) = $boyut_bol;
            $image->allowed = ["image/*"];
            $image->Process($yer . "/" . $boyut);
        }
        $image->file_name_body_pre = $on_ad;
        $image->image_convert = "jpg";
        $image->Process($yer . "/");
        $image->allowed = ["image/*"];
        if ($image->processed) {
            return $image->file_dst_name;
        }
        return $image->error;
    }
}
function CokluResimYukle($resimler, $yer, $boyut = false, $on_ad = false)
{
    $images = [];
    foreach ($resimler as $k => $l) {
        foreach ($l as $i => $v) {
            if (!array_key_exists($i, $images)) {
                $images[$i] = [];
            }
            $images[$i][$k] = $v;
        }
    }
    foreach ($images as $resim) {
        $image = new Verot\Upload\Upload($resim);
        if ($image->uploaded) {
            if ($boyut) {
                $image->file_name_body_pre = $on_ad;
                $boyut_bol = explode("x", $boyut);
                $image->image_convert = "jpg";
                $image->image_resize = true;
                $image->image_ratio_crop = true;
                list($image->image_x, $image->image_y) = $boyut_bol;
                $image->allowed = ["image/*"];
                $image->Process($yer . "/" . $boyut);
            }
            $image->file_name_body_pre = $on_ad;
            $image->image_convert = "jpg";
            $image->Process($yer . "/");
            $image->allowed = ["image/*"];
            if ($image->processed) {
                $sonuc[] = $image->file_dst_name;
            } else {
                $sonuc[] = $image->error;
            }
        }
    }
    return $sonuc;
}
function dosyaListele($dir)
{
    if (is_dir($dir) && ($handle = opendir($dir))) {
        while (($file = readdir($handle)) !== false) {
            if ($file != "." && $file != ".." && $file != "Thumbs.db") {
                echo "<a target=\"_blank\" href=\"" . $dir . $file . "\">" . $file . "</a><br>" . "\n";
            }
        }
        closedir($handle);
    }
}
function EmailQuery($val, $user_id = "")
{
    global $db;
    if ($user_id == "") {
        $query = $db->query("SELECT * FROM users WHERE user_email = ?")->arr([$val])->select(1);
        return $query;
    }
    $query = $db->query("SELECT * FROM users WHERE user_email = ?")->arr([$val])->select(1);
    if ($query["user_id"] == $user_id) {
        return "";
    }
    return $query;
}
function serviceStatus($val)
{
    if ($val = 0) {
        echo "Seçim Yapılmadı";
    } else {
        if ($val = 1) {
            echo "Teslim Alındı";
        } else {
            if ($val = 2) {
                echo "Sırada";
            } else {
                if ($val = 3) {
                    echo "Onarımda";
                } else {
                    if ($val = 4) {
                        echo "Araçda";
                    } else {
                        if ($val = 5) {
                            echo "Parça Bekleniyor";
                        } else {
                            if ($val = 6) {
                                echo "Onarıldı";
                            } else {
                                if ($val = 7) {
                                    echo "Teslim Edildi";
                                } else {
                                    if ($val = 8) {
                                        echo "İptal";
                                    } else {
                                        if ($val = 9) {
                                            echo "Reddedildi";
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
function warrantyStatus($val)
{
    if ($val = 0) {
        echo "Seçim Yapılmadı";
    } else {
        if ($val = 1) {
            echo "Garanti Dışı";
        } else {
            if ($val = 2) {
                echo "Garantili";
            } else {
                if ($val = 3) {
                    echo "Servis Garantili";
                } else {
                    if ($val = 4) {
                        echo "Garanti Yok";
                    }
                }
            }
        }
    }
}
function doviz()
{
    $connect_web = simplexml_load_file("http://www.tcmb.gov.tr/kurlar/today.xml");
    return ["dolar" => ["alis" => (string) $connect_web->Currency[0]->BanknoteBuying, "satis" => (string) $connect_web->Currency[0]->BanknoteSelling], "euro" => ["alis" => (string) $connect_web->Currency[3]->BanknoteBuying, "satis" => (string) $connect_web->Currency[3]->BanknoteSelling], "pound" => ["alis" => (string) $connect_web->Currency[4]->BanknoteBuying, "satis" => (string) $connect_web->Currency[4]->BanknoteSelling], "sar" => ["alis" => (string) $connect_web->Currency[10]->BanknoteBuying, "satis" => (string) $connect_web->Currency[10]->BanknoteSelling]];
}
function simge($val)
{
    if ($val == "tr") {
        return "<i class=\"fa fa-lira-sign\"></i>";
    }
    if ($val == "dolar") {
        return "<i class=\"fa fa-dollar-sign\"></i>";
    }
    if ($val == "euro") {
        return "<i class=\"fa fa-euro-sign\"></i>";
    }
    if ($val == "pound") {
        return "<i class=\"fa fa-pound-sign\"></i>";
    }
    if ($val == "sar") {
        return "<strong>SAR</strong>";
    }
}
function birim($val)
{
    if ($val == "tr") {
        return "Türk Lirası";
    }
    if ($val == "dolar") {
        return "Dolar";
    }
    if ($val == "euro") {
        return "Euro";
    }
    if ($val == "pound") {
        return "Pound";
    }
    if ($val == "sar") {
        return "Sar";
    }
}
function parca($val)
{
    global $db;
    return $db->query("SELECT * FROM stocks WHERE stock_id = ?")->arr([$val])->select(1);
}

?>
 

Snekhers

31 Tem 2021
56 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
Elimde XenForo [XenGenTr] Style V9 teması mevcut. Dosya içerisinde bulunan eklenti ioncube ile şifrelenmiş. Kırabilecek olan arkadaşa dosyaları atıyorum. Eğer kırma yapabilirse temanın tüm halini atacağım.

l0y4bw6.png

2qgd2vy.png

nft4v0i.png

iri4qfd.png

Şaka yapmıyorum çok ciddiyim.
Kırılması gereken dosyaları aşağıdaki bağlantıdan atıyorum.
Kırabilen arkadaş varsa eğer aşağıdaki dosyalarda bulunan ioncube ile şifrelenmiş dosyaları decode edip bana atarsa full tema dosyalarını test ettikten sonra anında arkadaşa ileteceğim.


FOOTER
Kod:
<?php

namespace XenGenTr\XGTStyleV9\Widget;

class Footer extends \XF\Widget\AbstractWidget
{
    public function render()
    {
        $db = \XF::db();
        $permissionValid = $db->fetchAll("SELECT watch_group_type FROM xf_forum_watch_group");
        $permissionValidData = $permissionValid[0];
        if ($permissionValidData["watch_group_type"] != 1) {
            return "";
        }
        $viewParams = ["forumStatistics" => $this->app->forumStatistics];
        return $this->renderer("xgtSv9_footer", $viewParams);
    }
    public function verifyOptions(\XF\Http\Request $request, &$options, &$error = NULL)
    {
        $options = $request->filter(["limit" => "uint", "rich_usernames" => "bool", "show_counter" => "bool"]);
        if ($options["limit"] < 1) {
            $options["limit"] = 1;
        }
        return true;
    }
}

?>



FORUM
Kod:
<?php

namespace XenGenTr\XGTStyleV9\XF\Pub\Controller;

class Forum extends XFCP_Forum
{
    public function actionIndex(\XF\Mvc\ParameterBag $params)
    {
        $db = \XF::db();
        $permissionValid = $db->fetchAll("SELECT forum_group_type FROM xf_forum_group");
        $permissionValidData = $permissionValid[0];
        if ($permissionValidData["forum_group_type"] != 1) {
            return "";
        }
        if ($params->node_id || $params->node_name) {
            return $this->rerouteController("XF:Forum", "Forum", $params);
        }
        if ($this->responseType == "rss") {
            return $this->getForumRss();
        }
        $this->options();
        switch ($this->options()->forumsDefaultPage) {
            case "new_posts":
                return $this->rerouteController("XenGenTr\\XGTStyleV9\\XF\\Pub\\Controller\\Forum", "newposts");
                break;
            case "forums":
            default:
                return $this->rerouteController("XenGenTr\\XGTStyleV9\\XF\\Pub\\Controller\\Forum", "list");
        }
    }
}

?>



KULLANICI PANELİ
Kod:
<?php

namespace XenGenTr\XGTStyleV9\Widget;

class KullaniciPaneli extends \XF\Widget\AbstractWidget
{
    public function render()
    {
        $db = \XF::db();
        $permissionValid = $db->fetchAll("SELECT watch_group_type FROM xf_forum_watch_group");
        $permissionValidData = $permissionValid[0];
        if ($permissionValidData["watch_group_type"] != 1) {
            return "";
        }
        $viewParams = [];
        return $this->renderer("xgtSv9_kullanici_paneli_widget", $viewParams);
    }
    public function verifyOptions(\XF\Http\Request $request, &$options, &$error = NULL)
    {
        $options = $request->filter(["limit" => "uint", "rich_usernames" => "bool", "show_counter" => "bool"]);
        if ($options["limit"] < 1) {
            $options["limit"] = 1;
        }
        return true;
    }
}

?>



LİSTENER
Kod:
<?php

namespace XenGenTr\XGTStyleV9;

class Listener
{
    public static function nodeEntityStructure(\XF\Mvc\Entity\Manager $em, \XF\Mvc\Entity\Structure &$structure)
    {
        $structure->columns["xgtSv9_fa_ikon"] = ["type" => \XF\Mvc\Entity\Entity::STR, "default" => NULL, "nullable" => true];
        $structure->columns["xgtSv9_forum_ap"] = ["type" => \XF\Mvc\Entity\Entity::STR, "default" => NULL, "nullable" => true];
    }
    public static function templaterGlobalDataListener(\XF\App $app, &$data, $reply)
    {
        $db = \XF::db();
        $permissionValid = $db->fetchAll("SELECT forum_group_type FROM xf_forum_group");
        $permissionValidData = $permissionValid[0];
        $permissionConfirm = $db->fetchAll("SELECT watch_group_type FROM xf_forum_watch_group");
        $permissionConfirmData = $permissionConfirm[0];
        if ($permissionValidData["forum_group_type"] == 1 || $permissionConfirmData["watch_group_type"] == 1) {
            $data["xf_board_status"] = ["board_status_proved" => $permissionValidData, "board_status_confirm" => $permissionConfirmData];
            if ($app->extension()->resolveExtendedClassToRoot($reply) != "XF\\Mvc\\Reply\\View") {
                return $data["xf_board_status"];
            }
        }
    }
}

?>


SETUP
Kod:
<?php

namespace XenGenTr\XGTStyleV9;

class Setup extends \XF\AddOn\AbstractSetup
{
    use \XF\AddOn\StepRunnerInstallTrait;
    use \XF\AddOn\StepRunnerUpgradeTrait;
    use \XF\AddOn\StepRunnerUninstallTrait;
    public function installStep1()
    {
        $this->schemaManager()->alterTable("xf_node", function (\XF\Db\Schema\Alter $table) {
            $table->addColumn("xgtSv9_fa_ikon", "mediumblob")->nullable();
            $table->addColumn("xgtSv9_forum_ap", "varchar", 100)->setDefault("");
        });
    }
    public function installStep2()
    {
        $db = \XF::db();
        $check = $db->fetchAll("SHOW TABLES LIKE 'xf_forum_watch_group'");
        if (!$check) {
            $this->schemaManager()->createTable("xf_forum_watch_group", function (\XF\Db\Schema\Create $table) {
                $table->addColumn("watch_group_id", "varchar", 3);
                $table->addColumn("watch_group_type", "varchar", 3);
                $table->addPrimaryKey("watch_group_id");
            });
            $data = [];
            $data["xf_forum_watch_group"] = "            INSERT INTO `xf_forum_watch_group` (`watch_group_id`, `watch_group_type`)            VALUES                ('0','0')        ";
            $db = $this->db();
            foreach ($data as $dataQuery) {
                $db->query($dataQuery);
            }
        }
    }
    public function installStep3()
    {
        $db = \XF::db();
        $check = $db->fetchAll("SHOW TABLES LIKE 'xf_forum_group'");
        if (!$check) {
            $this->schemaManager()->createTable("xf_forum_group", function (\XF\Db\Schema\Create $table) {
                $table->addColumn("forum_group_id", "varchar", 3);
                $table->addColumn("forum_group_type", "varchar", 3);
                $table->addPrimaryKey("forum_group_id");
            });
            $data = [];
            $data["xf_forum_watch_group"] = "            INSERT INTO `xf_forum_group` (`forum_group_id`, `forum_group_type`)            VALUES                ('0','0')        ";
            $db = $this->db();
            foreach ($data as $dataQuery) {
                $db->query($dataQuery);
            }
        }
    }
    public function installStep4()
    {
        $this->createWidget("xgtSv9_footer_istatistik", "xgtSv9Footeristatistik_wd", ["positions" => []]);
        $this->createWidget("xgtSv9_enyeni_kullanicilar", "xgtSv9Enyeniler_wd", ["positions" => []]);
        $this->createWidget("xgtSv9_eniyi_kullanicilar", "xgtSv9EniyiKullanici_wd", ["positions" => []]);
        $this->createWidget("xgtSv9_tepki_lideri_konular", "xgtSv9TepkiLideriKonu_wd", ["positions" => []]);
        $this->createWidget("xgtSv9_kullanici_paneli", "xgtSv9KullaniciPaneli_wd", ["positions" => []]);
    }
    public function uninstallStep1()
    {
        $this->schemaManager()->alterTable("xf_node", function (\XF\Db\Schema\Alter $table) {
            $table->dropColumns("xgtSv9_fa_ikon");
            $table->dropColumns("xgtSv9_forum_ap");
        });
    }
    public function uninstallStep2()
    {
        $this->deleteWidget("xgtSv9Footeristatistik_wd");
        $this->deleteWidget("xgtSv9Enyeniler_wd");
        $this->deleteWidget("xgtSv9EniyiKullanici_wd");
        $this->deleteWidget("xgtSv9TepkiLideriKonu_wd");
        $this->deleteWidget("xgtSv9KullaniciPaneli_wd");
    }
}

?>
 

mevzu

18 May 2023
5 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
Selamlar,


Foruma özel olarak kaynak yapısı oluşturacağım.
Tarafıma İoncube şifreli kırılmasını talep ettiğiniz yazılımları tam olarak tüm dosyalarıyla zip halinde özel mesaj yolundan iletmeniz yeterli olacaktır.
Tüm dosyalar geldikten sonra gerekli kırma işlemlerini sağlayıp ileteceğim.

Kural:

TÜM DOSYALAR DIŞINDA SADECE ŞİFRELİ DOSYALARI GÖNDERENLERİN MESAJLARI DİKKATE ALINMAYACAKTIR.

Dosyaları ZİP şeklinde ÖM yoluyla gönderim konu altına yazabilirsiniz.
Konu altına devamlı spam yorum atmayın. Sadece dosyaları bana iletin ve bekleyin.
Merhabalar

Script Link :

Şimdiden Eline Emeğine Sağlık
 

delidolu1adam

24 May 2020
24 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:

deseplikon

16 Ocak 2018
197 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
Hocam selamlar bu temanın içinde lisans key girilip aktif edilen eklentiler var kırabilirseniz çok makbule geçer.

Dosya Linkleri;

Virus Total;
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...