myohmy2008的博客

私信 关注
阳光左右
码龄17年
  • 34,498
    被访问量
  • 7
    原创文章
  • 260,948
    作者排名
  • 1
    粉丝数量
  • 于 2004-09-06 加入CSDN
获得成就
  • 获得1次点赞
  • 内容获得2次评论
  • 获得4次收藏
荣誉勋章
  • 最近
  • 文章
  • 资源
  • 问答
  • 课程
  • 帖子
  • 收藏
  • 关注/订阅

nessus :Error -- this scanner seems to be using the plugin feed of another host

问题:Could not validate this preference file.  Have installation files been copied from another system?Error -- this scanner seems to be using the plugin feed of another host问题解决办法:1、到官网重新注册一个激活码:X...
原创
378阅读
0评论
0点赞
发布博客于 3 年前

kali linux安装问题及解决办法

用虚拟机VMware Workstation Pro(版本10)在cpu i5-6400上安装kali出现过一下问题1、This kernel requires an X86-64 CPU,but only detected an i686 CPU:解决办法:如果出现以上问题先检查一下自己的安装的系统包是否为64位、cpu是否64位、cpu是否允许硬件虚拟化(用securable软件检测下)如图最...
原创
12221阅读
2评论
1点赞
发布博客于 3 年前

python 特殊字符处理函数

def SpCharReplace(char): #char=char temp=str(char) for i in temp: if '==i: char= char.replace(','《') if '>' == i: char = char.replace('>', '》')
原创
3761阅读
0评论
0点赞
发布博客于 4 年前

TypeError: expected bytes, not str

import base64import ioa = ""b = base64.b64encode(bytes(a,'gb2312')) # 对字符串编码 URLError(ConnectionRefusedError(10061, '由于目标计算机积极拒绝,无法连接。', None, 10061),) this is a test print ('b11:',b)print ('b
原创
6558阅读
0评论
0点赞
发布博客于 4 年前

TypeError: encoding or errors without a string argument

TypeError: encoding or errors without a string argument:没有一个字符串参数编码或错误(百度翻译),import base64import ioa = ""b = base64.b64encode(bytes(a,'gb2312')) # 对字符串编码 URLError(ConnectionRefusedError(10061,
原创
3690阅读
0评论
0点赞
发布博客于 4 年前

LR中Vuser的init、action和end之间的区别

LR运行脚本时,运行顺序为 int->action(XN次)->end;其中action可以运行N次(或一段时间),这在LR中有设置;而int 和 end都只能运行一次因此实际运用中 一般 int录制的一般是用来做初始化的事情 比如要测试业务某个具体业务操作环节时,可以先把系统用户登录的写在int中。action 录制的一般是操作的事件,即需要测试业务操作点end 录制的一般是退出的
原创
5561阅读
0评论
0点赞
发布博客于 5 年前

在LoadRunner自动录制脚本时,默认会发生REASON: Unable to connect to remote server: rc = -1 , le = 0,错误

在LoadRunner自动录制脚本时,默认会发生REASON: Unable to connect to remote server: rc = -1 , le = 0,错误解决办法:在点击录制脚本时,options里面有个NetWord->Port Mapping的设置选项,Capture level选项改为“Socke level and WinNet level data”,意思是连接范
原创
2054阅读
0评论
0点赞
发布博客于 5 年前