Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@artifact-project/recaptcha
Advanced tools
npm i --save-dev @artifact-project/recaptcha
// As API
import { renderReCaptchaWidget } from '@artifact-project/recaptcha';
const widget = renderReCaptchaWidget({
el: document.getElementById('captcha-box'),
params: { // https://developers.google.com/recaptcha/docs/display#render_param
sitekey: 'XXXX',
theme: 'dark',
},
handle(type, code, error) {
console.log('type:', type); // Enum('change', 'expired', 'error')
console.log('code:', code); // 'XXXX' or null
},
// Events
onchallengeshow(challengeRef) {},
onchallengehide(challengeRef) {},
onstartattempt(attempt) {
console.log('attempt.start:', attempt); // {state: 'start', start: 132314124, duration: 0};
},
onattempt(attempt) {
console.log('attempt.resolved:', attempt); // {state: 'verified', start: 132314124, duration: 325325};
},
});
// As React Compomnent
import { ReCaptcha } from '@artifact-project/recaptcha/react';
const captcha = (
<ReCaptcha
sitekey={'XXXX'}
loading={<span>⏳Loading...</span>}
onReady={() => console.log('reCAPTCHA is ready')}
onChange={(code) => console.log('reCAPTCHA code:', code)}
onExpired={(code) => { /* ... */ }}
onError={(err) => { /* ... */ }}
onChallengeShow={() => { /* ... */ }}
onChallengeHide={() => { /* ... */ }}
onStartAttempt={(attempt) => { /* ... */ }}
onAttempt={(attempt) => { /* ... */ }}
/>
);
import {
installReCaptchaSDK,
renderReCaptchaWidget,
} from '@artifact-project/recaptcha';
installReCaptchaSDK().then(() => {
console.log('reCAPTCHA SDK —> loaded');
});
renderReCaptchaWidget({ ... }).ready.then(widget => {
console.log('reCAPTCHA SDK —> loaded');
console.log('reCAPTCHA Widget —> rendered');
})
Чтобы подключить enterprise версию рекаптчи, необходимо передать isEnterprise
флаг.
// As API
import { renderReCaptchaWidget } from '@artifact-project/recaptcha';
const widget = renderReCaptchaWidget({
params: {
sitekey: 'XXXX',
theme: 'dark',
isEnterprise: true
},
...
});
// As React Compomnent
import { ReCaptcha } from '@artifact-project/recaptcha/react';
const captcha = (
<ReCaptcha
sitekey={'XXXX'}
isEnterprise
/>
);
import { ReCaptcha, ReCaptchaContextMock } from '@artifact-project/recaptcha/react';
const captchaWithMock = (
<ReCaptchaContextMock.Provider value={{
code: 'xx123xx',
ctrlProps: {'data-qa': 'recaptcha-btn'},
okProps: {'data-qa': 'recaptcha-successfully'},
}}>
<ReCaptcha
sitekey={'XXXX'}
onChange={(code) => {
console.log('reCAPTCHA code:', code); // always: 'xx123xx'
}}
/>
</ReCaptchaContextMock.Provider>
);
import { renderReCaptchaWidget } from '@artifact-project/recaptcha';
import { createReCaptchaAnalytics } from '@artifact-project/recaptcha/analytics';
const analytics = createReCaptchaAnalytics('LoginPage');
renderReCaptchaWidget({
el: document.getElementById('captcha-box'),
params: { /*...*/ },
...analytics.mixin('native'), // added `on`-props
});
document.getElementById('login-form').addEventListener('submit', () => {
const stats = analytics.get();
sendToMyAnalytics(analytics.name, stats);
analytics.clear();
// ...
});
import { system as systemKepper } from '@perf-tools/keeper';
import { createReCaptchaAnalytics } from '@artifact-project/recaptcha/analytics';
const analytics = createReCaptchaAnalytics('Login', {
keeper: systemKepper,
});
// ... bla-bla-bla
FAQs
reCAPTCHA API & Components
We found that @artifact-project/recaptcha 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.