• [ يمنع ] طرح أي موضوع يحوي على كراكات أو باتشات او كيجنات من غير فحصها عبر موقع فيروس توتال [ virustotal.com ] وطرح رابط الفحص ضِمن الموضوع.

جزاك‏ ‏الله كل‏ ‏خير
 

توقيع : men2018ksa
تفعيل مفاتيح مضمون ونظيف 100%

كود:
<?php
// EXAMPLE USAGE
$array = generate();
echo $array[0];
echo "<br />";
echo $array[1];


// FUNCTION
function generate()
{
        $digilist = "0123456789ABCDEFGHJKLMNPQRTUVWXY";

        //now we generate a new random ID number using the substrings of the digitList string above
        $id = NULL;
        $id .= substr($digilist, rand(1, 9), 1); //random number
        $id .= substr($digilist, rand(10, 31), 1); //then a letter
        $id .= substr($digilist, rand(10, 31), 1); //another letter
        $id .= substr($digilist, rand(1, 9), 1); //a number
        $id .= substr($digilist, rand(1, 9), 1); //and finally another number - simple :D
                   
    //ok so now we need to generate an MD5 hash of our ID
        $hash = md5($id);

        //cycle through the hash 16 (length of key) times (in steps of 2 because each hex bytes is 2 digits long)
        $i = 0;
        $key = NULL;
        for ($i; $i < 32; $i+=2)
        {
                //here we convert the next hex value to an integer and perform a bitwise AND operation against '31'
                //31 is the highest substring value in our digit list.
                $nextdigit = hexdec(substr($hash, $i, 2)) & 31;

                //if 'i' is divisable by 8 (every 4 cycles) then we want to add "-"
                if ((($i % 8) == 0) && ($i > 0))
                {
                        $key .= "-".substr($digilist, $nextdigit, 1);
                }
                else
                {
                        $key .= substr($digilist, $nextdigit, 1);
                }
        }

        $array = array($id, $key);
        //return
        return $array;
}
?>

وتقوم بنسخ الكود في هذا الموقع وتضغط Execute وسيفعل مفاتيح
https://www.tutorialspoint.com/php_mysql_online.php

احسنت اخي ... بارك الله فيك
تم التفعيل
 
توقيع : فلسطيني انا
الا يوجد موضوع لاخر نسخة من البرنامج مع التفعيل يا حبايب ؟
 
  • Like
التفاعلات: umar
تفعيل مفاتيح مضمون ونظيف 100%

كود:
<?php
// EXAMPLE USAGE
$array = generate();
echo $array[0];
echo "<br />";
echo $array[1];


// FUNCTION
function generate()
{
        $digilist = "0123456789ABCDEFGHJKLMNPQRTUVWXY";

        //now we generate a new random ID number using the substrings of the digitList string above
        $id = NULL;
        $id .= substr($digilist, rand(1, 9), 1); //random number
        $id .= substr($digilist, rand(10, 31), 1); //then a letter
        $id .= substr($digilist, rand(10, 31), 1); //another letter
        $id .= substr($digilist, rand(1, 9), 1); //a number
        $id .= substr($digilist, rand(1, 9), 1); //and finally another number - simple :D
                   
    //ok so now we need to generate an MD5 hash of our ID
        $hash = md5($id);

        //cycle through the hash 16 (length of key) times (in steps of 2 because each hex bytes is 2 digits long)
        $i = 0;
        $key = NULL;
        for ($i; $i < 32; $i+=2)
        {
                //here we convert the next hex value to an integer and perform a bitwise AND operation against '31'
                //31 is the highest substring value in our digit list.
                $nextdigit = hexdec(substr($hash, $i, 2)) & 31;

                //if 'i' is divisable by 8 (every 4 cycles) then we want to add "-"
                if ((($i % 8) == 0) && ($i > 0))
                {
                        $key .= "-".substr($digilist, $nextdigit, 1);
                }
                else
                {
                        $key .= substr($digilist, $nextdigit, 1);
                }
        }

        $array = array($id, $key);
        //return
        return $array;
}
?>

