Home
Lemon
Cancel

Kali拿取路由器pin码

网卡监听模式 airmon-ng start wlan0   扫描 wash -i wlan0mon 跑pin 网卡 物理地址 信道 reaver -i wlan0mon -b 00:5A:13:40:AA:F8 -c 11 -vv -K 0 通过pin获得wifi密码 网卡 ...

Kali暴力破解wifi密码

查看本机网卡名称 ifconfig eth0有线网卡 wlan0无线网卡 虚拟机无法访问网卡,所以需要使用外接的USB无线网卡。 查看是否支持监听模式 airmon-ng 如果该命令没有任何输出则表示没有可以支持监听模式的网卡。 开启无线网卡的监听模式 airmon-ng start wlan0 如果airmon-ng显示的是wifi0,就把wlan0改为wif...

如何去除有道云笔记广告

一、适用于6.0之前版本 你只需要找到有道云笔记的安装路径*\Youdao\YoudaoNote\theme\build.xml,把下面的代码删掉 <PanelAd type="adpanel" css="public" ass="mainform panelclient PanelAd"> <panelTopLine type="panel" css="...

如何查看和修改Redis密码

打开redis.windows.conf文件,默认是没有requirepass root这句话的,因为默认密码是”“,加上这句话意思就是密码修改为root。

Redis启动报错:The Windows version of Redis allocates a memory ...

报错信息 The Windows version of Redis allocates a memory mapped heap for sharing with the forked process used for persistence operations. In order to share this memory, Windows allocates from the sys...

JSESSIONID什么时候生成并传递到前端的

如果客户端请求的cookie中不包含JSESSIONID,服务端调用request.getSession()时就会生成并传递给客户端,此次响应头会包含设置cookie的信息。 如果客户端请求的cookie中包含JSESSIONID,服务端调用request.getSession()时就会根据JSESSIONID进行查找对象,如果能查到就返回,否则就跟没传递JSESSIONID一样。 ...

Vue怎么将表单的值传给后台

... let form = null; form = this.questionForm; const params = form; const res = this.saveSubject(params); ...

Error Code:1175. You are using safe update mode and you tried to update a table without a WHERE tha

MySQL在执行删除、更新语句时报这种错误,是因为在MySQL处于safe-updates模式中,如果where后跟的条件不是主键id,那么就会提示这种错误。解决方式有两种。 SET SQL_SAFE_UPDATES = 0;执行该命令更改MySQL数据库模式。 在where判断条件中跟上主键id,例如:delete from firstmysqldatabase.user wh...

Java去掉JSON数据中值为null的属性字段

@JsonInclude(JsonInclude.Include.NON_NULL) 此方法集成于Springboot2.0中,此方法的配置意在实体类与JSON互转的时候属性值为null的不参与序列化。使用时用注解的方式: 放在标记类 @JsonInclude(JsonInclude.Include.NON_NULL) public class HandlePayResponse ...

前端到后端400错误(The server cannot or will not process the request due to...)

错误信息 The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive requ...