
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@dws/muster-devtools-client
Advanced tools
A REPL for the Muster library.
npm install -g @dws/muster-repl@next
To start the Muster REPL simply run:
muster-repl
Muster REPL supports following commands:
<graph_node>
- evaluate a graph nodesubscribe <graph_node>
- subscribe to a graph nodesub <graph_node>
- alias for the subscribe
subscribe:<name> <graph_node>
- subscribe to a graph node and name the subscriptionunsubscribe <name>
- remove a named subscriptionunsub <name>
- alias for the unsubscribe
subscriptions
- list all open subscriptions and their valuessubs
- alias for the subscriptions
load <file_path>
- load an external muster graphMuster version: 5.0.0-rc.6
Muster REPL version: 5.0.0-rc.6
> value('Hello, world')
'value({value: "Hello, world"})'
> computed([value('world')], (name) => `Hello, ${name}`)
'value({value: "Hello, world"})'
> muster({ name: 'Bob' })
'Created a new muster instance.'
> ref('name')
'value({value: "Bob"})'
Muster version: 5.0.0-rc.6
Muster REPL version: 5.0.0-rc.6
> muster({ name: variable('Bob') })
'Created a new muster instance.'
> subscribe ref('name')
Subscription 1: value({value: "Bob"})
'Subscription "1" opened'
> set('name', 'Jane')
Subscription 1: value({value: "Jane"})
'value({value: "Jane"})'
> unsubscribe 1
'Subscription "1" closed.'
Muster version: 5.0.0-rc.6
Muster REPL version: 5.0.0-rc.6
> muster({ name: variable('Bob') })
'Created a new muster instance.'
> subscribe:userName ref('name')
Subscription userName: value({value: "Bob"})
'Subscription "userName" opened'
> unsubscribe userName
'Subscription "userName" closed.'
Muster version: 5.0.0-rc.6
Muster REPL version: 5.0.0-rc.6
> subscriptions
'No open subscriptions.'
> subscribe value('asdf')
Subscription 1: value({value: "asdf"})
'Subscription "1" opened'
> subscriptions
ID "1": value('asdf')
Last value: value({value: "asdf"})
undefined
Given a graph.js:
module.exports = muster({
firstName: variable('Jane'),
lastName: variable('Doe'),
fullName: computed(
[ref('firstName'), ref('lastName')],
(firstName, lastName) => `${firstName} ${lastName}`,
),
});
You can load that file in REPL:
Muster version: 5.0.0-rc.7
Muster REPL version: 5.0.0-rc.7
> load ~/Desktop/graph.js
Loaded muster instance.
> ref('firstName')
value({value: "Jane"})
> ref('lastName')
value({value: "Doe"})
FAQs
Muster DevTools client
The npm package @dws/muster-devtools-client receives a total of 18 weekly downloads. As such, @dws/muster-devtools-client popularity was classified as not popular.
We found that @dws/muster-devtools-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.