وتقوم بنسخ الكود في هذا الموقع وتضغط Execute وسيفعل مفاتيح
https://www.tutorialspoint.com/php_mysql_online.php

بارك الله فيك أخي الكريم
تم التفعيل بنجاح 100%
 
توقيع : Mahmoud Abas
بارك الله فيك
 
توقيع : mzizoo
ازاى فعل معاك ما بيقبلش معايا
أخي الكريم قم بالدخول إلي هذاا الموقع
https://www.tutorialspoint.com/php_mysql_online.php
وأكتب في المربع الأزرق هذا الكود
كود:
<?php
// EXAMPLE USAGE
$array = generate();
echo $array[0];
echo "<br />";
echo $array[1];


// FUNCTION
function generate()
{
        $digilist = "0123456789ABCDEFGHJKLMNPQRTUVWXY";

        //now we generate a new random ID number using the substrings of the digitList string above
        $id = NULL;
        $id .= substr($digilist, rand(1, 9), 1); //random number
        $id .= substr($digilist, rand(10, 31), 1); //then a letter
        $id .= substr($digilist, rand(10, 31), 1); //another letter
        $id .= substr($digilist, rand(1, 9), 1); //a number
        $id .= substr($digilist, rand(1, 9), 1); //and finally another number - simple :D
                  
    //ok so now we need to generate an MD5 hash of our ID
        $hash = md5($id);

        //cycle through the hash 16 (length of key) times (in steps of 2 because each hex bytes is 2 digits long)
        $i = 0;
        $key = NULL;
        for ($i; $i < 32; $i+=2)
        {
                //here we convert the next hex value to an integer and perform a bitwise AND operation against '31'
                //31 is the highest substring value in our digit list.
                $nextdigit = hexdec(substr($hash, $i, 2)) & 31;

                //if 'i' is divisable by 8 (every 4 cycles) then we want to add "-"
                if ((($i % 8) == 0) && ($i > 0))
                {
                        $key .= "-".substr($digilist, $nextdigit, 1);
                }
                else
                {
                        $key .= substr($digilist, $nextdigit, 1);
                }
        }

        $array = array($id, $key);
        //return
        return $array;
}
?>
وإضغط على Execute
سيظهر لك رقمين
إكتب الرقم باليسار في الخانة التي بالأعلى والرقم باليمين في الخانة بالأسفل وسيتم التفعيل مدى الحياة إن شاء الله
 
توقيع : Mahmoud Abas
أخي الكريم قم بالدخول إلي هذاا الموقع
https://www.tutorialspoint.com/php_mysql_online.php
وأكتب في المربع الأزرق هذا الكود
كود:
<?php
// EXAMPLE USAGE
$array = generate();
echo $array[0];
echo "<br />";
echo $array[1];


// FUNCTION
function generate()
{
        $digilist = "0123456789ABCDEFGHJKLMNPQRTUVWXY";

        //now we generate a new random ID number using the substrings of the digitList string above
        $id = NULL;
        $id .= substr($digilist, rand(1, 9), 1); //random number
        $id .= substr($digilist, rand(10, 31), 1); //then a letter
        $id .= substr($digilist, rand(10, 31), 1); //another letter
        $id .= substr($digilist, rand(1, 9), 1); //a number
        $id .= substr($digilist, rand(1, 9), 1); //and finally another number - simple :D
                
    //ok so now we need to generate an MD5 hash of our ID
        $hash = md5($id);

        //cycle through the hash 16 (length of key) times (in steps of 2 because each hex bytes is 2 digits long)
        $i = 0;
        $key = NULL;
        for ($i; $i < 32; $i+=2)
        {
                //here we convert the next hex value to an integer and perform a bitwise AND operation against '31'
                //31 is the highest substring value in our digit list.
                $nextdigit = hexdec(substr($hash, $i, 2)) & 31;

                //if 'i' is divisable by 8 (every 4 cycles) then we want to add "-"
                if ((($i % 8) == 0) && ($i > 0))
                {
                        $key .= "-".substr($digilist, $nextdigit, 1);
                }
                else
                {
                        $key .= substr($digilist, $nextdigit, 1);
                }
        }

        $array = array($id, $key);
        //return
        return $array;
}
?>
وإضغط على Execute
سيظهر لك رقمين
إكتب الرقم باليسار في الخانة التي بالأعلى والرقم باليمين في الخانة بالأسفل وسيتم التفعيل مدى الحياة إن شاء الله

