
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
A lightweight Python wrapper for the Alteryx gallery API.
Use the package manager pip to install alteryx_gallery_py.
pip install alteryx_gallery_py
import zipfile
import io
from alteryx_gallery_py import Subscriptions
gallery_url = "http://devalteryx.continuus-technologies.com/gallery/"
api_key = 'INSERT API KEY'
client_secret = 'INSERT API SECRET'
# Initiate Subscription Object
sub = Subscriptions(api_key, client_secret, gallery_url)
# Search for a workflow in gallery
workflows = sub.get_workflows(search="pizza survey")
pizza_app_id = workflows[0]["id"]
# Get Questions for a workflow
questions = sub.get_questions(pizza_app_id)
# Run an app
answers = [
{"name": "Question 1","value": "True"},
{"name": "Question 2","value": "Cheese"},
{"name": "Question 3","value": 150}
]
job_run = sub.create_job(pizza_app_id, questions=answers, priority="0")
# Get job status
job_status = sub.get_job(job_run["id"])
output_id = job_status["outputs"][0]["id"]
# List all jobs for an Alteryx app
all_pizza_jobs = sub.list_jobs(pizza_app_id)
# Get job output
job_output = sub.get_job_output(job_run["id"], output_id)
# Download an Alteryx Analytics App
app_package = sub.download_app(pizza_app_id)
z = zipfile.ZipFile(io.BytesIO(app_package))
z.extractall("./")
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
Connect to Alteryx Gallery using API
We found that alteryx-gallery-py 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.