zoukankan      html  css  js  c++  java
  • 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()

  • 相关阅读:
    优酷kux转mp4
    C++实现将一个文件夹内容拷贝至另一个文件夹
    获取NX一组属性
    获取NX特征名称(无时间戳)
    利用glog打印日志
    C++获取运行程序当前目录
    获取NX装配结构信息
    解析形如(k,v)(k,v)(k,v)字符串
    多NX如何共存
    C++ (C#)实现获取NX PART预览图
  • 原文地址:https://www.cnblogs.com/k1two2/p/6040110.html
Copyright © 2011-2022 走看看