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.
external-link-react
Advanced tools
Inform users when they try to access external links from your website
If your website has a comment section, a hacker might post exploitive links there so that users might open the link thinking it is part of your website. You should inform the users that they are about to leave your website and step into an external page. This React hook lets you do it pretty quickly. You just have to plug it in your UI.
import { useExternalLink } from 'external-link-react';
function App() {
const { handleLinkOpen, handleConfirm } = useExternalLink(handleAskUser);
function handleAskUser() {
// we're using browser's native confirm but you can use your own UI.
const userResponse = window.confirm('This is an external link');
handleConfirm(userResponse);
}
return (
<div onClick={handleLinkOpen}>
<a href="https://google.com">Google (external)</a>
<a href="http://localhost:3000/">Our App (internal)</a>
</div>
);
}
npm i external-link-react
You can pass options to the useExternalLink React hook as a second argument. It has to be an object containing or more of these key-value pairs.
const options = {
newTab: false,
debug: false,
};
// inside component
const { handleLinkOpen, handleConfirm } = useExternalLink(handleAskUser, options);
newTab: true
. noopener
is set on the link so that your website remains secure against phishing attacks.debug: true
.FAQs
Inform users when they try to access external links from your website
The npm package external-link-react receives a total of 1 weekly downloads. As such, external-link-react popularity was classified as not popular.
We found that external-link-react 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.