
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
html-parse-regex
Advanced tools
Contact me by github:heyderpd. I'll be glad to help you.
Create tree object of html/xml raw file. Each node have:
Now use es2015, don't need first steps! Thanks for: npm~lucasmreis
npm install npm install html-parse-regex
(<Object1>) <div id="A" align="left" style="margin-top:15px;">
(<Object2>) <div id="B" class="yttre">
(<Object3>) <strong>
(<Object4>) ASCII links
</strong>
</div>
</div>
html {
list: [ /* same object's but in list mode */
<Object1>,
<Object2>,
<Object3>,
<Object4>
],
tree: {
root: true,
link: { /* tree view mode */
childs: [ <Object1> ] /* object tag of div#A, base of this example */
}, /* inner this you found link for children tags */
},
shortcut: {
id: { A: <Object1>, B: <Object2> } /* link to tag object find by id */
}
error: {
forcedCloseTag: [ /* if need close any tag open tag will appear in this error object */
{ tag: 'a', start: 5, end: 38 }
]
}
}
/* TAG OBJECT */
<Object1> = {
tag: "div",
attrs: { id: "A", align: "left", style: "margin-top:15px;" },
start: 0,
end: 123,
link: {
father: tree,
childs: [ <Object2> ]
}
}
<Object2> = {
tag: "div",
attrs: { id: "B", class: "yttre" },
start: 0,
end: 123,
link: {
father: <Object1>,
childs: [ <Object3> ]
}
}
/* PURE TEXT OBJECT */
<Object4> = {
text: "ASCII links",
start: 20,
end: 31,
link: {
father: <Object3>
}
}
##To create tree from raw html/xml Example:
import fs from 'fs';
import parse from 'html-parse-regex';
const htmlRaw = fs.readFileSync(`index.html`, 'utf8');
const html = parse(htmlRaw);
FAQs
html parser module
We found that html-parse-regex 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 deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.