1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
''' # This module shows something about me: # based on Python 3.x # no need Python third-party module # your code has been rated at 8.33/10 by pylint ''' from __future__ import print_function import base64
__author__ = "K1two2"
class Pentester(object): def __init__(self): self.name = __author__ self.age = 0xd3 self.lang = ['HTML', 'Python', 'Arduino'] self.skill = ['WiFi Penetration Testing', 'Cellular Network Interception', 'IC Card Cracking', 'Embedded Device Hacking', 'Software Defined Radio'] self.email = "aUBiZzd5d2wuY29t"
def say_hello(self): print("My name is %s, and Im not %d years old.\ I can code some little tool by %d program language.\ At the same time,\ I also mastered some of the necessary technology\ on wireless/hardware security, like %s and so on." % (self.name, self.age, len(self.lang), self.skill[0]))
def contact_me(self): print("My email is " + str(base64.b64decode(self.email))[2:-1])
if __name__ == "__main__": ME = Pentester() ME.say_hello() ME.contact_me()
|