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.
Hash (unicode) strings to emoji(s). You can set the length.
Importing is as easy as from pymojihash import hash_to_emoji
!
hash_to_emoji()
is the wonderful hashing function.
In this example a string is hashed to a single emoji: >>> hash_to_emoji('lol') '🇫🇲'
There is a limited number of emojis outputs (see: emojis.json
in this package) so if you increase the hash_length
the less likely youa re to encounter different values which produce the same output/hash/emoji(s):
>>> hash_to_emoji('lol', 4)
'◼️🍕🍐🇫🇲'
>>> hash_to_emoji('lol', 2)
'🍐🇫🇲'
>>> hash_to_emoji('heck', 2)
'♠️🇨🇦'
You can also exclude the flag emojis like this: >>> hash_to_emoji('heck') '🇨🇦' >>> hash_to_emoji('heck', no_flags=True) '😤'
FAQs
Python 3 package for hashing strings to emojis.
We found that pymojihash 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.