جربت بالامس اكتر من مرة ولم يفلح والان ايضا ياريت ترسل لى سيريال ربما لدى خطأ
 

المرفقات

  • 12.webp
    12.webp
    41.6 KB · المشاهدات: 32
التعديل الأخير:
توقيع : mzizoo
جربت بالامس اكتر من مرة ولم يفلح والان ايضا ياريت ترسل لى سيريال ربما لدى خطأ

كود:
مفتاح التفعيل الاول
5GD26
T4A8-2PQ1-XH8G-XVU5

مفتاح التفعيل الثاني
1BT99
1UFC-TNNC-6WF6-79TB

مفتاح التفعيل الثالث
8BJ74
Q87V-CDDV-GJ20-LAHW

مفتاح التفعيل الرابع
1DF58
2X6L-6UYN-BM8Y-FQUX

مفتاح التفعيل الخامس
3CL74
XD3E-BMXN-GWKK-4E6M
 
توقيع : Mahmoud Abas
بارك الله فيك اخي
لم يتم التفعيل ممكن تفعيل للبرنامج على الخاص
 
أخي الكريم قم بالدخول إلي هذاا الموقع
https://www.tutorialspoint.com/php_mysql_online.php
وأكتب في المربع الأزرق هذا الكود
كود:
<?php
// EXAMPLE USAGE
$array = generate();
echo $array[0];
echo "<br />";
echo $array[1];


// FUNCTION
function generate()
{
        $digilist = "0123456789ABCDEFGHJKLMNPQRTUVWXY";

        //now we generate a new random ID number using the substrings of the digitList string above
        $id = NULL;
        $id .= substr($digilist, rand(1, 9), 1); //random number
        $id .= substr($digilist, rand(10, 31), 1); //then a letter
        $id .= substr($digilist, rand(10, 31), 1); //another letter
        $id .= substr($digilist, rand(1, 9), 1); //a number
        $id .= substr($digilist, rand(1, 9), 1); //and finally another number - simple :D
                
    //ok so now we need to generate an MD5 hash of our ID
        $hash = md5($id);

        //cycle through the hash 16 (length of key) times (in steps of 2 because each hex bytes is 2 digits long)
        $i = 0;
        $key = NULL;
        for ($i; $i < 32; $i+=2)
        {
                //here we convert the next hex value to an integer and perform a bitwise AND operation against '31'
                //31 is the highest substring value in our digit list.
                $nextdigit = hexdec(substr($hash, $i, 2)) & 31;

                //if 'i' is divisable by 8 (every 4 cycles) then we want to add "-"
                if ((($i % 8) == 0) && ($i > 0))
                {
                        $key .= "-".substr($digilist, $nextdigit, 1);
                }
                else
                {
                        $key .= substr($digilist, $nextdigit, 1);
                }
        }

        $array = array($id, $key);
        //return
        return $array;
}
?>
وإضغط على Execute
سيظهر لك رقمين
إكتب الرقم باليسار في الخانة التي بالأعلى والرقم باليمين في الخانة بالأسفل وسيتم التفعيل مدى الحياة إن شاء الله
جربت بنفس الطريقة التي قلت عليه وجربت السريالات للاسف لم تفلح يقول لي لم يتم العثور على مفتاح الترخيص ......
 
جربت بنفس الطريقة التي قلت عليه وجربت السريالات للاسف لم تفلح يقول لي لم يتم العثور على مفتاح الترخيص ......

