![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
This is an api wrapper for the 9kw captcha solver service. An Api Key is needed, generate using the 9kw website.
node:
$ npm install 9kw
$ yarn add 9kw
Only tested on node cli, but could also work in the browser with browserify. Please give feedback.
NOTE: All methods are asynchronous. Use the callbacks correctly.
const api_9kw = require('9kw')
const captcha = new api_9kw("API_KEY")
// Submit the captcha, you can also submit using an url or base64 string
// .submitUrl(url, cb) or .submitBase64(data, cb) methods
captcha.submitImage("./captcha.png", (err, newID) => {
if(err) {
console.log(err);
return
}
console.log("Captcha uploaded!: " + captchaID);
// Next step is to get the solution of the uploaded captcha using
// the new captchaID
})
// Get the solution of the captcha with a timeout of 40 seconds
// this means that the callback will be called when the captcha is solved
// usually is solved under 30s
captcha.getSolutionLoop(captchaID, 40, (err, solution) => {
if(err) {
console.log(err);
return
}
console.log("Solution: " + solution);
})
// Tell 9kw the solution was correct or not
captcha.isCorrect(captchaID, true)
// Get the 9kw server check info
captcha.serverCheck((err, serverInfo) => {
console.log(serverInfo)
});
// Get your account balance (credits)
captcha.getBalance((err, balance) => {
console.log(balance)
});
MIT
FAQs
9kw api wrapper to solve captchas
We found that 9kw demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.