• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Wa Gateway | Multi device BETA | MPWA MD

Wa Gateway | Multi device BETA | MPWA MD v6.5.0 Nulled

No permission to download
Hello, after scanning qr code, it shows connecting and device is not connected but on the phone the linked device is showing
 

Attachments

  • whatsappp.png
    whatsappp.png
    80.8 KB · Views: 19
How to line break or new line in text message via API sending? I tried \n and %0A
But both are giving 403 error
 
Last edited:
Hello Everyone. I wrote a PHP code to decrypt the Encrypted PHP files. I uploaded that on a website but due to some security issues, I removed it from there.
Here, I am sharing the source code for that. Just create a PHP file and put the code below.

PHP:
<html>
    <head>
        <title>Script Decryptor</title>
    </head>
    <body>
        <form action="" method="post" enctype="multipart/form-data">
            <h2>Script Decryptor</h2>
            <label for="file">Select Encrypted File</label><br>
            <input type="file" name="file" id="file" style="border:1px solid">
            <input type="submit" name="decrypt" value="Decrypt">
        </form><hr>
        <?php
            if(isset($_FILES['file'])){
                $file_name = $_FILES['file']['name'];
                $file_size =$_FILES['file']['size'];
                $file_tmp =$_FILES['file']['tmp_name'];
                $content = file_get_contents($file_tmp);
                $content = str_replace("<?php","",$content);
                $content = str_replace("?>","",$content);
                $tmp_file_name = $file_name."_".time().".txt";
                while(strpos($content,'$mpediaencrypt') > -1 && strpos($content,'eval(') > -1){
                    $content = str_replace("eval(","file_put_contents('$tmp_file_name',",$content);
                    eval($content);
                    $content = file_get_contents($tmp_file_name);
                }
                echo "<h4>Plain Code ($file_name): </h4>";
                echo "<pre style='background: black;margin: 10px;padding: 10px;color: white;'>$content</pre>";
                echo '<p style="text-align:center;width:100%">Developed By <a href="https://facebook.com/AdiKhanOfficial">Adil Khan</a></p>';
            }
        ?>
        
    </body>
</html>
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock