
Security Fundamentals
Turtles, Clams, and Cyber Threat Actors: Shell Usage
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
@itheum/react-schedule-it
Advanced tools
The react scheduling ui component of the Itheum platform
is the react scheduling ui component of the Itheum platform
npm install
npm run build
to transpile the jsx into dist
npm run build-example
builds and packs the example app into the 'docs' folder so it can be accessed via ghpagesthe implement
in the data model can use ISO day of week
to describe days . e.g. 1-2-3-4-5-6-7 (ISO Day of Week - where 1 is Monday)] e.g for thursday and sunday it will be 4-7
this works well with libraries like moment.js
implement: Type - String
daily
: happens everyday1-2-3-4-5-6-7
: ISO Day of Week - 1 is Monday, can be a subset of this string (e.g thursday and sunday it will be 4-7)am / pm : Type - Array of Strings
12 hour format time strings
- e.g. "7:00" or "9:15"minAm / minPm: Type - Int
minimum number of responses
- e.g. 1 for minAm means that that at least 1 reading should be given in the AM{
"implement": "daily",
"am": ["7:00"],
"pm": ["8:00"],
"minAm": 1,
"minPm": 1
}
Note: daily is like an alias for 1-2-3-4-5-6-7 so we will support these both
{
"implement": "4-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"implement": "1-2-3-4-5",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"implement": "6-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"implement": "daily",
"am": ["8:00"],
"pm": ["7:00", "8:00"],
"minAm": 1,
"minPm": 1
}
{
"implement": "1-2-3-4-5-6-7",
"am": ["7:00"],
"pm": ["8:00"],
"minAm": 1,
"minPm": 1
}
Note: same as using alias daily for implement (see example 1)
{
"via": "forthnightly",
"implement": "4-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "forthnightly",
"implement": "1-2-3-4-5",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "forthnightly",
"implement": "6-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "first",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "last",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "first:1",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "last:5",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "last:1-2-3-4-5-6-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
npm install --save react-schedule-it
import ScheduleIt from "react-schedule-it";
name
indicates the title of the UI step and component is what loads.FAQs
The react scheduling ui component of the Itheum platform
The npm package @itheum/react-schedule-it receives a total of 0 weekly downloads. As such, @itheum/react-schedule-it popularity was classified as not popular.
We found that @itheum/react-schedule-it 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.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.