#Intro
Kk,男,97年生,湖南人,網絡安全愛好者、業余無線電愛好者(呼號:BG7YWL)。
涉獵較多,喜歡研究無線、硬件、軟件、網絡、攻擊、檢測、防御等各類安全技術
精通較少,主要擅長的還是開源硬件、無線通信方面的研究
Email: Ymc3eXdsQHFxLmNvbQ==
#Me
1 #!/usr/bin/env python3 2 # -*- coding: utf-8 -*- 3 ''' 4 # This module shows something about me: 5 # based on Python 3.x 6 # no need Python third-party module 7 # your code has been rated at 8.33/10 by pylint 8 ''' 9 from __future__ import print_function 10 import base64 11 12 __author__ = "K1two2" 13 14 class Pentester(object): 15 def __init__(self): 16 self.name = __author__ 17 self.age = 0xd3 18 self.lang = ['HTML', 'Python', 'Arduino'] 19 self.skill = ['WiFi Penetration Testing', 'Cellular Network Interception', 'IC Card Cracking', 'Embedded Device Hacking', 'Software Defined Radio'] 20 self.email = "SzF0d28yQFFxLkNvbQ==" 21 22 def say_hello(self): 23 print("My name is %s, and Im not %d years old.\ 24 I can code some little tool by %d program language.\ 25 At the same time,\ 26 I also mastered some of the necessary technology\ 27 on wireless/hardware security, like %s and so on." % (self.name, self.age, len(self.lang), self.skill[0])) 28 29 def contact_me(self): 30 print("My email is " + str(base64.b64decode(self.email))[2:-1]) 31 32 if __name__ == "__main__": 33 ME = Pentester() 34 ME.say_hello() 35 ME.contact_me()