
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
react-google-recaptcha-hook
Advanced tools
https://www.google.com/recaptcha/intro/v3.html
npm install react-google-recaptcha-hook
import { useGoogleReCaptcha } from "react-google-recaptcha-hook";
const FormComponent = () => {
const { executeGoogleReCaptcha } = useGoogleReCaptcha(SITE_KEY);
const submit = async () => {
const token = await executeRecaptcha("submit");
// Do whatever you want with the token
};
return <button onClick={submit}>SUBMIT</button>;
};
const {
// execute reCAPTCHA with action, return token
// async (action: string) => Promise<string>
executeGoogleReCaptcha,
// hide / show recaptcha-badge
// async () => Promise<void>
hideGoogleReCaptcha,
showGoogleReCaptcha,
} = useGoogleReCaptcha(
`${YOUR_SITE_KEY}`, // your site key
{
hide: `${BOOLEAN}`, // optional, true if you want to hide recaptcha-badge beforehand
language: `${LANGUAGE_CODE}`, // optional, https://developers.google.com/recaptcha/docs/language
enterprise: `${BOOLEAN}`, // optional, true if you want to use enterprise edition
recaptchaNet: `${BOOLEAN}`, // optional, true if you want to use recaptcha.net instead of google.com
}
);
You are allowed to hide the badge as long as you include the reCAPTCHA branding visibly in the user flow.
FAQs
React Hook for Google reCAPTCHA v3
We found that react-google-recaptcha-hook demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.