
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
صانع اميلات مؤقتة تستخدم خدمة من موقع 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 uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.