Created
April 6, 2012 15:47
-
-
Save yaonie/2320949 to your computer and use it in GitHub Desktop.
yaonie.org - about me
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# encoding=utf-8 | |
# Author : 北北(ed) | |
from time import strftime | |
from time import gmtime | |
def _id(): | |
_who = '%s/%s' % ('北北', 'Edward') | |
_where = 'China' | |
_when = 'After 80s' | |
_sex = 'Male' | |
def _story(): | |
_now = strftime('%Y-%m', gmtime()) | |
_1 = '2011-07 -- ' + _now + ' 知道创宇,安全研究员' | |
def _skill(): | |
_Doing = '%s, %s, %s, %s, %s 及周边Web安全研究' % ('渗透测试', '代码审计', '漏洞挖掘', '漏洞跟踪', '应急响应') | |
_Coding = '%s, %s, %s' % ('Python', 'PHP', 'JavaScript') | |
_Project = '%s, %s, %s' % ('WAF', 'WebSOC', 'WSL') | |
def _contact(): | |
_QQ = '%s, %s' % ('87653285', '447410') | |
_MSN = 'pentest # msn.com' | |
_Email = 'Private:%s, Work:%s' % ('b2cache # Gmail.com', 'ed # knownsec.com') | |
if __name__ == '__main__': | |
print '未满十八周岁请在家长陪同下访问此博客' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment