摘要:
# systemctl disable firewalld && systemctl stop firewalld # sed -i s/SELINUX=enforcing/SELINUX=disabled/g /etc/selinux/config setenforce 0 # swapoff - 阅读全文
摘要:
import socket def target_tcp(host,port): """ 建立tcp连接 """ client = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # 创建socket对象 client.connect((host, 阅读全文
摘要:
https://www.yuque.com/awescnb/user/tmpomo (本站使用) 阅读全文
摘要:
tar tar zcvf abc.tar.gz a.txt b.txt c.txt # 打包文件 tar zvtf abc.tar.gz # 查看打包文件 tar zvxf abc.tar.gz # 解压文件 zip yum install -y zip unzip # 安装 zip abc.zip 阅读全文
摘要:
已知密码,修改密码 mysqladmin -uroot -p'原本密码' password '新密码' 不知密码,修改密码 systemctl stop mysqld # /etc/my.cnf 添加跳过权限表 [mysqld] skip-grant-tables systemctl start m 阅读全文
摘要:
单独执行 mysql -uroot -p -e 'SELECT user,host,authentication_string FROM mysql.user' mysql -uroot -p -e 'SELECT USER()' mysql -uroot -p -e 'SELECT VERSION 阅读全文
摘要:
添加yum文件 tee /etc/yum.repos.d/mysql-community.repo << EOF [mysql-5.7-community] name=MySQL 5.7 Community Server baseurl=https://mirrors.tuna.tsinghua.e 阅读全文
摘要:
1.重名名插件后缀,crx-->zip。 2.解压缩插件zip。 3.打开chrome扩展程序,将解压缩文件夹拖拽进浏览器。 阅读全文
摘要:
显示器去掉 "3D 加速图形 “前面的对勾。 阅读全文
摘要:
# git svn hg泄露工具 https://github.com/bbkali/dvcs-ripper # Git泄露工具 https://github.com/BugScanTeam/GitHack # dirsearch目录发现工具 https://github.com/maurosori 阅读全文