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.
This project is the smaller sibling to state.js, implementing the main capabilities of a finite state machine.
The current beta version is: 0.1.6.
If you like it, please star it...
#API The exported API consists of one class, one enum and two functions; briefly:
Detailed documentation to follow in the project wiki... please bear with me...
#Notes This implementation of finite state machines provides the common capabilities required; notable omissions are:
For a more complete (with respect to the UML specification for state machines), go to my state.js project.
#Quick example# The example below implements this state machine; to see this running live, view this example.
Note that the circles in the top-right indocate the initial stating state of composite states and the H* indicates that the composite state operates with Deep History semantics.
In this example, a simple casette controller is modelled; the flipped state has been added to demonstrate deep history, whenever the state machine transitions from flipped to operational, the last known child state of operational (and all its sub-states) is restored. You can investigate history semantics further by editing the source in the examples.
Firstly, we create the state machine:
// create the top-level state machine (no parent defined)
var player = new State("player");
// create the rest of the state machine hierarchy (parents defined)
var operational = new State("operational", player, History.Deep);
var flipped = new State("flipped", player);
var final = new State("final", player);
var stopped = new State("stopped", operational);
var active = new State("active", operational);
var running = new State("running", active);
var paused = new State("paused", active);
// create transitions between states with their guard conditions
transition(stopped, active, function (s) { return s === "play"; });
transition(active, stopped, function (s) { return s === "stop"; });
transition(running, paused, function (s) { return s === "pause"; });
transition(paused, running, function (s) { return s === "play"; });
transition(operational, flipped, function (s) { return s === "flip"; });
transition(flipped, operational, function (s) { return s === "flip"; });
transition(operational, final, function (s) { return s === "off"; });
// add some behaviour
active.entry = [engageHead];
active.exit = [disengageHead];
running.entry = [startMotor];
running.exit = [stopMotor];
The state machine then needs initialisation; this enters the initial starting state of the top-level composite state and child composite states until it finds the leaf state.:
player.initialise();
If you look at the console output, you'll see the following:
Enter: player
Enter: player.operational
Enter: player.operational.stopped
To effect a state transition, messages are passed to the top-level state machine for processing:
player.process("play");
player.process("pause");
These messages are evaluated at the top-level for potential transitions then delegated to the current child state for processing.
In this example, the "play" and "pause" messages will effect transitions resulting in the following console output:
Leave: player.operational.stopped
Enter: player.operational.active
Enter: player.operational.active.running
Leave: player.operational.active.running
Enter: player.operational.active.paused
In addition, the entry and exit behavior of the active and running states will be called as appropriate.
To see this example in action, clone the repo and open test_lite.html in the examples directory. If you're running older versions of IE, open the F12 developer tools and show the console, or comment out the console.log statements.
First, to install under node:
npm install state_lite
The example above is then written as:
var fsm = require("state_lite");
// create the top-level state machine (no parent defined)
var player = new fsm.State("player");
// create the rest of the state machine hierarchy (parents defined)
var operational = new fsm.State("operational", player, fsm.History.Deep);
var flipped = new fsm.State("flipped", player);
var final = new fsm.State("final", player);
var stopped = new fsm.State("stopped", operational);
var active = new fsm.State("active", operational);
var running = new fsm.State("running", active);
var paused = new fsm.State("paused", active);
// create transitions between states with their guard conditions
fsm.transition(stopped, active, function (s) { return s === "play"; });
fsm.transition(active, stopped, function (s) { return s === "stop"; });
fsm.transition(running, paused, function (s) { return s === "pause"; });
fsm.transition(paused, running, function (s) { return s === "play"; });
fsm.transition(operational, flipped, function (s) { return s === "flip"; });
fsm.transition(flipped, operational, function (s) { return s === "flip"; });
fsm.transition(operational, final, function (s) { return s === "off"; });
// add some behaviour
active.entry = [engageHead];
active.exit = [disengageHead];
running.entry = [startMotor];
running.exit = [stopMotor];
The rest of the example code remains the same.
FAQs
Lightweight state machine library for JavaScript
We found that state_lite demonstrated a not healthy version release cadence and project activity because the last version was released 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.