Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.