• 欢迎访问小杰博客网站
  • 欢迎访问小杰博客网站哦

2018年09月的内容

Jupyter Notebook简介和配置说明

学习Python的时候,为了快速验证我们学习的知识点,可以用Python自带的python命令进入REPL交互界面,输入Python语句。但实在不方便: 命令行环境,输错了一句就要重来(比如def一个函数) 如果某段逻辑写的有误,需要重新执行一遍所有代码。 所以代码长了,我们写成.py文件执行,但还是不得劲儿。 ipython倒是一个很不错的REP……

SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_unicode_ci,IMPLICIT

SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_unicode_ci,IMPLICIT

除了 数据库和表的属性都改为utf8mb4外,数据库的连接也要改,这个很容易遗漏:         ‘mysql’ => [             ‘driver’    => ‘mysql’,             ‘host’      =&g……

Force File Download in Safari

Force File Download in Safari

<span class="pun">&lt;?</span><span class="pln">php $file </span><span class="pun">=</span><span class="p……

Script php artisan clear-compiled handling the pre-update-cmd event returned with error code 255

Script php artisan clear-compiled handling the pre-update-cmd event returned with error code 255

> php artisan clear-compiled Script php artisan clear-compiled handling the pre-update-cmd event returned with error code 255 用下面这个命令: sudo composer install –no-scripts ……

kali使用hydra工具进行ssh、ftp等密码爆破

简介 hydra破解工具支持多种协议的登录密码,可以添加新组件,使用方便灵活。hydra可在Linux、Windows和OS X中使用。hydra可以用来破解很多种服务,包括IMAP,HTTP,SMB,VNC,MS-SQL,MySQL,SMTP等等 hydra的主要选项(摘自《Kail Linux&BackTrack渗透测试实战》) -R    修……