Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

An idea #34

Open
jalalalali opened this issue Apr 7, 2024 · 2 comments
Open

An idea #34

jalalalali opened this issue Apr 7, 2024 · 2 comments
Assignees
Labels
enhancement New feature or request

Comments

@jalalalali
Copy link

jalalalali commented Apr 7, 2024

I adjusted the code in the EnigmaCracker.py file that an email sent when a balance found as below:

from email.message import EmailMessage
import ssl
import smtplib

email_sender  = 'YOUR_EMAIL'
email_password  = 'YOUR_APPPASWORD'
email_receiver = 'YOUR_EMAIL'
subject = 'BTC Balance'

em = EmailMessage()
em['From'] = email_sender
em['To'] = email_receiver
em['Subject'] = subject
context = ssl.create_default_context()

In the condition part as below:

body = f"Seed: {seed}\nAddress: {BTC_address}\nBalance: {BTC_balance} BTC\n\nEthereum Address: {ETH_address}\nBalance: {ETH_balance} ETH\n\n"

em.set_content(body)
with smptlib.SMTP_SSL('smtp.gmail.com', 465, context=context) as smtp:
    smtp.login(email_sender, email_password)
    smtp.sendmail(email_sender, email_receiver, em.as_string())
@jalalalali jalalalali added the enhancement New feature or request label Apr 7, 2024
@AshwathSanjai
Copy link

have you found any crypto ?
and how long did it take ?

@ericbowser
Copy link

(2048^12) or 5.44....x10^39 OR (2^132) text combinations. I wonder how quantum will fair

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants