vim ~/login.exp
#!/usr/bin/expect
if {$argc < 2} {
#do something
send_user "usage: $argv0 < <remote_host> <passwd>"
exit
}
set timeout 3
set remote_host [lindex $argv 0]
set passwd [lindex $argv 1]
# 远程登录
spawn ssh kylin@${rem...
解决vnc连接不上
解决目录权限为???所属用户及组也是??
安装Roundcube 提示 Mimetype to file extension mapping: NOT OK
在/config/config.inc.php中加入
$config['mime_types'] = '/web目录/config/mime.types';
vim mime.types (也可 wget http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types)
# This file maps Internet media types to unique file extension(s).
# Alt...
Python Can't connect to HTTPS URL because the SSL module is not available.
环境:
macOS Catalina
现象:
pip install --upgrade pip
遇到错误以下错误
Could not install packages due to an EnvironmentError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max retries exceeded with url: /packages/43/84/23ed6a1796480a6f1a2d38f2802901d0...
kali 优化
1.设置 root密码
passed root
2.开启sshd 允许root登陆
vim /etc/ssh/sshd_config
PermitRootLogin yes
PasswordAuthentication yes
ClientAliveInterval 6000 #防止长时间操作 ssh断开连接
/etc/init.d/ssh restart #ssh重启
update-rc.d ssh enable #开机自启
3.设置proxychains代理
vim /etc/proxychains.c...
置顶 左耳渗透小工具 v1.0.2
俺也为开源作出一丝丝贡献了,哈哈,本次版本为1.0.2 ,一定会有bug,希望大家多多留言,下个版本我会改进。
根据个人需求此项目会不断更新
github地址:https://github.com/zuoer666/zuoerTools
软件部分截图如下:
利用 hashcat 跑 hash 密码(GPU 显卡)
1)破解cmd5:
123456对应cmd5是E10ADC3949BA59ABBE56E057F20F883E
hashcat -m 0 -a 3 "E10ADC3949BA59ABBE56E057F20F883E"
注:
#hashcat 支援超多种解密, -m 后面要告诉hashcat 想要解的hash类型, md5 的代码是 0
#-a 代表着a...
数据库基础之认识 sql 并学习数据库的基础操作
学习环境
目标数据库 Oracle 12c
学习记录
一、什么是关系型和非关系型数据库,两者都包含哪些种类的数据库
1. 关系数据库:是建立在关系模型基础上的数据库,借助于集合代数等数学概念和方法来处理数据库中的数据。简单说来就是关系型数据库用了选择、投影、连接、并、交、差、除、增删查改等数学方法来实现对数据的存储和查询。可以用SQL语句方便的在一个表及其多个表之间做非常复杂的数据查询。安全性高。
关系数据库包含Oracle、DB2、Postgre...
wget 下载oracle
wget -c --http-user=Oracle用户名 --http-password=Oracle密码 --output-document=linux.x64_11gR2_database_1of2.zip "http://download.oracle.com/otn/linux/oracle11g/R2/linux.x64_11gR2_database_1of2.zip?AuthParam=1334920533_d9e7185ae6d218f9ead5bd949dc6bd15"
wget -c --http-user=Oracle用户名 --http-passwor...