
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
The morphapiwrapper package contains the wrapper functions to build a API for morphisdom
You can install the package by running the following command
pip install morphapiwrapper
Then load the package in Python by running the following command
from morphapiwrapper import app, addapproute
You can write your custom function with this package and serve it as an API in morphisdom
Your custom function should always take two arguments. Namely requestdata and filereaderwriter.
requestdata is the variable which would get the data passed during the API call for the client.
For multiargument API in morphisdom requestdata holds a list whose elements corresponds to individual arguments of the API function in sequence.
However requestdata can also hold string, number, boolean (for single argument API) and dictionary.
filereaderwriter is an handle for downloading GCS or remote HTTP content into localdirectory.
if requestdata contains and GCS file URI or HTTP url then the funtion filereaderwriter.download_input_data(requestdata) downloads all those files and returns the name of the local files in the same order. The number of elements in requestdata and downloadeddata remains same.
The following function demonstrates a simple function to be served as a Morphisdom API. The requestdata is downloaded and returned as output.
In order to log billing API calls the billunit needs to be set greater than 0.
def testfunction(requestdata,filereaderwriter):
downloadeddata = filereaderwriter.download_input_data(requestdata)
print(downloadeddata)
billunit = 2
return downloadeddata,billunit
Once your function is created wrap your function in an flask app with the following code snippet
app = addapproute(app, testfunction)
The returned app is a flask app which has a route /testfunction added in it. On calling this route testfunction is executed
FAQs
Wrapper functions for creating APIs in Morphisdom
We found that morphapiwrapper 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.