K1two2's Geek Hub


NEET
Independent Researcher
About Me - 关于我

#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()

posted on 2012-12-12 12:12  K1two2  阅读(4551)  评论(8编辑  收藏  举报

版权声明:如果网站侵犯了您的合法著作权宜,请发送邮件至我,经核实后,我会在24小时内删除该资源!