
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
posthtml-rename-id
Advanced tools
PostHTML plugin to rename id attributes and it's references. Inspired by grunt-svgstore.
Handle following cases:
href="#id"
and xlink:href="#id"
style
attribute values like style="fill: url(#id)"
<style>
tag values like .selector {fill: url(#id)"}
attr="url(#id)"
Input
<style>
.selector {fill: url(#qwe)}
</style>
<div id="qwe"></div>
<a href="#qwe"></a>
Output
<style>
.selector {fill: url(#prefix_qwe)}
</style>
<div id="prefix_qwe"></div>
<a href="#prefix_qwe"></a>
npm install posthtml-rename-id
const posthtml = require('posthtml');
const rename = require('posthtml-rename-id');
posthtml()
.use(rename('prefix_[id]'))
.process('<div id="qwe"></div> <a href="#qwe"></a>')
.then(({ html }) => {
console.log(html); // <div id="prefix_qwe"></div> <a href="#prefix_qwe"></a>
});
pattern
Type:
string | function
Default:'[id]'
Renaming pattern. [id]
placeholder can be used as current id of an element.
If pattern
provided as a function it will be called with current id as first argument.
Function should return the new id as string ([id]
can be used as well).
Uppercase all ids:
posthtml([
renameId(id => id.toUpperCase())
]);
Rename all ids to elem_{counter}
:
let c = 0;
posthtml([
renameId((id) => { c++; return 'elem_' + c; })
]);
FAQs
PostHTML plugin to rename id attributes and it's references
We found that posthtml-rename-id 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.