About

Intro

Cybersecurity enthusiast

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 I'm not %s years old. "
		      "I can build small tools in %d programming languages. "
		      "At the same time, I have also picked up several essential "
		      "security skills, such as %s and related work." % (
		          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()