
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
Workaholic is distributed execFile worker using Redis for work(task) assign, written with javascript(node.js)


Redis : use for task queueing, ticket storing
boss/boss.js : fork and control workers forever
worker/worker.js : workers, get tasks from Redisfront/front.js : front-desk, registers task to Redis
git clone https://github.com/flrngel/workaholic
cd workaholic
npm install
worklist.json is for use to execute file(execFile)
It is highly recommended not to use interpreter applications for security reasons, execute as your own signle script.
{
"<task name>": {
"execFile" : "<File to execute>",
"options": {
// see available options from http://nodejs.org/api/child_process.html#child_process_child_process_execfile_file_args_options_callback
}
}
}
config.json is for use to control Workaholic(boss, worker, front)
{
// redis configuration
"redis":{
"host": "localhost",
"port": 6379,
// ticket time to live - work ticket(key in redis) expire time(redis expire). -1 to permanent
"ticket_ttl": 60,
// authentication using redis auth command, removable
"password": "<insert_your_redis_auth_password>"
},
// front-desk configuration
"front":{
// listening port
"port": 8007,
// authentication for front-desk, removable
"password": "<insert_your_password>"
},
// worker configuration
"worker":{
// number of workers
"number": 4,
// wait time
"sleeptime": 100
}
}
Get Workaholic package information
request
{
"ticketing(optional;boolean type)": true,
"data": {
"taskName(string type)": "<task anme>",
"argument(array type, strings)": ["<arg1>","<arg2>..."]
}
}
response
{
"result": (true|false),
"ticket(optional)": <ticket uuid>
}
request
/work/status?ticket=<ticket uuid>
response
queue: task is in queue pool
assigned: worker assigned task
end: task was successfully ended
error: task had error
FAQs
workaholic
We found that workaholic 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 News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.