端口信息收集可以帮助我们找到更多目标网站的功能点,更全面地对目标网站进行测试。
分类:
其他好文 时间:
2020-07-22 02:18:22
阅读次数:
116
dig工具 dig命令的安装 yum install -y bind-utils 推展: DNS 包括七大资源记录类型: SOA (起始授权机构) 定义了该与众的权威名称服务器 NS (名称服务器) 表示某区域的权威服务器鹤SOA中指定的该区域的主服务器的辅助服务器 A (主机) 列出了区域中的FQ ...
分类:
其他好文 时间:
2020-07-22 01:55:45
阅读次数:
103
第一种:事件点击触发两次 $(".button").click(function(e){ e.stopPropagation(); //表示阻止向父元素冒泡;阻止默认行为,可以用 event.isDefaultPrevented() 来确定preventDefault是否被调用过了 e.preven ...
分类:
Web程序 时间:
2020-07-21 23:14:32
阅读次数:
113
配置文件路径: mac: ~/.docker/ 下有config.json daemon.json centos7:/etc/docker/下有key.json daemon.json(若无可以自己生成) { "authorization-plugins": [],//访问授权插件 "data-ro ...
分类:
Web程序 时间:
2020-07-21 22:29:01
阅读次数:
81
{ "$schema": "https://aka.ms/terminal-profiles-schema", "alwaysShowTabs" : true, "defaultProfile" : "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}", "initial ...
前面有对xpc进行一些学习了解,这篇主要是记录下xpc的创建以及使用过程。 ###一、创建xpc target 新建project-->targets,左下角点?搜索xpc,点击next添加即可,设定xpc bundle 名称,后面需要bind 连接。 ###二、代码实现 添加完xpc之后,项目内会 ...
分类:
其他好文 时间:
2020-07-21 21:39:09
阅读次数:
53
1. v-cloak 可以解决插值表达式闪烁的问题 {{ msg }} v-text 默认是没有闪烁问题的, v-text="mag" , 但是会覆盖 它中间的内容 v-html 可以把标签 输出到页面是 标签 2. v-bind : 是vue中提供的用于绑定属性的变量 v-bind:title ( ...
分类:
其他好文 时间:
2020-07-21 09:38:21
阅读次数:
68
RecyclerView应该是ListView的增强版。 RecyclerView与ListView的区别(我认为的): RecyclerView的性能比ListView高 RecyclerView支持水平滚动 RecyclerView可以动态增加数据量 需要注意的地方: 在AS里面使用Recycl ...
分类:
移动开发 时间:
2020-07-21 01:09:55
阅读次数:
121
nc命令详解 1.端口扫描 nc -z -v -n 192.168.21.135 1-100 z参数告诉nc使用0 输入/输出模式,一般在扫描通信端口的时候使用 v参数显示指令执行过程 n参数告诉nc不使用DNS反向查询ip地址的域名 2.做为通信使用 server: nc -l 5555 clie ...
分类:
其他好文 时间:
2020-07-20 15:52:26
阅读次数:
210
{"msg":"Could not marshal [ResultVo [code=100, result=null, message=ok, exception=null, data=null]]: null; nested exception is javax.xml.bind.MarshalException\n - with linked exception:\n[com.sun.istack.SAXException2: unable to marshal type \"com.domain.ResultVo\" as an element because it is missing an @XmlRootElement annotation]","errorcode":2}
分类:
其他好文 时间:
2020-07-20 11:05:43
阅读次数:
87