
Security News
Vite+ Joins the Push to Consolidate JavaScript Tooling
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
wechat-crash-helper
Advanced tools
基于 frida 的 pc 版微信异常助手,主要用于静默微信的异常报告窗口,各版本通杀。
适用于:
8.x / 10.x / 14.x
x86 (不要用 nodejs 12.x
, frida
对 nodejs 12.x
识别有问题,会导致安装失败)npm i wechat-crash-helper
import {
WechatCrashHelper,
WechatFileName,
DetachReason,
} from 'wechat-crash-helper'
const wxFile = WechatFileName.wechat
const helper = new WechatCrashHelper(wxFile)
main().catch((reason) => {
console.log('执行异常:', reason)
})
async function main() {
await helper.attach()
await helper.setDetachedCallback(onDetached)
await helper.closeBugReportFlag()
await helper.closeSendBugReport()
const info = await helper.getInfo()
console.log('从微信获得信息:', info)
const modules = await helper.enumerateModules()
console.log('当前模块列表:', JSON.stringify(modules, null, 2))
setTimeout(() => {
console.log('准备分离')
helper.detach()
}, 15000)
}
function onDetached(reason: DetachReason) {
switch (reason) {
case DetachReason.ProcessTerminated:
console.log(`进程结束: ${reason}`)
break
case DetachReason.ApplicationRequested:
console.log(`脚本分离: ${reason}`)
break
default:
break
}
}
async function onBeforeExit() {
await helper.detach()
}
process.on('beforeExit', onBeforeExit)
process.on('SIGINT', onBeforeExit)
npm i
npm run dev
FAQs
用于静默PC微信的异常报告窗口
We found that wechat-crash-helper 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
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
Security News
Ruby Central’s incident report on the RubyGems.org access dispute sparks backlash from former maintainers and renewed debate over project governance.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.