
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 low-level Amazon Web Services API client for Tornado
|Version| |Status| |Coverage| |License|
tornado-aws
may be installed via the Python package index with the tool of
your choice. I prefer pip:
.. code:: bash
pip install tornado-aws
.. code:: python
import json
import pprint
import tornado_aws
from tornado import gen, ioloop
HEADERS = {'Content-Type': 'application/x-amz-json-1.0',
'x-amz-target': 'DynamoDB_20120810.DescribeTable'}
PAYLOAD = {'TableName': 'my-dynamodb-table'}
_ioloop = ioloop.IOLoop.instance()
@gen.coroutine
def async_request():
client = tornado_aws.AsyncAWSClient('dynamodb')
response = yield client.fetch('POST', '/', headers=HEADERS,
body=json.dumps(PAYLOAD))
x = json.loads(response.body.decode('utf-8'))
pprint.pprint(x)
_ioloop.stop()
_ioloop.add_callback(async_request)
_ioloop.start()
Documentation is available on ReadTheDocs <https://tornado-aws.readthedocs.org>
_.
Tornado <https://tornadoweb.org>
_Available at https://tornado-aws.readthedocs.org/en/latest/history.html
.. |Version| image:: https://img.shields.io/pypi/v/tornado-aws.svg? :target: http://badge.fury.io/py/tornado-aws
.. |Status| image:: https://img.shields.io/travis/gmr/tornado-aws.svg? :target: https://travis-ci.org/gmr/tornado-aws
.. |Coverage| image:: https://img.shields.io/codecov/c/github/gmr/tornado-aws.svg? :target: https://codecov.io/github/gmr/tornado-aws?branch=master
.. |License| image:: https://img.shields.io/pypi/l/tornado-aws.svg? :target: https://tornado-aws.readthedocs.org
FAQs
A low-level Amazon Web Services API client for Tornado
We found that tornado-aws 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.