Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools oft miss.
@jnv/2captcha
Advanced tools
Post a captcha to the 2Captcha service, then polls until the captcha is decoded.
npm install 2captcha
Set up your api key:
var solver = require('2captcha');
solver.setApiKey('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
Decode from a url, with a 10 seconds polling interval: (default = 2000ms)
solver.decodeUrl(url, {pollingInterval: 10000}, function(err, result, invalid) {
console.log(result.text);
});
Decode from a url retrying 5 times if invalid is called (default = 3)
solver.decodeUrl(url, {retries: 5}, function(err, result, invalid) {
if(!checkIfCaptchaIsValid(result.text)){
return invalid();
}
});
FAQs
A wrapper for the 2Captcha API
The npm package @jnv/2captcha receives a total of 1 weekly downloads. As such, @jnv/2captcha popularity was classified as not popular.
We found that @jnv/2captcha 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools oft miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.