
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.
Pipe Plot #########
.. image:: https://img.shields.io/pypi/v/pipeplot.svg :target: https://pypi.org/project/pipeplot/
.. image:: https://img.shields.io/pypi/pyversions/pipeplot.svg :target: https://pypi.org/project/pipeplot/
.. image:: https://img.shields.io/pypi/dm/pipeplot.svg :target: https://pypistats.org/packages/pipeplot
pipeplot draws an interactive graph in a terminal based on data from pipe.
.. image:: https://raw.githubusercontent.com/MyGodIsHe/pipeplot/master/doc/readme_screencast.gif
Installation
.. code-block:: bash
pip install pipeplot
Examples of using
Graphical ping: """""""""""""""
.. code-block:: bash
ping ya.ru | grep --line-buffered time | sed -u -e 's#.*time=\([^ ]*\).*#\1#' | pipeplot --min 0
Chart of deaths per minute from coronavirus: """"""""""""""""""""""""""""""""""""""""""""
.. code-block:: bash
while true; \
do curl -s https://coronavirus-19-api.herokuapp.com/all \
| jq '.deaths'; \
sleep 60; \
done \
| pipeplot --color 1 --direction left
API: https://github.com/javieraviles/covidAPI
Render graphite to console: """""""""""""""""""""""""""
.. code-block:: bash
while true; \
do \
curl -s 'http://graphite/render?target=my_app_rps_error&format=json&from=-5min&until=now' \
| jq -c '.[0].datapoints[-1]'; \
sleep 5; \
done \
| sed -u s/null/0/ \
| stdbuf -oL uniq \
| stdbuf -oL jq '.[0]' \
| pipeplot
FAQs
displays an interactive graph based on data from pipe
We found that pipeplot 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.