
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@cbarroso/react-native-recaptcha
Advanced tools
   => void;
/** Set your custom cancel button text */
cancelButtonText?: string;
/** Callback for pressing the cancel button */
onCancel: () => void;
/** Recaptcha version */
recaptchaVersion?: 'v2' | 'v3';
}
import React, {useState} from 'react';
import {Recaptcha} from 'react-native-recaptcha';
interface CaptchaRefProps {
hide: () => void;
show: () => void;
}
export default function App() {
const [captcha, setCaptcha] = useState('');
const [showCaptcha, setShowCaptcha] = useState(false);
const captchaRef = useRef < CaptchaRefProps > null;
const onCancel = () => {
setShowCaptcha(false);
};
const onMessage = (event: string) => {
if (event !== 'expired' && event !== 'error') {
if (event.includes('Timeout')) {
captchaRef?.current?.show();
} else if (['cancel', 'error', 'expired'].includes(event)) {
captchaRef.current?.hide();
setCaptcha('');
setShowCaptcha(false);
} else {
setCaptcha(event);
setShowCaptcha(false);
setTimeout(() => {
captchaRef?.current?.hide();
}, 1500);
}
} else {
setLoading(false);
captchaRef?.current?.hide();
setCaptcha('');
setShowCaptcha(false);
}
};
return (
<View>
{showCaptcha && (
<Recaptcha
ref={captchaRef}
recaptchaVersion="v2" // 'v3'
onCancel={onCancel}
siteKey={SITE_KEY}
baseUrl={YOUR_URL}
languageCode="pt-BR"
cancelButtonText="Cancelar"
onMessage={onMessage}
/>
)}
</View>
);
}
FAQs
  ![npm](https://img.shields.io/npm/dt/@cbarroso/react-native-recaptcha?s
The npm package @cbarroso/react-native-recaptcha receives a total of 54 weekly downloads. As such, @cbarroso/react-native-recaptcha popularity was classified as not popular.
We found that @cbarroso/react-native-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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.