AccsBox News
94 subscribers
1 photo
8 links
Account Box sells high-quality accounts, including accounts for Gmail, Hotmail, Twitter, Instagram, TikTok, and Netflix, among others.

All accounts, in one box!

Official Website:https://accsbox.com
Customer Support: @AccsBoxSupport
Download Telegram
Channel created
Channel photo updated
Welcome to AccsBox! 👋

Find high-quality social media accounts here, at great prices.

All accounts, in one box!


We offer:

Diverse & Premium Accounts: A wide selection of authentic, trustworthy, and high-quality social media accounts.

Unbeatable Value: Get top-tier quality without the high price tag.

Secure & Private: Your data is safe with us; we ensure secure access and protect your privacy.

Dedicated After-Sales Support: We stand by our products with responsible and reliable customer service.

👉Official website: https://accsbox.com/
👉Official customer support: @AccsBoxSupport
👉Official channel: https://t.me/accsboxchannel



欢迎来到AccsBox👋

在这里,您可以找到高质量的社交媒体账号,而且价格优惠。

所有账号,尽在盒中!

我们提供:

多样化优质账号:精选真实、可靠、高质量的社交媒体账号。

超值之选:以实惠价格获得顶尖品质。

安全保密:我们保障您的数据安全,确保访问安全并保护您的隐私。

专属售后支持:我们提供负责、可靠的客户服务,为产品保驾护航。

👉官方网址:https://accsbox.com/
👉官方客服: @AccsBoxSupport
👉官方频道:https://t.me/accsboxchannel
AccsBox News pinned «Welcome to AccsBox! 👋 Find high-quality social media accounts here, at great prices. All accounts, in one box! We offer: Diverse & Premium Accounts: A wide selection of authentic, trustworthy, and high-quality social media accounts. Unbeatable Value:…»
AccsBox News pinned Deleted message
🔥【Hotmail/Outlook Login Guide 】

Format
Account:Password:Refresh_token:Client_id


1-Graph


https://t.me/accsboxchannel/1

2-IMAP(Using Refresh Token)


https://t.me/accsboxchannel/9

3-IMAP(Using Password)


Update your IMAP settings:

IMAP Address: imap.zmailservice.com
Port: 993 (with SSL/TLS enabled) or 143 (no SSL/TLS)
import imapclient


imap_server = "imap.zmailservice.com"

imap_port = 143
username = "xxx"
password = "xxx"

imap_obj = imapclient.IMAPClient(imap_server, use_uid=True, port=imap_port, ssl=False)
imap_obj.login(username, password)
imap_obj.select_folder("INBOX")


4.Web Login

Trusted accounts that have never used the 7‑day skip:
1.Go to https://login.live.com/ and sign in.
When prompted, click Skip.
2.You can use the account normally for 7 days without a recovery email.
3.After 7 days, you must add a recovery email to continue signing in on the web.

Trusted accounts that have already used the 7‑day skip:
1.Sign in and stay on the Bind Recovery Email page.
2.In the same tab, replace the URL with:
https://outlook.live.com/mail/0/

3.Press Enter to go straight to your inbox.


👉Official website: https://accsbox.com/
👉Official customer support: @AccsBoxSupport
👉Official channel: https://t.me/accsboxchannel
AccsBox News pinned «🔥【Hotmail/Outlook Login Guide 】 Format Account:Password:Refresh_token:Client_id 1-Graph https://t.me/accsboxchannel/1 2-IMAP(Using Refresh Token) https://t.me/accsboxchannel/9 3-IMAP(Using Password) Update your IMAP settings: IMAP Address: imap.…»
2-IMAP(Using Refresh Token)

import base64 
import imaplib
import poplib
import requests

def get_access_token(client_id, refresh_token):
data = {
'client_id': client_id,
'grant_type': 'refresh_token',
'refresh_token': refresh_token
}
ret = requests.post('https://login.live.com/oauth20_token.srf', data=data)

# Print the response content and access token
print(ret.text)
print(ret.json()['access_token'])
return ret.json()['access_token']

# Generate OAuth2 authentication string using the access token
def generate_auth_string(user, token):
auth_string = f"user={user}\1auth=Bearer {token}\1\1"
return auth_string

pop3_server = 'outlook.office365.com'
pop3_port = 995 # POP3 over SSL

def connect_pop3(email, access_token):
server = poplib.POP3_SSL(pop3_server, pop3_port)
# Authenticate using OAuth2
auth_string = generate_auth_string(email, access_token)
encoded_auth_string = base64.b64encode(auth_string.encode("utf-8")).decode("utf-8")
server._shortcmd(f'AUTH XOAUTH2')
server._shortcmd(f'{encoded_auth_string}')

# Retrieve the list of emails
num_messages = len(server.list()[1])
print(f"There are {num_messages} emails in the inbox.")

# Retrieve email content
for i in range(num_messages):
response, lines, octets = server.retr(i + 1)
msg_content = b"\n".join(lines).decode("utf-8")
print(f"Email {i + 1}:")
print(msg_content)
print("=" * 50)

def connect_imap(email, access_token):
mail = imaplib.IMAP4_SSL('outlook.office365.com')
# Print the generated authentication string
print(generate_auth_string(email, access_token))
mail.authenticate('XOAUTH2', lambda x: generate_auth_string(email, access_token))
mail.select("INBOX")
status, messages = mail.search(None, 'ALL')
print("Email IDs:", messages)
mail.logout()

# Set the email address and refresh token
client_id = '8b4ba9dd-3ea5-4e5f-86f1-ddba2230dcf2'
email = "xxx@hotmail.com"
t = "refresh token"

# Get the access token using the refresh token
acc_token = get_access_token(client_id, t)

# Connect to the IMAP server and access emails
connect_imap(email, acc_token)
1-Graph

import requests 


def get_access_token(refresh_token: str, client_id: str) -> str:
res = requests.post(
"https://login.microsoftonline.com/common/oauth2/v2.0/token",
data={
"client_id": client_id,
"grant_type": "refresh_token",
"refresh_token": refresh_token,
"scope": "https://graph.microsoft.com/.default"
}
)
return res.json()["access_token"]


def print_inbox(access_token: str) -> None:
res = requests.get(
"https://graph.microsoft.com/v1.0/me/mailFolders/inbox/messages",
headers={"Authorization": f"Bearer {access_token}"},
)
res.raise_for_status()
print(res.text)
for m in res.json().get("value", []):
print(f"Subject: {m.get('subject')}")
print(f"From: {m.get('from', {}).get('emailAddress', {}).get('address')}")
print(f"Text: {m.get('bodyPreview')}")
# print(f"Html: {m.get('body', {}).get('content')}")
print(f'\n{"-" * 50}\n', end='')

account = "xxx@hotmail.com:password:refresh token:client ID"
refresh_token =account.split(":")[2]
client_id = account.split(":")[3]
access_token = get_access_token(refresh_token, client_id)
print_inbox(access_token)
Welcome to AccsBox! 👋

Find high-quality social media accounts here, at great prices.

All accounts, in one box!


We offer:

Diverse & Premium Accounts:
- Email Accounts: Hotmail, Gmail (Personal & Edu)
- Social Media Accounts: TikTok, Telegram, X (Twitter), Facebook, Discord, Instagram, Apple
- Growth Services: TikTok Followers


Unbeatable Value: Get top-tier quality without the high price tag.

Secure & Private: Your data is safe with us; we ensure secure access and protect your privacy.

Dedicated After-Sales Support: We stand by our products with responsible and reliable customer service.

👉Official website: https://accsbox.com/
👉Official customer support: @AccsBoxSupport
👉Official channel: https://t.me/accsboxchannel



欢迎来到AccsBox👋

在这里,您可以找到高质量的社交媒体账号,而且价格优惠。

所有账号,尽在盒中!

我们提供:

多样化 & 优质账号:

- 邮箱账号: Hotmail, Gmail (个人 & 教育)
- 社交媒体账号: TikTok, Telegram, X (Twitter), Facebook, Discord, Instagram, Apple
- 增长服务: TikTok 粉丝


超值之选:以实惠价格获得顶尖品质。

安全保密:我们保障您的数据安全,确保访问安全并保护您的隐私。

专属售后支持:我们提供负责、可靠的客户服务,为产品保驾护航。

👉官方网址:https://accsbox.com/
👉官方客服: @AccsBoxSupport
👉官方频道:https://t.me/accsboxchannel
AccsBox News pinned «🔥【Hotmail/Outlook Login Guide 】 Format Account:Password:Refresh_token:Client_id 1-Graph https://t.me/accsboxchannel/1 2-IMAP(Using Refresh Token) https://t.me/accsboxchannel/9 3-IMAP(Using Password) Update your IMAP settings: IMAP Address: imap.…»
Please open Telegram to view this post
VIEW IN TELEGRAM
We're excited to announce the launch of new Gmail for Business/Education accounts!

See the available options below:

我们很高兴地宣布推出全新的Gmail企业/教育帐户!

请查看以下可用选项:

90-Day Edu Gmail Rental - $0.62
30-Day Edu Gmail Rental - $0.20
7-Day Edu Gmail Rental - $0.08
24-Hour Edu Gmail Rental - $0.03
Gmail Domain with YouTube & Maps - $0.91
15-Day Edu Gmail Rental - $0.11
72-Hour Domain Rental - $0.05
24-Hour Vietnamese Domain Rental (.us) - $0.02
24-Hour English Domain Rental (.us) - $0.02

For more details or to make a purchase, please visit our website. Thank you for your continued support!

👉Official website: https://accsbox.com/
👉Official customer support: @AccsBoxSupport
👉Official channel: https://t.me/accsboxchannel