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.
epc-sepa-converter
Advanced tools
Convert strings to the "EPC Basic Character Set" according to the EPC217-08 SEPA Conversion Table.
That means, any string will be boiled down to these characters, outlined in EPC217-08 Draft Best Practices SEPA Requirements for Character Set v1.1.pdf:
a b c d e f g h i j k l m n o p q r s t u v w x y z
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
0 1 2 3 4 5 6 7 8 9
/ - ? : ( ) . , ' +
(Space)
[!NOTE] I wasn't able to completely understand what to do with
&
and"
, so they will also be preserved, even though they are not part of this set. Replace or remove them if your bank has problems with them. Or, even better, send a PR!
npm i epc-sepa-converter
import * as ECP217 from 'epc-sepa-converter'
ECP217.convert("Fußgängerübergänge")
// => "Fusgangerubergange"
ECP217.convert("Bärbel Garçon")
// => "Barbel Garcon"
ECP217.convert("J’accuse") // Typographic apostrophe
// => "J.accuse"
// & and " and ' are _not_ replaced, because there are no replacements for them defined in the Excel file.
ECP217.convert('Ben & Jerry present: "Ice Cream"')
// => 'Ben & Jerry present: "Ice Cream"'
bin
pnpm generate-map
pnpm test
(or pnpm test:watch
)pnpm tsc
Developed with 💙 at Eintrittskarten.io.
FAQs
Convert strings to their EPC217-08 variant
The npm package epc-sepa-converter receives a total of 5 weekly downloads. As such, epc-sepa-converter popularity was classified as not popular.
We found that epc-sepa-converter 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.