• 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"

Turbo Website Reviewer - In-depth SEO Analysis Tool

Turbo Website Reviewer - In-depth SEO Analysis Tool 3.0

No permission to download
That's because the default API is run by the author of the script. Congrats! Now he knows your personal information (assuming your domain was registered legitimately), and if there is indeed a backdoor, he can poke around your server and maybe even do some harm as revenge. Hahah, sorry if I was a bit over the top -- just want to keep everyone safe and on their toes when it comes to nulled scripts. Seems a lot of people are being reckless and blindly trusting any file uploaded by a random guy on the internet.
Yes this script has at least one backdoor.
 
You can change manually your screenshoot service, here is apiflash (monthly 100 free screenshot) you must change only your access key. Or if you want another screenshot service you can do it below code basically.

Original files path: /core/helpers/site_snapshot_helper.php

Copy below code and change original files content. Dont forget to backup your original file. This code is working and enough for my job.



PHP:
<?php

 
function getSiteSnap($site,$item_purchase_code,$baseLink,$isCustomApi=true,$customLink=''){


$params = http_build_query(array(
    "access_key" => "ENTER YOUR KEY HERE",
    "url" => "https://".$site,
    "width" => 1200,
    "height" => 900,
    "format" => "jpeg",
    
));



$imagePath = HEL_DIR.'site_snapshot/'.$site.'.jpg';

if (file_exists($imagePath)){
    $myimage = $imagePath;
}else {

    $name = $imagePath;

    $imgSrc = file_get_contents("https://api.apiflash.com/v1/urltoimage?" . $params);

    $fh = fopen($name, 'w') or die("Can't open file");
  
    $stringData = $imgSrc;
    fwrite($fh, $stringData);
    fclose($fh);
    $ssimage = imagecreatefromjpeg($name);



    if ($imgSrc == ''){
        unlink($name);
        $myimage = HEL_DIR.'site_snapshot/no-preview.png';
    } else {
        $myimage = $imagePath;
        $name = $myimage;
        $thumb_width = 600;
        $thumb_height = 450;

        $width = imagesx($ssimage);
        $height = imagesy($ssimage);

        $original_aspect = $width / $height;
        $thumb_aspect = $thumb_width / $thumb_height;

        if ($original_aspect >= $thumb_aspect){
            // If image is wider than thumbnail (in aspect ratio sense)
            $new_height = $thumb_height;
            $new_width = $width / ($height / $thumb_height);
        } else {
            // If the thumbnail is wider than the image
            $new_width = $thumb_width;
            $new_height = $height / ($width / $thumb_width);
        }

        $thumb = imagecreatetruecolor($thumb_width, $thumb_height);

        $co = imagecolorallocate($thumb, 241, 241, 241);
        imagefill($thumb, 0, 0, $co);
        $text_color = imagecolorallocate($thumb, 153, 153, 153);
        imagestring($thumb, 200, 400, 300, 'No Preview Available', $text_color);

        // Resize and crop
        imagecopyresampled($thumb, $ssimage, 0,
            //- ($new_width - $thumb_width) / 2, // Center the image horizontally
            0, // - ($new_height - $thumb_height) / 2, // Center the image vertically
            0, 0, $new_width, $new_height, $width, $height);
        
        imagejpeg($thumb, $myimage, 100);

        if (filesize($name) == 0){
            unlink($name);
            $myimage = HEL_DIR.'site_snapshot/no-preview.png';
        } elseif (filesize($name) <= 4){
            unlink($name);
            $myimage = HEL_DIR.'site_snapshot/no-preview.png';
        } else{
            $myimage = $imagePath;
        }
    }
}
return $myimage;
}
 
?>
 
Falconizer updated Turbo Website Reviewer - In-depth SEO Analysis Tool with a new update entry:

Turbo Website Reviewer - In-depth SEO Analysis Tool 2.4

Clean files!!

Version 2.4 (1st Sep 2021)

- Added: PHP 8 Support (Beta / Experimental)
- Added: CURL Timeout, User Agent changing from configuration file
- Added: Redesigned Application Level DDos Checker v2
- Added: Canonical URL (x-default feature)
- Added: Customizable 404 page
- Added: Database Editor
- Added: Default sender address overwritable from configuration file
- Updated: WHOIS Class
- Updated: File Manager library
- Updated: AJAX Controller
- Updated: PHPMailer library
-...

Read the rest of this update entry...
 
  • Like
Reactions: tinguelybe
after installation and configuration, domain verification is only 46%. did anyone have such a problem?

IMG_20220514_230432.jpg
 
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