
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.
@opuscapita/fsm-task-manager
Advanced tools
FSM Task(Work) manager is an extension to finite state machine. It manages existing tasks (stateful full objects, e.g. invoice) within the lifecycle specified in finite state machine (definition.
Example cound be found here
context machine = new Machine({
machineDefinition: new MachineDefinition({schema,actions,conditions}),
context
});
const taskManager = new TaskManager({
machine: machine,
search: search,
update: update
});
//function that return promise that is resolved with task list
function search(searchParams) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve([{status: ''}, {status: ''}]);
}, 500)
})
};
//function that return promise that is resolved after object saving
function update(object) {
return new Promise((resolve, reject) => {
//some hard-working persistent saving code
resolve();
})
};
After configuration there is only one thing is left behind - to start task list monitoring.
taskManager.run({ timeout: 1000 });
timeout argument indicates the frequency of calling search action and checking for available automatic event / sending events (in case found auto-transitions);
If the time has come to kill the process, you have to do the next:
taskManager.stop();
This method return true/false in case of correct/incorrect process finish, correspondingly.
Sometime you may need to get the process statistic (currently available values are: machine name, start & end timestamps)
taskManager.processCache
This field is an object with next signature: {<timer_descriptor> : { , , }}
TBD: increase process cache notation usability TBD: add 1 by 1 event sending queue
You might need an ability to send event to an object with further saving. If you configured TaskManager properly and it knows how to save objects, next two code snippets do the same:
//passed as constructor arg to TaskManager
const update = (object) => {
<some async object update code>
return Promise
};
machine.sendEvent({object, event, request}).then(({object}) => {
return update(object);
})
----equals---
taskManager.sendEvent({object, event, request})
Also you might want to start the workflow with further object saving. If you configured TaskManager properly and it knows how to save objects, next to code snippets do the same:
//passed as constructor arg to TaskManager
const update = (object) => {
<some async object update code>
return Promise
};
machine.start({object}).then(({object}) => {
return update(object);
})
----equals---
taskManager.start({object})
FAQs
Task manager for FSM workflow
The npm package @opuscapita/fsm-task-manager receives a total of 1 weekly downloads. As such, @opuscapita/fsm-task-manager popularity was classified as not popular.
We found that @opuscapita/fsm-task-manager demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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.