
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
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.
用于 JavaScript 交互裕语言的工具库
安装
npm install iyu3
导入 iyu3
// TypeScript
import { iyu3 } from 'iyu3'
// JavaScript
const iyu3 = require('iyu3')
使用 runSync 方法执行裕语言模块方法,并设置返回值
let data = iyu3.runSync('api.get_list', ['参数', '参数'], 'sss.data')
iyu3.log(data) // 打印到 iApp 控制台
也可以不传入参数:
let data = iyu3.runSync('api.xxx', 'sss.data')
iyu3.log(data)
裕语言实现:
fn get_list(a, b)
s(a + b, c)
sss data = c
end fn
fn xxx(a)
sss data = a
end fn
使用 run 方法执行裕语言模块方法,并设置异步的回调函数
// 挂载一个回调事件
iyu3.callback.get_res = (data) => {
alert(data)
}
// 执行裕语言方法
iyu3.run('api.get_res', ['https://apee.top'], 'get_res')
// 不设置回调
iyu3.run('api.xxxx', ['https://apee.top'])
// 不设置参数
iyu3.run('api.xxxx', 'get_res')
// 不设置参数和回调
iyu3.run('api.xxxx')
裕语言实现:
fn get_res(url, callback)
t()
{
hs(url, ym)
ufnsui()
{
fn util.run_back(callback, ym)
}
}
end fn
设置回调事件
iyu3.callback.xxxx = (data) => {
iyu3.log(data)
}
import { iyu3 } from 'iyu3'
for (let i = 0; i < 100; i++) {
iyu3.log('你好呀 ' + i)
}
npm installnpm run servernpm run build:tscnpm run buildFAQs
JS 交互裕语言工具库
The npm package iyu3 receives a total of 13 weekly downloads. As such, iyu3 popularity was classified as not popular.
We found that iyu3 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
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.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.