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.
A Handy Package to Create 3 Different types of Menus : ArrowKeyMenu will allow you to create interactive menus using the keyboard arrow key or vim j/k, NumberMenu will create simple menus where the user have to type the index, and finally CheckBox will allow you to create multiple choice menu
From pip :
pip3 install oxmenu
From source :
git clone https://github.com/0x68616469/oxmenu/
oxansi (downloaded automatically with pip)
from oxmenu import ArrowKeyMenu
menu = ArrowKeyMenu(title="My Menu", subtitle="My Subtitle")
menu.add("One")
menu.add("Two")
menu.add("Three")
menu.add("Four")
selected = menu.select()
print(f"Selected : {selected}")
Result :
from oxmenu import NumberMenu
menu = NumberMenu(title="My Menu", subtitle="My Subtitle", input_message="Please choose an option : ")
menu.add("One")
menu.add("Two")
menu.add("Three")
menu.add("Four")
selected = menu.select()
print(f"Selected : {selected}")
Result :
from oxmenu import CheckBox
menu = CheckBox(title="My Menu", subtitle="My Subtitle", min_options=1, max_options=2)
menu.add("One") # You can add default=True
menu.add("Two")
menu.add("Three")
menu.add("Four")
selected = menu.select()
print(f"Selected : {selected}")
Result :
FAQs
A Handy Package to Create 3 Different types of Menus
We found that oxmenu 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.