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

CryptoPay WooCommerce - Cryptocurrency payment Gateway Plugin

CryptoPay WooCommerce - Cryptocurrency payment Gateway Plugin v.2.4.5

No permission to download
Why it shouldn't be if the code gets nulled and audited by Babiato's Null Masters?
I already use null staff, that's not a problem, but I'm talking right now about this crypto plugin, because it happens sometimes to have some black hole in code, and you can remain without crypto holdings.
I don't says this plugin have that problem, just asking to be cautions
 
  • Like
Reactions: fercaldas
You can check the code yourself, test it and then come back to me to say if the plugin is safe or not. The only thing I did is to circumvent the license activation & verification system by commenting 2 lines in order to deactivate them, modify the next one taking away a ! and add a simple "response true;" when it comes to verify the license. How it can't be safe if the wallet is non-custodial?
 
it worked by commenting line 40 and uncommenting line 39
on /vendor/beycan/license-verifier/src/LicenseVerifier.php

return $resp ? $resp : null;
// return true;
}
 
  • Like
Reactions: xjanova

2.4.3​

- Updated: Polygon network RPC addresses
- Fixed: WooCommerce Payments page module settings save error

@StatusUnkown Please update the plugin.

Thanks for your contribution.
 
  • Like
Reactions: ecademico
I bought it. Attached is the untouched latest version (2.4.4). But, you might want to check it on the testing server first. This version has an issue because the plugin spits out this message: "There was a problem converting currency". I hope that the vendor can fix it soon.
 

Attachments

  • codecanyon-cryptopay-woocommerce-2.4.4.zip
    3 MB · Views: 18
  • Like
Reactions: thelab
I bought it. Attached is the untouched latest version (2.4.4). But, you might want to check it on the testing server first. This version has an issue because the plugin spits out this message: "There was a problem converting currency". I hope that the vendor can fix it soon.
remove the download number
 
  • Like
Reactions: dathuynh
Hey, If you wanna null 2.4.4 just edit file
cryptopay-woocommerce/app/PluginHero/LicenseVerifier.php
Replace:

PHP:
    public function verify(string $licenseCode, ?string $productcode = null) : ?object
    {

        $headers = ["Content-Type: application/json"];

        $curl = curl_init($this->verifierAPI);
        curl_setopt_array($curl, [
            CURLOPT_POST => true,
            CURLOPT_RETURNTRANSFER => true,
            CURLOPT_REFERER => $_SERVER["SERVER_NAME"],
            CURLOPT_HTTPHEADER => $headers,
            CURLOPT_POSTFIELDS => json_encode([
                "licenseCode" => trim($licenseCode),
                "productCode" => trim($productcode)
            ]),
            CURLOPT_SSL_VERIFYHOST => false,
            CURLOPT_SSL_VERIFYPEER => false
        ]);

        $resp = json_decode(curl_exec($curl));

        curl_close($curl);
       
        return $resp ? $resp : null;
    }

With:
PHP:
    public function verify(string $licenseCode, ?string $productcode = null) : ?object
    {
        return (object) [
            'success' => true,
            'data' => (object) [
                'expireTime' => '2199-12-31T23:59:59Z'
            ]
        ];
    }

Then any key will work
 
  • Like
Reactions: hgn389 and thelab
WSS ERROR!

I added the wallet connect option by using the infura API key, but i have the error as:

WebSocket connection to 'wss://8.bridge.walletconnect.org/?env=browser&host=MYDOMAIN.com&protocol=wc&version=1' failed: A server with the specified hostname could not be found.

in console, i have valid SSL and the DNS is behind the CloudFlare!

I searched a lot about this issue but i did not find any reliable option!

please help me if you have an idea how do i fix this guys.

thanks.
 
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