吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 197|回复: 1
收起左侧

[其他求助] 是py脚本能在python3中正常打开

[复制链接]
xiaoyu0001 发表于 2024-9-21 07:02
25吾爱币
目前该脚本打开一闪而过,望高手修改指点,使这脚本能在python3中正常打开运行,谢谢!
new.txt (1.84 KB, 下载次数: 3)

最佳答案

查看完整内容

代码不长呀,没必要弄个文件。 用 cmd 打开即可,运行需要至少一个命令行参数。 [mw_shl_code=python,true]import sys def crc16(data): num = len(data) if num > 0: num2 = 0xFFFF for byte in data: num2 ^= byte for _ in range(8): if (num2 & 1) != 0: num2 = (num2 >> 1) ^ 0xA001 else: ...

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

Arcticlyc 发表于 2024-9-21 07:02
代码不长呀,没必要弄个文件。
用 cmd 打开即可,运行需要至少一个命令行参数。

[Python] 纯文本查看 复制代码
import sys

def crc16(data):
    num = len(data)
    if num > 0:
        num2 = 0xFFFF
        for byte in data:
            num2 ^= byte
            for _ in range(8):
                if (num2 & 1) != 0:
                    num2 = (num2 >> 1) ^ 0xA001
                else:
                    num2 >>= 1
        return num2
    else:
        return 0

def generate_mac_password(mac):
    # Convert MAC address to bytes
    array = bytearray(mac.encode('ascii'))
    # Calculate CRC16
    num = crc16(array)
    # Generate password based on CRC16 value
    text = f"{num * 7:04X}"
    return text[-4:]

def generate_password1(mac, index):
    # Generate the base password from MAC address
    base_password = generate_mac_password(mac)
    # Append the index (converted to hex)
    text = base_password + f"{index:02X}"
    # Convert the combined text to bytes for CRC calculation
    array = bytearray(text.encode('ascii'))
    # Calculate CRC16 and append to the password
    crc = crc16(array)
    return text + f"{crc & 0xFF:02X}"

if __name__ == "__main__":
    # print(len(sys.argv))
    if len(sys.argv) not in [2, 3]:
        print("Usage: python script.py <mac> <textBox_pollCode>")
        sys.exit(1)

    print(f"输入的本机序列码:{sys.argv[1]}")
    mac = sys.argv[1]
    textBox_pollCode = "00000000"
    if len(sys.argv) == 3:
        # Both mac address and textBox_pollCode are provided
        textBox_pollCode = sys.argv[2]
        if len(textBox_pollCode) < 6:
            print("Error: textBox_pollCode should have at least 8 characters")
            sys.exit(2)

    # Extract index from textBox_pollCode
    index = int(textBox_pollCode[4:6], 16)

    # Generate the password
    generated_password = generate_password1(mac, index)

    print(f"对应用户注册码: {generated_password}")
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-12-14 16:37

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表