Logger子类:import logging# create loggermodule_logger = logging.getLogger('spam_application.auxiliary')class Auxiliary: def __init__(self): se...
分类:
编程语言 时间:
2015-06-30 21:52:38
阅读次数:
144
3.1.2.字符串python可以操作字符串,字符串包含在单引号或者双引号的内部,\可以用来转义引号escape quotes。 1 >>> 'spam eggs' # single quotes 2 'spam eggs' 3 >>> 'doesn\'t' # use \' to escape t...
分类:
其他好文 时间:
2015-06-21 22:17:07
阅读次数:
128
现在越来越多的网站为了安全性或是防止Spam的侵害,采用了验证码的校验技术。简单地说,验证码就是在进行登录或是内容提交的时候,页面上会随机出现一个人工可识别,但机器不可识别的验证字符串(一般是采用背景、扭曲等方式产生的图片),要求登录或是提交内容时同时输入这个..
分类:
其他好文 时间:
2015-06-06 23:46:48
阅读次数:
584
Locker Ransomware Author Allegedly Releases Database Dump of Private Keys
Allegedly, the author of the “Locker” ransomware has uploaded a dump of the C2 server database, releasing privakeys of infected hosts to the public.
Ctb locker病毒作者称释放出病毒加密文档的密钥数据库转...
分类:
数据库 时间:
2015-06-02 11:17:20
阅读次数:
222
字符串转列表: s=’spam’
l = list(s)
l2 = "hello world".spilt() 列表转字符串 k = ‘’.join(l) 注意,不能join列表中的非字符串 3.修改字符串 s = s + ’a’
s = s[3:] + ‘b’
s = s.replace(‘pl’,’p...
分类:
编程语言 时间:
2015-05-27 17:34:34
阅读次数:
196
1.1 反垃圾邮件的研究与发展 1.1.1 垃圾邮件定义 垃圾邮件,基本上在20世纪末期开始泛滥开来,邮件的广泛使用,以其成本低廉,传输便利的优势,使得邮件得到了商业组织的重视。在商业利益的驱动下,垃圾邮件开始在互联网上泛滥成灾。 1> 垃圾邮件(Email Spam)是指未经用户同意而接收到的电子...
分类:
其他好文 时间:
2015-05-19 20:48:21
阅读次数:
226
新手刚刚开始学习python,如果有写错或写的不好的地方,请大家多多指教!在python中输出当前系统importsysprint(sys.platform)输出当前在那个目录importosos.getcwd()输出一个变量有多少位s=‘spam‘len(s)替换变量的值s=‘z‘+s[1:]查找变量内的值s.find(‘pa‘)#找到会返回1,找不到..
分类:
编程语言 时间:
2015-05-18 21:00:45
阅读次数:
120
一、 样本基本信息
样本名称:927354529512.scr
样本大小:110592 字节
病毒名称:Win32.Trojan.Ctb-locker.Auto
样本MD5值:3A6D7E551C132AC4C40D95394938F266
二、 样本脱壳
该样本的出现的时间是2015.5.14日,和今年4月底出现的敲诈者病毒是同一批次,因为下载病毒的网址是一样的...
分类:
其他好文 时间:
2015-05-16 14:55:57
阅读次数:
194
1631 LockerA password locker with N digits, each digit can be rotated to 0-9 circularly.You can rotate 1-3 consecutive digits up or down in one step.F...
分类:
其他好文 时间:
2015-05-16 10:19:13
阅读次数:
725
题意: 按照给定的条件判断给出的邮箱地址是否合法。Solution: 模拟。需要注意输入中可能包含空格。 空串不能作为symbol,因此prefix也不能包含连续和出现在首尾的'.'#include #include #include using namespace std;int n;st...
分类:
其他好文 时间:
2015-05-07 21:53:48
阅读次数:
101