ITSECURITYCOMPUTER Telegram 26270
🔑 ساخت پسورد فوق‌امن با پایتون ⌨️
این کد یه رمز کاملاً رندوم و غیرقابل حدس می‌سازه که حتماً شامل:
😎 یه حرف بزرگ
😎 یه حرف کوچیک
😎 یه عدد
😎 یه سمبل خاص

📌 از این می‌تونی برای حساب‌های مهم یا حتی پروژه‌های امنیتی استفاده کنی.
👈 پیشنهاد: طول رو بذار 24 یا 32 تا فوق‌العاده امن بشه.

import secrets, string

def strong_password(length=16):
if length < 4:
raise ValueError("Password length must be at least 4")

# گروه‌های کاراکترها
upper = secrets.choice(string.ascii_uppercase)
lower = secrets.choice(string.ascii_lowercase)
digit = secrets.choice(string.digits)
symbol = secrets.choice("!@#$%^&*_-")

# بقیه‌ی کاراکترها رندوم
alphabet = string.ascii_letters + string.digits + "!@#$%^&*_-"
rest = [secrets.choice(alphabet) for _ in range(length - 4)]

# ترکیب و شافل
pwd_list = list(upper + lower + digit + symbol + ''.join(rest))
secrets.SystemRandom().shuffle(pwd_list)
return ''.join(pwd_list)

print(strong_password(16))

✈️@ITSecurityComputer
Please open Telegram to view this post
VIEW IN TELEGRAM
26❤‍🔥7👍4



tgoop.com/ITSecurityComputer/26270
Create:
Last Update:

🔑 ساخت پسورد فوق‌امن با پایتون ⌨️
این کد یه رمز کاملاً رندوم و غیرقابل حدس می‌سازه که حتماً شامل:
😎 یه حرف بزرگ
😎 یه حرف کوچیک
😎 یه عدد
😎 یه سمبل خاص

📌 از این می‌تونی برای حساب‌های مهم یا حتی پروژه‌های امنیتی استفاده کنی.
👈 پیشنهاد: طول رو بذار 24 یا 32 تا فوق‌العاده امن بشه.

import secrets, string

def strong_password(length=16):
if length < 4:
raise ValueError("Password length must be at least 4")

# گروه‌های کاراکترها
upper = secrets.choice(string.ascii_uppercase)
lower = secrets.choice(string.ascii_lowercase)
digit = secrets.choice(string.digits)
symbol = secrets.choice("!@#$%^&*_-")

# بقیه‌ی کاراکترها رندوم
alphabet = string.ascii_letters + string.digits + "!@#$%^&*_-"
rest = [secrets.choice(alphabet) for _ in range(length - 4)]

# ترکیب و شافل
pwd_list = list(upper + lower + digit + symbol + ''.join(rest))
secrets.SystemRandom().shuffle(pwd_list)
return ''.join(pwd_list)

print(strong_password(16))

✈️@ITSecurityComputer

BY SecurityComputer




Share with your friend now:
tgoop.com/ITSecurityComputer/26270

View MORE
Open in Telegram


Telegram News

Date: |

Those being doxxed include outgoing Chief Executive Carrie Lam Cheng Yuet-ngor, Chung and police assistant commissioner Joe Chan Tung, who heads police's cyber security and technology crime bureau. The visual aspect of channels is very critical. In fact, design is the first thing that a potential subscriber pays attention to, even though unconsciously. As the broader market downturn continues, yelling online has become the crypto trader’s latest coping mechanism after the rise of Goblintown Ethereum NFTs at the end of May and beginning of June, where holders made incoherent groaning sounds and role-played as urine-loving goblin creatures in late-night Twitter Spaces. To upload a logo, click the Menu icon and select “Manage Channel.” In a new window, hit the Camera icon. Among the requests, the Brazilian electoral Court wanted to know if they could obtain data on the origins of malicious content posted on the platform. According to the TSE, this would enable the authorities to track false content and identify the user responsible for publishing it in the first place.
from us


Telegram SecurityComputer
FROM American