Skip to content

Commit

Permalink
unpatch mail
Browse files Browse the repository at this point in the history
fixed xtekky#27
  • Loading branch information
24rr authored Apr 16, 2023
1 parent e94e1cc commit 44acf50
Showing 1 changed file with 18 additions and 42 deletions.
60 changes: 18 additions & 42 deletions quora/mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,56 +7,32 @@ def __init__(self, proxies: dict = None) -> None:
self.client = Session()
self.client.proxies = None #proxies
self.client.headers = {
"host": "api.mail.tm",
"connection": "keep-alive",
"sec-ch-ua": "\"Google Chrome\";v=\"111\", \"Not(A:Brand\";v=\"8\", \"Chromium\";v=\"111\"",
"accept": "application/json, text/plain, */*",
"content-type": "application/json",
"sec-ch-ua-mobile": "?0",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36",
"sec-ch-ua-platform": "\"macOS\"",
"origin": "https://mail.tm",
"sec-fetch-site": "same-site",
"sec-fetch-mode": "cors",
"sec-fetch-dest": "empty",
"referer": "https://mail.tm/",
"accept-encoding": "gzip, deflate, br",
"accept-language": "en-GB,en-US;q=0.9,en;q=0.8"
"Accept": "application/json",
"Content-Type": "application/json"
}

self.domain = "guerrillamail.com"

self.sid_token = self.client.get("https://api.guerrillamail.com/ajax.php?f=get_email_address").json()['sid_token']

def get_mail(self) -> str:
token = ''.join(choices(ascii_letters, k=10)).lower()

init = self.client.post("https://api.mail.tm/accounts", json={
"address" : f"{token}@bugfoo.com",
"password": token
})

if init.status_code == 201:
resp = self.client.post("https://api.mail.tm/token", json = {
**init.json(),
"password": token
})

self.client.headers['authorization'] = 'Bearer ' + resp.json()['token']

return f"{token}@bugfoo.com"

else:
raise Exception("Failed to create email")


email_id = f"{token}@{self.domain}"
self.client.get(f"https://api.guerrillamail.com/ajax.php?f=set_email_user&email_user={token}&sid_token={self.sid_token}")

return email_id

def fetch_inbox(self):
return self.client.get(f"https://api.mail.tm/messages").json()["hydra:member"]
return self.client.get(f"https://api.guerrillamail.com/ajax.php?f=get_emails&sid_token={self.sid_token}").json()

def get_message(self, message_id: str):
return self.client.get(f"https://api.mail.tm/messages/{message_id}").json()
return self.client.get(f"https://api.guerrillamail.com/ajax.php?f=fetch_email&email_id={message_id}&sid_token={self.sid_token}").json()

def get_message_content(self, message_id: str):
return self.get_message(message_id)["text"]

return self.get_message(message_id)["mail_body"]

# if __name__ == "__main__":
# client = Mail()
# client.get_mail()


if __name__ == "__main__":
client = Mail()
client.get_mail()

0 comments on commit 44acf50

Please sign in to comment.