
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 system to automate installation and configuration of resources.
You can install the project from PyPi using pip install pystall
or pip3 install pystall
clone this source repo using either the github button or git clone https://github.com/Descent098/pystall
Then in the root directory (the one with setup.py) run pip install .
or sudo pip3 install .
This will install the package and it's dependencies.
This script shows downloading the python 3 installer (a .exe) the go installer (a .msi) and a logo image (a .png).
from pystall.core import EXEResource, MSIResource, StaticResource, build
python = EXEResource("python-installer", "https://www.python.org/ftp/python/3.8.1/python-3.8.1.exe")
go = MSIResource("Golang", "https://dl.google.com/go/go1.13.5.windows-amd64.msi")
logo = StaticResource("Wallpaper", ".png", "https://canadiancoding.ca/static/img/post-banners/python-post-banner.9bf19b390832.png")
build(python, go, logo)
There is also the option to use the built-in library of resources that have been setup.
from pystall.core import build
from pystall.library import python, go, micro
build(python, go, micro)
If you want logs while the script runs you can use the show_logs() function in the core library
from pystall.core import build, show_logs
from pystall.library import python, go, chrome, micro
show_logs()
build(python, go, chrome, micro)
For a full list of available library resources, how to extend the framework for specific functionality, and a development guide if you would like to contribute, check the docs: https://pystall.readthedocs.io/en/latest/
For more detailed roadmap check out the project planning board on github: https://github.com/Descent098/pystall/projects/1
Pystall is:
Pystall is not:
Focus for this release is to make the whole API more user and dev friendly.
Features:
Development QOL:
The focus for this release was debian linux support, and implementing the current feature sets in debian linux as much as possible.
Features:
Development QOL:
Features:
FAQs
A system to automate configuration and setup of fresh Operating systems.
We found that pystall 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.