
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
A enhanced parser which can extract title, content, images and form from html pages, inspired by jparser
Usage Example: ^^^^^^^^^^^^^^^^^^^^^ ::
from __future__ import print_function
import requests
from jableparser import PageModel
html = requests.get("https://hollywoodmask.com/entertainment/jason-carroll-cnn-age-gay.html", verify=False).text
pm = PageModel(html)
result = pm.extract()
print("==title==")
print(result['title')
print("==content==")
for x in result['content']:
if x['type'] == 'text':
print(x['data'])
if x['type'] == 'image':
print("[IMAGE]", x['data']['src'])
if x['type'] == 'html':
print("Raw table string: )
print(x['data'])
print("Processed table data if two columns: )
print(pm.processtable(x['data']))
FAQs
A enhanced parser which can extract title, content, images and form from html pages, inspired by jparser
We found that jableparser 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
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.