
Research
Using Trusted Protocols Against You: Gmail as a C2 Mechanism
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.
Supply Chain Security
Vulnerability
Quality
Maintenance
License
AI-detected possible typosquat
Supply chain riskThere is a package with a similar name that is downloaded much more often.
Did you mean |
---|
Unpopular package
QualityThis package is not very popular.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
صانع اميلات مؤقتة تستخدم خدمة من موقع mail.tm و تم عمل لها برنمج بسيط من خلال بايثون طريقة التثبيت هي
امر التثبيت هو
pip3 install germail -U
لما تنتهي من التثبيت يمكنك استدعاء المكتبة بكتابة كود
import germail
سيظهر لك الاميل و كلمة السر بعد كتابة الكود هذا :
user=germail.Germail()
ستظهر لك جميع الرسائل بستخدام الكود التالي :
messages=user.get_messages()
اظهار فقط اخر رسالة
last=user.get_last_message()
اظهار الرسالة عن طريق id الخاص فيها (ملاحظة يمكنك العثور على id من خلال اظهار جميع الرسائل ستظهر معها id )
msg=user.read_message("515454465414494ds444554")
يمكنك تسجيل الدخول الى اميل اخر تم صنعه من قبل من خلال الكود :
user.login("email@exmple.com","pasword")
يمكنك حذف الاميل او تجديد الاميل او صنع اميل جديد من خلال هذي الاكواد التالية
user.delete_account()
user.renew_account()
user.new_account()
هذا مثال للكود لكن لا تنسى ان ترسل رسالة حقيقية لهذا الايميل من اميل اخر
import germail
from time import sleep
user=germail.Germail()
input("wait message press enter")
sleep(5)
try:
#get last message
message= user.get_last_message()
print("text of message : ", message.text)
print("id of message : ",message.id_)
print("html of message : ",message.html)
except:
print("\n\nnot have a message")
#get info email and pass
email=user.get_mail()
password=user.get_password()
user=None
# parametre create=False = "not create new mail"
user2=germail.Germail(create=False)
user2.login(email,password)
print("\n\n\n#######################################################\n",
"Print all message",
"\n################################################\n\n\n")
print(user2.get_messages())
user2.renew_account()
user2.delete_account()
FAQs
A python api create temporary mail
We found that germail 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
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.