
Research
Shai-Hulud Descends to Hades: Miasma Worm Campaign Spreads with New PyPI Wave
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.
wzwatermark
Advanced tools
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>页面水印--wzwatermark</title>
</head>
<body>
<h1>页面水印</h1>
<script src="../dist/index.js"></script>
<script>
//创建
wzwatermark.initWatermark();
//删除
// wzwatermark.removeWatermark();
</script>
</body>
</html>
在 Vue 项目中使用:
import Vue from 'vue';
import Watermark from 'wzwatermark';
// 全局安装
Vue.use(Watermark, {
content: '机密文档',
size: 20,
color: '#ff0000',
opacity: 0.2,
angle: -20
});
// 或者在组件中局部使用
import { initWatermark, removeWatermark } from 'wzwatermark';
export default {
mounted() {
initWatermark({
content: '仅供内部使用',
size: 18,
color: '#333',
opacity: 0.1,
angle: -15
});
},
beforeDestroy() {
removeWatermark();
}
};
在 React 项目中使用:
import React, { useEffect } from 'react';
import { initWatermark, removeWatermark } from 'watermark-library';
function App() {
useEffect(() => {
initWatermark({
content: '内部资料',
size: 16,
color: '#0000ff',
opacity: 0.15,
angle: -15
});
return () => {
removeWatermark();
};
}, []);
return (
<div className="App">
{/* 页面内容 */}
</div>
);
}
export default App;
FAQs
The npm package wzwatermark receives a total of 1 weekly downloads. As such, wzwatermark popularity was classified as not popular.
We found that wzwatermark 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.
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
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.