<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>系统运维 &#187; Web</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/web-2/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Sun, 10 May 2026 14:53:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux下编译安装OpenResty</title>
		<link>https://www.osyunwei.com/archives/12543.html</link>
		<comments>https://www.osyunwei.com/archives/12543.html#comments</comments>
		<pubDate>Wed, 08 Jun 2022 08:58:29 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[OpenResty]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=12543</guid>
		<description><![CDATA[OpenResty® 是一款基于 NGINX 和 LuaJIT 的 Web 平台。 官方网站：https://openresty.org/cn/ 准备篇 一、防火墙配置 CentOS 8.x默认使用的是firewall作为防火墙，这里改为iptables防火墙。 1、关闭firewall： systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # sample configuration for iptables service # you can edit this manually or use system-config-firewall # [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/12543.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/12543.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下Web统计软件Piwik安装</title>
		<link>https://www.osyunwei.com/archives/9429.html</link>
		<comments>https://www.osyunwei.com/archives/9429.html#comments</comments>
		<pubDate>Thu, 31 Mar 2016 06:15:34 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Web服务器]]></category>
		<category><![CDATA[Piwik]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9429</guid>
		<description><![CDATA[Piwik是一个开源的Web网站统计软件， Piwik安装过程也很简单， 需要先安装好lamp或者lnmp的Web运行环境。 准备知识： 1、CentOS 7.0编译安装Nginx1.6.0+MySQL5.6.19+PHP5.5.14 http://www.osyunwei.com/archives/7891.html 2、CentOS 7.0安装配置LAMP服务器(Apache+PHP+MariaDB) http://www.osyunwei.com/archives/7882.html 安装图解 Piwik软件下载：http://builds.piwik.org/piwik.zip 安装截图 语言选择 选择简体中文 下一步 安装环境监测 下一步 数据库连接设置 下一步 下一步 下一步 安装完成 登录 复制网站统计代码到页面相应位置即可 至此，Linux下Web统计软件Piwik安装完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/9429.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Linux下Web统计软件Piwik安装<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9429.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9429.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web服务器.svn隐藏文件夹漏洞利用、修复和杜绝</title>
		<link>https://www.osyunwei.com/archives/9084.html</link>
		<comments>https://www.osyunwei.com/archives/9084.html#comments</comments>
		<pubDate>Tue, 23 Jun 2015 02:24:55 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9084</guid>
		<description><![CDATA[说明： SVN（subversion）是源代码版本管理软件， 在SVN的使用中， 会自动生成一个名为.svn的隐藏文件夹， 其中包含重要的源代码信息。 如果在发布代码时，直接复制代码文件夹到Web服务器， 同时.svn隐藏文件夹也被上传到程序根目录， 可以利用.svn/entries文件，获取到服务器源码、svn服务器账号密码等信息。 一、此隐藏文件夹是怎么来的？ 从svn获取发布版本时，没有正确使用svn导出功能导致！ 具体细节，乌云上面有篇文章，可以参考。 二、黑客是如何利用svn隐藏文件漏洞的？ 1、漏洞利用工具：Seay SVN漏洞利用工具（请自己下载） 2、添加网站url 在被利用的网址后面加/.svn/entries 系统运维  www.osyunwei.com  温馨提醒：系统运维原创内容©版权所有,转载请注明出处及原文链接 就能列出来网站目录，甚至下载整站。 三、修复漏洞 1、在web服务器配置文件中增加一段代码，过滤到.svn文件，返回404 nginx服务器： location ~ ^(.*)\/\.svn\/ { return 404; } 重启nginx Apache服务器： &#60;Directory ~ "\.svn"&#62; Order allow,deny Deny from all &#60;/Directory&#62; 重启Apache 2、查找服务器上所有.svn隐藏文件夹，删除 以下命令删除当前目录下.svn文件夹 find . -type d -name ".svn"&#124;xargs rm -rf rm -rf `find [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9084.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9084.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
