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.
@mahiraltinkaya/react-masked-input
Advanced tools
Masked for react input elements. The package support input and TextField(mui) elements cc, iban, date, phone and generic types.
A lightweight Input masking for React input components.
react-masked-input requires React 16.8.0 or later.
npm install @mahiraltinkaya/react-masked-input
Character | Allowed input |
---|---|
# | [0-9] |
a | [A-Za-z] |
* | [A-Za-z0-9] |
Separators
You can use lots of type separators. But you can't use #, a, * for separating. Also you can use static values. Also you can use as react hook. Only import {useInputMask} and use like below examples.
Examples | Responses |
---|---|
###-aaa/*** | 123-ABC/1EF |
##:## a.m. | 12:12 a.m. |
+90 ### ### ## ## | +90 555 555 55 55 |
(##3):(#12) | (123):(112) |
import React from "react";
import MaskedInput, { useInputMask } from "./react-masked-input";
import "./App.css";
import { TextField } from "@mui/material";
import { useForm } from "react-hook-form";
function App() {
const maskedText = useInputMask();
const [value, setValue] = React.useState("");
const [timeFormat, setTimeFormat] = React.useState("");
const [date, setDate] = React.useState("");
const [iban, setIban] = React.useState("");
console.log(maskedText("+90 (###) ### ####", "5555555555")); // +90 (555) 555 55 55
return (
<>
<div
style={{
width: 250,
padding: "5em",
display: "flex",
flexDirection: "column",
}}
>
<MaskedInput
mask="+90 (###) ### ## ##"
value={value}
placeholder={"+90 (555) 555 55 55"}
size={"x-large"}
color={"warning"}
onChange={setValue}
>
<TextField></TextField>
</MaskedInput>
<MaskedInput
mask="##:##"
value={timeFormat}
placeholder={"12:12"}
onChange={setTimeFormat}
></MaskedInput>
<MaskedInput
mask="##/##/####"
value={date}
placeholder={"12/12/2023"}
onChange={setDate}
></MaskedInput>
<MaskedInput
mask="TR## #### #### #### #### #### ##"
value={iban}
placeholder={"TR16 9090 9090 9090 9090 9090 90"}
onChange={setIban}
></MaskedInput>
</div>
</>
);
}
export default App;
FAQs
Masked for react input elements. The package support input and TextField(mui) elements cc, iban, date, phone and generic types.
The npm package @mahiraltinkaya/react-masked-input receives a total of 19 weekly downloads. As such, @mahiraltinkaya/react-masked-input popularity was classified as not popular.
We found that @mahiraltinkaya/react-masked-input 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.