How to null a wordpress plugin that needs an API code?

stephen88

Power Member
Joined
Jan 3, 2022
Messages
565
Reaction score
325
Can anyone offer advise on how i can null a wordpress plugin that need an API code to activate it ?

Thank you
 
as far as i know, nulling is only about the verification or activation mainly related to keyphrases.
for the API you should null ( no one can ) the api source such as the chatgpt API and stuff.
 
as far as i know, nulling is only about the verification or activation mainly related to keyphrases.
for the API you should null ( no one can ) the api source such as the chatgpt API and stuff.
It is not for chatgpt.

Are you saying API cant be nulled ?
 
just simply remove the code to triggers api call. Also, reomve the code verification
 
just simply remove the code to triggers api call. Also, reomve the code verification
This is what my thinking was...

I have looked through the plugin and there is an API folder, im assuming this is just for licensing more than actually effecting the plugin and how it works.

I did use Google but could not find any specific answers...


In the code, can you advise what part i need to be looking at to deactivate the API verfication
 
you can remove the part, but if it requires an API then it wont help you. the API is external on another server, so removing that will probably make the plugin useless.
Thanks for responding.

My thinking was that the API was used on maybe a licensing server.

As a couple of years ago someone managed to crack the plugin, well not crack but found a work around... since then, it appears they have added an API

Out of curiosity, do you know what code i need to be looking for to activate the plugin.. I get it could be useless afterwards but i still would like to try.
 
Thanks for responding.

My thinking was that the API was used on maybe a licensing server.

As a couple of years ago someone managed to crack the plugin, well not crack but found a work around... since then, it appears they have added an API

Out of curiosity, do you know what code i need to be looking for to activate the plugin.. I get it could be useless afterwards but i still would like to try.
without looking at the code its impossible to tell. every code is different so there is no standard way i could tell you sorry.
 
just simply remove the code to triggers api call. Also, reomve the code verification

Any plugin with a properly made protection will simply stop working after that. Why is that? Because most of them are tied to their server-side code and use it via REST API to perform this or that task.
 
Can anyone offer advise on how i can null a wordpress plugin that need an API code to activate it ?

Thank you
It does depend on what “activation” actually is. If it is just some licensing server check, then it can be bypassed. If it does more than that (let’s say it downloads some business logic after the activation, or it has business logic in the api only..), then it cannot be bypassed most of the time. @itz_styx gave you the best answer in the thread so far imo.
 
To null a Wordpress plugin that needs an API code, simply remove the API code from the plugin settings.
 
if you remove the API code then it will work but if for every request it requires validation then it will be hard. If any data depends on API then its not doable as the data itself coming from API.
 
To null a Wordpress plugin that needs an API code, simply remove the API code from the plugin settings.

Great, e.g. remove the Google Translate API from a translation script and it works!

Spoiler: no, it doesn't work this way ;)
 
Hello everybody, Please help me to get NM Gift Registry and WIshlist - PRO version.

Thank you very much
 
It does depend on what “activation” actually is. If it is just some licensing server check, then it can be bypassed. If it does more than that (let’s say it downloads some business logic after the activation, or it has business logic in the api only..), then it cannot be bypassed most of the time. @itz_styx gave you the best answer in the thread so farkindl
Kindly help me with autowp ai writer and rewritten, by nulling it for me.
 
To null a WordPress plugin requiring an API code, locate and remove the API validation or license check code in the plugin’s core PHP files. You may also need to disable remote verification functions to bypass activation completely.
 
To null a WordPress plugin requiring an API code, locate and remove the API validation or license check code in the plugin’s core PHP files. You may also need to disable remote verification functions to bypass activation completely.
To null a WordPress plugin requiring an API code, locate and remove the API validation or license check code in the plugin’s core PHP files. You may also need to disable remote verification functions to bypass activation completely.
Thanks very much, I've never tried it before, but I will try, which code editor do you recommend I use?
 
If you're trying to save money, weigh the time spent (debugging time) against the cost of the plugin - many plugins cost $20-50. It's a good PHP exercise for learning, but it's risky for a live site.
 
Back
Top