摘要:
### Linux 使用NC命令监听本地端口,全称是netcat ### 1、常用参数 ``` shell -h, --help Display this help screen -l, --listen Bind and listen for incoming connections -k, -- 阅读全文
摘要:
MYSQL要想让别人远程访问自己的数据库,必须让mysql库中user表的host字段为%,接受远程控制请求 ,可以进入mysql>use mysql;mysql>update user set host="%" where user="root" and host="localhost";重启数据 阅读全文