• [ يمنع ] طرح أي موضوع يحوي على كراكات أو باتشات او كيجنات من غير فحصها عبر موقع فيروس توتال [ 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
 
جزاك الله خيرا

هل من حل لرسالة الخطأ عند بدء الويندوز؟
 
جزاك الله كل خير
وشكراً لك
 
السلام عليكم ورحمة الله وبركاته
الرجاء المساعده
عند تشغيل البرنامج تظهر هذه الرساله

[Window Title]
C:\Program Files\Malwarebytes\Anti-Malware\mbam.exe

[Content]
C:\Program Files\Malwarebytes\Anti-Malware\mbam.exe

The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail.


[OK]
 

المرفقات

  • wrong msg.webp
    wrong msg.webp
    13.4 KB · المشاهدات: 8
مشكوور اخوي على طرحك الرائع :)
 
يعطيكم العافيه على المجهود الاكثر من رائع
 
شكرا لك كثيرا
 
مشكوووووووور
 
عودة
أعلى