
Research
/Security News
60 Malicious Ruby Gems Used in Targeted Credential Theft Campaign
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
A library for your Brython apps to implement drag-and-drop UX (User Experience), without needing to deal with low level drag or drop event callbacks.
Here comes some high level description.
You create a board game's board using html tags, such as TABLE's TD.
You create individual pieces by using normal html tags,
and then you combine them with brython_dragdrop.DraggableMixin
. For example:
class Card(brython_dragdrop.DraggableMixin, html.SPAN):
pass
Then create as many cards as you like, and make them visible in your UI.
You declare some area to be droppable, by defining rules. For example:
brython_dragdrop.make_droppable(BOARD, rules={
(Card, Card): brython_dragdrop.swap,
(Card, html.TD): brython_dragdrop.occupy,
})
Predefined rules include:
swap
which will swap two draggable piecesjoin
which will append dragged piece into the landing area,
so that the landing area may contain more and more dragged pieces.occupy
which will swap the existing piece (if any) with dragged piece,
or place dragged piece into the empty landing area.
So that the landing area will contain up to one draggable piece.Sample: todo.
FAQs
My package description
We found that brython-dragdrop 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
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.