
Research
/Security News
11 Malicious Go Packages Distribute Obfuscated Remote Payloads
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Kyaah abstract away cognitive over-head of sending SMTP mail, together with other mailing operations things like, mail with file, tokens etc.
Kyaah abstract away cognitive over-head of sending SMTP, POP3, and IMAP mail, together with other mailing operations things like, mail with file, tokens etc.
First, you are recommended to create a virtual environment python -m venv venv
and then activate it source venv/bin/activate
, next install the library using:
pip install kyaah
Wait for the installation to finish, basically the library was uploaded using sdist
(Source Distribution) and bdist_wheel
(Built Distribution).
After that, simply import the library and set payload, which include sender
, receiver
, subject
, body
, and password
and lastly call the send
method and pass the payload
as a keyword just like the sample below:
import kyaah
payload = dict(
sender = "sender@gmail.com",
receiver = ["receiver@gmail.com"],
subject = "Hellow world!",
body = "Lorem ipsum dolor sit amet adipisicing elit, rerum voluptate ipsum volupt.",
password = "*********",
)
kyaah.send(credentials=payload)
Note The password to use, is app password, take note that if you use your traditional mail password that you use to login, it won't give access to!
0.1.17 Release
Improve api design
0.1.16 Release
aiosmtpd
library as kyaah dependency for testing mail locallyThe asyncore module is deprecated and will be removed in Python 3.12. The recommended replacement is asyncio import asyncore
by implementing cli command for starting local SMTP server0.1.15 Release
(*/august/2024)
to (21/july/2024)
)0.1.14 Release
camelCase
to snake_case
. Also making sure all other class are in PascalCase
send
function for all general sending mail operations (plain, file, image, & page), which replace previous ones:
local_mail
, send_mail
, send_images
, send_files
, and send_page
fetch
function for fetching mail (POP & IMAP), which replace previous ones:
fetch_mail_POP
, and fetch_mail_IMAP
0.1.13 Release
0.1.12 Release
Docs
Docs
OS compatibility
0.1.9 Release
0.1.8 Release
This release mostly is for adding more documentations.
FAQs
Kyaah abstract away cognitive over-head of sending SMTP mail, together with other mailing operations things like, mail with file, tokens etc.
We found that kyaah 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
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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).