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-protected-mailto
Advanced tools
Fork of react-obfuscated that went it's own way.
The user passes the contact link as an email, tel, sms, or facetime
prop. The component obfuscates href data until an onClick event. Links are given their proper URL schemes (mailto, facetime, etc.) The link is rendered in reverse in the dom, but reversed again with css. This making the link useless for spammers, but user friendly on screen.
The world needs obfuscated links that display the link in a friendly way.
npm install --save react-protected-mailto
import React from 'react'
import Mailto from 'react-protected-mailto'
export default () => (
<p>
Phone: <Mailto tel='205-454-1234' /><br />
Email: <Mailto
email='hello@coston.cool'
headers={
{subject:'Question from the website'},
{cc:'friend@coston.cool'}
}/>
</p>
)
<p>
Phone: <a href="obfuscated" style="direction: rtl; unicode-bidi: bidi-override;">4321-454-502</a><br>
Email: <a href="obfuscated" style="direction: rtl; unicode-bidi: bidi-override;">looc.notsoc@olleh</a>
</p>
<p>
Phone: <a href="tel:205-454-1234">205-454-1234</a><br>
Email: <a href="mailto:hello@coston.cool&subject=Question%20from%20the%20website&cc=friend@coston.cool">hello@coston.cool</a>
</p>
Prop | Type | Argument | Default | Description
-------------- | --------- | ------------ | --------------- | ------------------------------------------
email | string
| <optional>
| null
| email address of the intended recipient
tel | string
| <optional>
| null
| telephone number of the intended recipient
sms | string
| <optional>
| null
| sms number of the intended recipient
facetime | string
| <optional>
| null
| facetime address of the intended recipient
headers | object
| <optional>
| null
| subject, cc, bcc, body, etc
obfuscate | boolean
| <optional>
| true
| set to false to disable obfuscation
obfuscatedHref | string
| <optional>
| click-to-open
| text to put in a href
npm run build
react-protected-mailto is awesome thanks to these community members:
Please help make this react component better. Submit any issue and/or make a pull request!
Licensed under the MIT license.
FAQs
React component to protect email addresses from crawlers.
The npm package react-protected-mailto receives a total of 202 weekly downloads. As such, react-protected-mailto popularity was classified as not popular.
We found that react-protected-mailto 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
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.