
Security News
Re-Enabled GitHub Actions Expose Thousands of Repositories to Mini Shai-Hulud
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.
@strav/jina
Advanced tools
Headless authentication flows for the Strav framework. Registration, login, logout, password reset, email verification, two-factor authentication (TOTP), password confirmation, and profile updates — all as JSON API endpoints.
bun add @strav/jina
bun strav install jina
Requires @strav/core as a peer dependency.
import { defineActions } from '@strav/jina'
import User from './models/user'
const actions = defineActions<User>({
async createUser(data) { return User.create(data) },
async findByEmail(email) { return User.query().where('email', email).first() },
async findById(id) { return User.find(id) },
passwordHashOf(user) { return user.password },
emailOf(user) { return user.email },
async updatePassword(user, pw) { user.password = pw; await user.save() },
})
import { JinaProvider } from '@strav/jina'
app.use(new JinaProvider(actions))
Routes are registered automatically:
| Method | Path | Feature |
|---|---|---|
| POST | /register | registration |
| POST | /login | login |
| POST | /logout | logout |
| POST | /forgot-password | password-reset |
| POST | /reset-password | password-reset |
| POST | /email/send | email-verification |
| GET | /email/verify/:token | email-verification |
| POST | /two-factor/enable | two-factor |
| POST | /two-factor/confirm | two-factor |
| DELETE | /two-factor | two-factor |
| POST | /two-factor/challenge | two-factor |
| POST | /confirm-password | password-confirmation |
| PUT | /password | update-password |
| PUT | /profile | update-profile |
import { verified, confirmed, twoFactorChallenge } from '@strav/jina'
router.group({ middleware: [auth(), verified()] }, r => {
r.delete('/account', compose([confirmed()], deleteAccountHandler))
})
See the full Jina guide.
MIT
FAQs
Headless authentication flows for the Strav framework
We found that @strav/jina demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.

Research
/Security News
The compromise affects MemTensor's MemOS, an open source memory framework for large language models (LLMs) and AI agents. Both npm package @memtensor/memos-cloud-openclaw-plugin and the PyPI package MemoryOS are compromised. They drop cross-platform Go binaries that exfiltrate developer secrets.