About
Intro
网络安全爱好者
Email: ZGFya3I0eUBnbWFpbC5jb20=
Me
#!/usr/bin/env python
#coding=utf-8
'''
# This module shows something about me:
# based on Python 2.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__ = "darkr4y"
class Pentester(object):
def __init__(self):
self.name = __author__
self.age = 0xff
self.lang = ['C', 'C++', 'Python', 'PHP', 'Go', 'Ruby']
self.skill = ['Pentest', 'Coding', 'Reverse', 'Cooking']
self.email = "ZGFya3I0eUBnbWFpbC5jb20="
def say_hello(self):
print("My name is %s, and Im not %s 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 information security, like %s and so on." % (self.name, self.age, len(self.lang), self.skill[0]))
def contact_me(self):
print("My email is " + base64.b64decode(self.email))
if __name__ == "__main__":
ME = Pentester()
ME.say_hello()
ME.contact_me()