- 博客(241)
- 收藏
- 关注
转载 VM 下kaili全屏解决方案
https://zhuanlan.zhihu.com/p/22488904转载于:https://www.cnblogs.com/zheh/p/11454891.html
2019-09-03 18:59:00
2697
转载 nessus 安装
下载安装包:https://www.tenable.com/downloads/nessus下载插件:https://docs.tenable.com/nessus/Content/DownloadAndCopyPlugins.htm转载于:https://www.cnblogs.com/zheh/p/11129871.html...
2019-07-03 23:52:00
325
转载 firefox SSL_ERROR_RX_RECORD_TOO_LONG burpsuit 报错 解决方案
禁用TLS 1.31、在Firefox的地址栏中输入“ about:config ”。2、在搜索条目“tls.version.max ”。将值从4更改为3。3、值4所表示TLS 1.3,3个代表TLS 1.2。重新启动浏览器并检查问题是否已解决。参考:http://wemedia.ifeng.com/72524425/wemedia.shtml...
2019-07-02 11:10:00
1691
转载 Vmware 15 新建虚拟机黑屏
win10 的磁盘大小设置60的倍数centos 使用 40g转载于:https://www.cnblogs.com/zheh/p/11116729.html
2019-07-01 21:03:00
1699
转载 esp8266 IOT Demo 固件刷写记录
将编译好的固件按照下面地址刷写到esp8266出现下面错误是因为刷写的设置不对,按照图上设置:load 0x40100000, len 26828, room 16 tail 12chksum 0xc0ho 0 tail 12 room 4load 0x3ffe8000, len 2980, room 12 tail 8chksum 0xa1load 0x3ffe8bb0,...
2019-01-18 16:27:00
741
转载 elk + suricata 实验环境详细安装教程
1、安装运行suricata,需要科学上网sudo add-apt-repository ppa:oisf/suricata-stablesudo apt-get updatesudo apt-get install suricata修改suricata配置 /etc/suricata/suricata.yamlsuricata -c /etc/s...
2019-01-08 18:59:00
450
转载 frp 使用入门
1、下载安装对应系统版本https://github.com/fatedier/frp/releases/2、将下载的frp移动到系统软件目录 mv frp/ /usr/local3、配置frpvim /etc/systemd/system/frps.service[Unit] Description=frps Daemon ...
2019-01-04 15:32:00
742
转载 树莓派开启smb
1、安装smbapt-get install samba samba-common-bin2、修改/etc/samba/smb.conf配置设置使用系统用户登入增加smb访问文件夹[share] path=/home/leon public=no vaild users=leon write...
2019-01-02 16:17:00
394
转载 python 反射调用
因为目前在写一个python的项目,用到了Python的反射机制,所以做一下笔记,把写项目过程中的感悟记下来。先简单介绍下Demo用到的函数:sys.path 是python的模块的路径集,是一个集合(使用之前记得导入sys模块)>>> sys.path['', '/usr/lib/python2.7', '/usr/lib/python2.7/plat...
2018-11-26 17:47:00
561
转载 VIDEOIO ERROR: V4L: can't open camera by index 0 for raspberryPi
modprobe bcm2835-v4l2转载于:https://www.cnblogs.com/zheh/p/9802414.html
2018-10-17 10:13:00
3937
转载 face_recognition 人脸识别报错
[root@localhost examples]# python facerec_from_video_file.pyRuntimeError: module compiled against API version 0xa but this version of numpy is 0x7Traceback (most recent call last): File ...
2018-10-12 14:48:00
476
转载 安装FFMpeg CentOS 7
https://linuxadmin.io/install-ffmpeg-on-centos-7/转载于:https://www.cnblogs.com/zheh/p/9776933.html
2018-10-12 11:01:00
90
转载 Centos 7 smb 安装使用
安装:yum install samba添加smb用户:smbpasswd -a root/etc/samba/smb.conf 追加:[public] path = / valid users = root browseable = yes writable = yes*****重点*****,设置...
2018-10-10 15:59:00
160
转载 ImportError: libQtTest.so.4: cannot open shared
错误: import cv2 File "/usr/local/lib/python3.5/dist-packages/cv2/__init__.py", line 3, in <module> from .cv2 import *ImportError: libQtTest.so.4: cannot open shared object f...
2018-10-09 17:16:00
378
转载 Raspberry Pi 3b+ 配置摄像头
1、开启摄像头硬件接口raspi-config > Interfacing Options > Camera2、测试raspistill -v -o test.jpg转载于:https://www.cnblogs.com/zheh/p/9752721.html
2018-10-08 09:53:00
260
转载 人脸识别 - 环境搭建(Ubuntu 16.04)
安装人脸识别开源库(face_recognition)pip3 install face_recognition注意:pip3 尝试编译dlib依赖时很可能会报错,参考:https://www.learnopencv.com/install-dlib-on-ubuntu/ 安装dlib库。git clone https://github.com/davisk...
2018-09-28 14:27:00
684
转载 临时关闭串口日志
临时关闭内核信息输出:echo 0 > /proc/sys/kernel/printk;重新打开内核信息输出:echo 7 > /proc/sys/kernel/printk。转载于:https://www.cnblogs.com/zheh/p/9597081.html...
2018-09-06 10:56:00
967
转载 鼠标滑过显示提示框
$("#sensor").mousemove(function(event){ var e=event || window.event; var obj = document.getElementById("sensor-note"); var posX=e.clientX; var posY=e.clientY; obj.style.left=posX...
2018-08-29 09:55:00
566
转载 nginx 配置
events{ use epoll; worker_connections 65535;}http{ server { listen 80; server_name xxx.com; return 301 https://xxx.com; } server ...
2018-08-24 09:42:00
100
转载 certbot 免费httos证书申请
https://keelii.com/2016/06/12/free-https-cert-lets-encrypt-apply-install/转载于:https://www.cnblogs.com/zheh/p/9429281.html
2018-08-06 11:21:00
1207
转载 visio 激活
W9WC2-JN9W2-H4CBV-24QR7-M4HB8转载于:https://www.cnblogs.com/zheh/p/9334673.html
2018-07-19 11:10:00
385
转载 关于chkrootkit 检查 INFECTED: Possible Malicious Linux.Xor.DDoS installed
chkrootkit检测时,发现一个Xor.DDoS内容,内容如下...Searching for Linux.Xor.DDoS ... INFECTED: Possible Malicious Linux.Xor.DDoS installed...最后通过国外的一篇文章,解决了此问题,因为/tmp下只要有可执行文件就会看到这个误报参考: https://blog.whsir....
2018-06-22 10:20:00
826
转载 mhn 实际部署记录
新增蜜罐时需要注意,server/collector_v2.py中的DEFAULT_CHANNELS,没有注册这个事件是接收不到新蜜罐的消息的转载于:https://www.cnblogs.com/zheh/p/9176836.html
2018-06-13 11:23:00
210
转载 docker push 镜像到本地仓库
root@ubuntu:# uname -aLinux ubuntu 4.4.0-116-generic #140-Ubuntu SMP Mon Feb 12 21:23:04 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux1、如果dockerhub的https证书是非权威机构的需要执行,需要添加证书信任root@ubuntu:# ...
2018-06-11 17:56:00
1029
转载 linux 安装 pip
# wget https://bootstrap.pypa.io/get-pip.py# python get-pip.py转载于:https://www.cnblogs.com/zheh/p/8867070.html
2018-04-17 15:37:00
99
转载 pip3 快速安装
https://www.cnblogs.com/wenchengxiaopenyou/p/5709218.html转载于:https://www.cnblogs.com/zheh/p/8622222.html
2018-03-22 10:54:00
180
转载 eclipse 调试(debug) burpsuite 插件(Extender)
demo: https://github.com/src-kun/transparent-cap/tree/master/burpsuite1、打开demo项目:2、右键项目点击Configure Build Path3、打开Libraries,点击Add External JARS...:4、打开burpsuite路径,选择burpsuite....
2018-01-17 19:02:00
453
转载 eclipse 导出burpsuite插件包含第三方lib包
第一步:右键项目点击export:2、选择Runable JAR file:点击Finish后会爆出一个错误(Jar export finished with problems. See details for additional information. Could not find main method from given launch configurati...
2018-01-17 17:02:00
321
转载 蓝牙攻击指南(kali)
基本操作hciconfig 查看蓝牙设备信息hcitool:这是一个查询工具。 可以用来查询设备名称,设备ID,设备类别和设备时钟。hcidump:可以使用这个来嗅探蓝牙通信hciconfig hci0 up 启动蓝牙设备hciconfig hci0 down 关闭蓝牙设备service bluetooth start 启动蓝牙服务bluetoothctl 蓝...
2018-01-05 09:42:00
6207
转载 树莓派 入坑问题,欢迎留言更多问题解决方法
kali扩展sd分区下载:http://archive.raspberrypi.org/debian/pool/main/r/raspi-config/raspi-config_20150923_all.debapt-get install triggerhappy lua5.1 alsa-utilsdpkg -i raspi-config_20150923_all.d...
2017-12-28 12:49:00
132
转载 snmp 默认团体名检测利用
[root@izj6c2n1nth4tg8emd8h58z tmp]# lsb_release LSB Version: :core-4.1-amd64:core-4.1-noarch[root@izj6c2n1nth4tg8emd8h58z tmp]# lsb_release -aLSB Version: :core-4.1-amd64:core-4.1-noarch...
2017-12-01 17:02:00
3029
转载 渗透协作工具 dradis centos安装
https://dradisframework.com/ce/documentation/install_centos.htmlyum install rubygems安装的bundle在dradis用户bin目录下,需要复制到/usr/bin下面http://www.jianshu.com/p/15bc71ee7b76转载于:https://www.cnblogs.co...
2017-11-27 11:58:00
314
转载 mysql 连接失败问题汇集
FHost '192.168.5.128' is not allowed to connect to this MySQL serverConnection closed by foreign host.解决办法USE mysql;CREATE USER 'root'@'%' IDENTIFIED BY '密码';GRANT ALL PRIVILEGES ON *.* TO 'r...
2017-11-17 09:29:00
154
转载 centos 安装squid http代理
yum -y install squidservice squid startservice iptables stop转载于:https://www.cnblogs.com/zheh/p/7844603.html
2017-11-16 15:34:00
64
转载 centos 7 安装配置mod_security
1、旧版本安装过程:http://blog.secaserver.com/2011/10/install-mod_security-apache2-easiest/http://www.cnblogs.com/shengulong/p/6210234.html不能使用最新的crs,否则会报错,下载历史版本:git -b v2.2/master https://github...
2017-10-19 17:13:00
638
转载 centos 7 编译mod_security
yum install gcc-c++ flex bison yajl yajl-devel curl-devel curl GeoIP-devel doxygen zlib-devel libtool bison libxml2 libxml2-devel pcre pcre-devel git -ycd /opt/git clone https://github.com/...
2017-10-19 15:54:00
262
转载 mysql [MariaDB] 开启外联
1、查看mysql服务端口是否为外部端口,如果监听的是本地端口修改mariadb配置文件root@kali:~# whereis mysqlmysql: /usr/bin/mysql /etc/mysql /usr/share/mysql /usr/share/man/man1/mysql.1.gzroot@kali:~# cd /etc/mysqlroot@ka...
2017-10-19 10:11:00
429
转载 python 使用urllib2下载文件
#! usr/bin/python #coding=utf-8import urllib2fp = open('test', 'wb')req = urllib2.urlopen('http://192.168.230.138/index.zip')for line in req: if not line: break f...
2017-10-12 14:51:00
450
转载 nessus plugins 离线更新
1、打开 https://plugins.nessus.org/v2/offline.php2、申请Activation Codehttp://www.tenable.com/products/nessus-home3、下载安装nuessushttps://www.tenable.com/products/nessus/select-your-operating-sy...
2017-10-09 21:42:00
577
转载 centos 安装使用smb
http://blog.youkuaiyun.com/edu_enth/article/details/52964295转载于:https://www.cnblogs.com/zheh/p/7623772.html
2017-10-03 15:18:00
62
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人