إذا لم تفلح معك هذه الطريقة إليك طريقة أخرى
قم بتحميل هذا الباتش من موقع
ميديافير
من هنا
قم بتشغيله سيولد لك بعض السيريالات وإذا لم تعمل معك قم بإزالة البرنامج تماما وتشغيل الباتش والضغط على
Pre-Activate ثم قم بإعادة تثبيت البرنامج سيطلب منك إعادة تشغيل الجهاز وسيكون البرنامج مفعل جاهز
 
توقيع : Mahmoud Abas
تفعيل مفاتيح مضمون ونظيف 100%

كود:
<?php
// EXAMPLE USAGE
$array = generate();
echo $array[0];
echo "<br />";
echo $array[1];


// FUNCTION
function generate()
{
        $digilist = "0123456789ABCDEFGHJKLMNPQRTUVWXY";

        //now we generate a new random ID number using the substrings of the digitList string above
        $id = NULL;
        $id .= substr($digilist, rand(1, 9), 1); //random number
        $id .= substr($digilist, rand(10, 31), 1); //then a letter
        $id .= substr($digilist, rand(10, 31), 1); //another letter
        $id .= substr($digilist, rand(1, 9), 1); //a number
        $id .= substr($digilist, rand(1, 9), 1); //and finally another number - simple :D
                   
    //ok so now we need to generate an MD5 hash of our ID
        $hash = md5($id);

        //cycle through the hash 16 (length of key) times (in steps of 2 because each hex bytes is 2 digits long)
        $i = 0;
        $key = NULL;
        for ($i; $i < 32; $i+=2)
        {
                //here we convert the next hex value to an integer and perform a bitwise AND operation against '31'
                //31 is the highest substring value in our digit list.
                $nextdigit = hexdec(substr($hash, $i, 2)) & 31;

                //if 'i' is divisable by 8 (every 4 cycles) then we want to add "-"
                if ((($i % 8) == 0) && ($i > 0))
                {
                        $key .= "-".substr($digilist, $nextdigit, 1);
                }
                else
                {
                        $key .= substr($digilist, $nextdigit, 1);
                }
        }

        $array = array($id, $key);
        //return
        return $array;
}
?>

وتقوم بنسخ الكود في هذا الموقع وتضغط Execute وسيفعل مفاتيح
https://www.tutorialspoint.com/php_mysql_online.php
لقد قمت بتطبيق الخطوات ولكن لم يصلح التفعيل وافاد بان السريال تجاوز عدد المستخدمين المسموح به
اذا امكن اخى الفاضل ان تشرح الطريقة بتفصيل اكثر.
وجزاك الله خيرا
 
توقيع : walid251981
للاسف لم ينفع عن طريق الباتش هذه الرسالة الموجودة في الموقع ميديافير
The file you requested has been blocked for a violation of our Terms of Service.

Still have questions, or think we've made a mistake? Please contact support for further assistance.
اتمنى تزودينا بالمفتاح على الخاص
وشكرا
 
جربت بالامس اكتر من مرة ولم يفلح والان ايضا ياريت ترسل لى سيريال ربما لدى خطأ

بارك الله فيك اخي
لم يتم التفعيل ممكن تفعيل للبرنامج على الخاص

جربت بنفس الطريقة التي قلت عليه وجربت السريالات للاسف لم تفلح يقول لي لم يتم العثور على مفتاح الترخيص ......

لقد قمت بتطبيق الخطوات ولكن لم يصلح التفعيل وافاد بان السريال تجاوز عدد المستخدمين المسموح به
اذا امكن اخى الفاضل ان تشرح الطريقة بتفصيل اكثر.
وجزاك الله خيرا

للاسف لم ينفع عن طريق الباتش هذه الرسالة الموجودة في الموقع ميديافير
The file you requested has been blocked for a violation of our Terms of Service.

Still have questions, or think we've made a mistake? Please contact support for further assistance.
اتمنى تزودينا بالمفتاح على الخاص
وشكرا

