Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Parsagon allows you to create browser automations with natural language. You can create automations that fill out forms, scrape web pages, and much more, all without writing code. Here's a brief overview of how to get started:
To use Parsagon, you must have an up-to-date version of Google Chrome and Python >= 3.8
To get started, install the Parsagon python package:
pip install parsagon
Then run
parsagon setup
and copy-paste your API key when prompted.
You can view your API key by logging in and going to https://parsagon.io/settings
From command line:
# Create a program
parsagon create
# Run a program
parsagon run 'My program'
# List your programs
parsagon detail
# Delete a program
parsagon delete 'My program'
From Python:
import parsagon
# Create a program
parsagon.create('Go to https://www.google.com/. Type "the meaning of life" into the search bar and hit enter. Scroll down and click the "More results" button 3 times. Scrape data in the format [{"search result title": "str", "link": "link"}].')
# Run a program
parsagon.run("My program")
# Run a program multiple times
parsagon.batch_runs("My batch name", "My program", runs=[{"variable_name": "value1"}, {"variable_name": "value2"}, ...])
# List your programs
parsagon.detail()
# Delete a program
parsagon.delete("My program")
See the docs for more information.
FAQs
Allows you to create browser automations with natural language
We found that parsagon 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.