Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Cyrillify obfuscates your text with Cyrillic homoglyphs. There are 15 uppercase and 7 lowercase identical homoglyphs shared between English and Cyrillic character sets. Each character in each pair has a distinct and unrelated ASCII code from its homoglyph
Cyrillify obfuscates your text with Cyrillic homoglyphs. There are 15 uppercase and 7 lowercase identical homoglyphs shared between English and Cyrillic character sets. Each character in each pair has a distinct and unrelated ASCII code from its homoglyphic counterpart, yet an identical character manifestation across most regular font weights and types. Swapping out English characters with their Cyrillic equivalents has the benefit of obfuscating text, cloaking the content of pages from scrapers and bots while allowing humans to read content as normal.
string
)var cyrillify = require('cyrillify');
console.log(cyrillify('U.N. Environment Envoy Quits After Audit of Expenses'));
Output should look identical.
U.N. Environment Envoy Quits After Audit of Expenses
-- But instead of being: "U.N. Environment Envoy Quits After Audit of Expenses"
-- Punycode will be: "U.N.xn-- nvirnmnt nv quits ftr udit f nss-uh0ae0ngdmkac66ajat9grf9e"
console.log(cyrillify('john@johndoe.com, jane@acmecorp.com, tom@tomthumbesq.com, jill@designlab.com, pat@knittingcircle.com'));
Output should look identical.
john@johndoe.com, jane@acmecorp.com, tom@tomthumbesq.com, jill@designlab.com, pat@knittingcircle.com
-- But instead of being: "john@johndoe.com, jane@acmecorp.com, tom@tomthumbesq.com, jill@designlab.com, pat@knittingcircle.com"
-- Punycode will be: "xn--jhn@jhnd-j8g6fed.xn--m, jn@mrp-3yhc2dd9il9akc.xn--m, tm@tmthumbsq-hom9ied4c.xn--m, jill@dsignlb-7lm1e0h6b.xn--m, t@knittingirl-vdnzg7gtbqqc.xn--m-0tbi"
console.log(cyrillify('Methanol was administered to rats, rhesus monkeys, and pigtail monkeys. Of these animals, only the pigtail monkey reliably developed a severe metabolic organic acidosis resembling that observed in humans.'));
Output should look identical.
Methanol was administered to rats, rhesus monkeys, and pigtail monkeys. Of these animals, only the pigtail monkey reliably developed a severe metabolic organic acidosis resembling that observed in humans.
-- But instead of being: "Methanol was administered to rats, rhesus monkeys, and pigtail monkeys. Of these animals, only the pigtail monkey reliably developed a severe metabolic organic acidosis resembling that observed in humans."
-- Punycode will be: "xn--thnl ws dministrd t rts-nrsecn9isab9qrcua xn-- rhsus mnks-qkjh7j8c xn-- nd igtil mnks-vtlg5g0h3a6e.xn-- f ths nimls-39jd2eb0m xn-- nl th igtil mnk rlibl dvld svr mtbli rgni idsis rsmbling tht bsrvd in humns-ce4dkaihgdro76alachbbfbbcuboc72fparrdju8k1a3khc2nsai."
Cyrillify obfuscates your text with Cyrillic homoglyphs. There are 15 uppercase and 7 lowercase identical homoglyphs shared between English and Cyrillic character sets. Each character in each pair has a distinct and unrelated ASCII code from its homoglyphic counterpart, yet an identical character manifestation across most regular font weights and types.
Cyrillify's output will appear identical to its input, however, the code used to represent it will be different. We can verify Cyrillify's work in two ways:
Punycode is a representation of Unicode with ASCII. It is the encoding system used in encoding internationalized domain names. We can verify Cyrillify's work by using any of the widely available Punycode converters, checking the associated Punycode of the output to ensure that it differs from the input (see examples below).
The quickest way to verify Cyrillify's work via regex is to hit Ctrl+F on Windows, or Command+F on Mac, and search some of the Cyrillified content to see if the computer can identify it.
Swapping English characters with their Cyrillic equivalents has the benefit of obfuscating text, cloaking the content of pages from scrapers and bots while allowing humans to read content as normal. This is particularly useful in shrouding email addresses from bots without compromising their visibility in the browser from humans.
In the event that you are posting and Cyrillifying 'spun' articles, search engine web crawlers such as Googlebot, Bingbot, etc., will not identify the duplicate content, hence, will not penalize nor demote your SERP ranking. Cyrillify can therefore be used as both a weapon and a shield. Behave yourself!
With npm do
$ npm install cyrillify
(MIT)
Copyright (c) 2018 David H. <email6@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Cyrillify obfuscates your text with Cyrillic homoglyphs. There are 15 uppercase and 7 lowercase identical homoglyphs shared between English and Cyrillic character sets. Each character in each pair has a distinct and unrelated ASCII code from its homoglyph
The npm package cyrillify receives a total of 10 weekly downloads. As such, cyrillify popularity was classified as not popular.
We found that cyrillify 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.