摘要: #!/usr/bin/python3 class python_class: name = '' age = 0 def __init__(self,name='roverq',age=18): self.name = name self.age = age print("name :" + sel 阅读全文
posted @ 2022-01-15 15:37 roverqqq 阅读(43) 评论(0) 推荐(0)
摘要: 连接服务 #!/usr/bin/python3 from pwn import * conn = remote('ftp.ubuntu.com',21) str = conn.recvline() print(str) conn.send(b'USER anonymous\r\n') str = c 阅读全文
posted @ 2022-01-15 14:45 roverqqq 阅读(213) 评论(0) 推荐(0)