إخواني الكرام
نظرا لكثرة إستخدام المستخدمين للسيريالت قامت الشركة بإيقاف هذه الطريقة
وقد قمت بتجربتها أكثر من مرة وبأكثر من سيريال وفي عدة أوقات ولم تفلح معي
لذلك جلبت لكم
باتش مجرب ويعمل بإذن الله دون مشاكل عن تجربة
هنا أو هنا أو هنا
وليعمل الباتش بشكل صحيح يجب تشغيله
قبل تثبيت البرنامج وإذا كان البرنامج مثبتا قم بإزالته تماما وفتح الباتش والضغط على Pre-Activate والإنتظار لحظات حتى يتم عمله ثم تقوم بتثبيت البرنامج وسيطلب منك إعادة تشغيل الجهاز وبعدها ستجد البرنامج كامل مفعل مدى الحياة بإذن الله
 
توقيع : Mahmoud Abas
إخواني الكرام
نظرا لكثرة إستخدام المستخدمين للسيريالت قامت الشركة بإيقاف هذه الطريقة
وقد قمت بتجربتها أكثر من مرة وبأكثر من سيريال وفي عدة أوقات ولم تفلح معي
لذلك جلبت لكم
باتش مجرب ويعمل بإذن الله دون مشاكل عن تجربة
هنا أو هنا أو هنا
وليعمل الباتش بشكل صحيح يجب تشغيله
قبل تثبيت البرنامج وإذا كان البرنامج مثبتا قم بإزالته تماما وفتح الباتش والضغط على Pre-Activate والإنتظار لحظات حتى يتم عمله ثم تقوم بتثبيت البرنامج وسيطلب منك إعادة تشغيل الجهاز وبعدها ستجد البرنامج كامل مفعل مدى الحياة بإذن الله
الف شكر اخ محمد عباس وجزاك الله خير وما قصرت
 
تفعيل مفاتيح مضمون ونظيف 100%

كود:
<?php
// EXAMPLE USAGE
$array = generate();
echo $array[0];
echo "<br />";
echo $array[1];


// FUNCTION
function generate()
{
        $digilist = "0123456789ABCDEFGHJKLMNPQRTUVWXY";

        //now we generate a new random ID number using the substrings of the digitList string above
        $id = NULL;
        $id .= substr($digilist, rand(1, 9), 1); //random number
        $id .= substr($digilist, rand(10, 31), 1); //then a letter
        $id .= substr($digilist, rand(10, 31), 1); //another letter
        $id .= substr($digilist, rand(1, 9), 1); //a number
        $id .= substr($digilist, rand(1, 9), 1); //and finally another number - simple :D
                  
    //ok so now we need to generate an MD5 hash of our ID
        $hash = md5($id);

        //cycle through the hash 16 (length of key) times (in steps of 2 because each hex bytes is 2 digits long)
        $i = 0;
        $key = NULL;
        for ($i; $i < 32; $i+=2)
        {
                //here we convert the next hex value to an integer and perform a bitwise AND operation against '31'
                //31 is the highest substring value in our digit list.
                $nextdigit = hexdec(substr($hash, $i, 2)) & 31;

                //if 'i' is divisable by 8 (every 4 cycles) then we want to add "-"
                if ((($i % 8) == 0) && ($i > 0))
                {
                        $key .= "-".substr($digilist, $nextdigit, 1);
                }
                else
                {
                        $key .= substr($digilist, $nextdigit, 1);
                }
        }

        $array = array($id, $key);
        //return
        return $array;
}
?>

وتقوم بنسخ الكود في هذا الموقع وتضغط Execute وسيفعل مفاتيح
https://www.tutorialspoint.com/php_mysql_online.php


بارك الله فيك وفي والديك وجزيت الجنة
نفعت معي بعد محاولات كثيرة جداً
الموضوع محتاج صبر حتى يضرب معك مفتاح شغال
 
عودة
أعلى