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

  • 相关阅读:
    web项目的集成测试:模拟点击
    ignite通过注解配置查询
    log4j打印出线程号和方法名
    函数
    C语言函数的概念
    C语言字符串的输入输出
    C语言字符串处理函数
    C语言字符数组和字符串
    说说M451例程之PWM的寄存器讲解
    如何给地址赋值?(转)
  • 原文地址:https://www.cnblogs.com/k1two2/p/6040110.html
Copyright © 2020-2023  润新知