<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Bluetooth-UWB 联盟论坛 - 开源管理系统</title>
    <link>http://bluetooth.com.cn/forum/forum.php?mod=forumdisplay&amp;fid=32</link>
    <description>Latest 20 threads of 开源管理系统</description>
    <copyright>Copyright(C) Bluetooth-UWB 联盟论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Thu, 28 May 2026 19:08:54 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://bluetooth.com.cn/forum/static/image/common/logo_88_31.gif</url>
      <title>Bluetooth-UWB 联盟论坛</title>
      <link>http://bluetooth.com.cn/forum/</link>
    </image>
    <item>
      <title>Discuz! X3.5自带参数防御CC攻击以及原理、开启防CC攻击后不影响搜索引擎收录的方法</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=78</link>
      <description><![CDATA[原文链接

C攻击确实是很蛋疼的一种攻击方式，Discuz!的配置文件中已经有了一个自带的减缓CC攻击的参数,在配置文件config_global.php中72行：$_config[\'security\'][\'attackevasive\'] = 0;论坛防御级别，可防止大量的非正常请求造成的拒绝服务攻击，防护大量正常请求造成 ...]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Sun, 06 Apr 2025 07:20:19 +0000</pubDate>
    </item>
    <item>
      <title>网络安全awesome-malware-analysis</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=77</link>
      <description><![CDATA[https://github.com/rshipp/awesome-malware-analysis]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Sun, 06 Apr 2025 00:19:46 +0000</pubDate>
    </item>
    <item>
      <title>清华大学Ubuntu 软件仓库</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=76</link>
      <description><![CDATA[CSDN


清华大学开源软件镜像站]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Sat, 05 Apr 2025 23:40:01 +0000</pubDate>
    </item>
    <item>
      <title>ubuntu fail2ban iptables</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=75</link>
      <description><![CDATA[在Ubuntu系统中使用Fail2ban来管理iptables规则是一种常见的方法，用于自动阻止尝试访问SSH、FTP或其他服务的非法登录尝试。Fail2ban是基于Python的工具，它可以分析日志文件，如/var/log/auth.log（对于SSH登录尝试）或/var/log/apache2/error.log（对于Apache错误日志 ...]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Sat, 05 Apr 2025 07:44:38 +0000</pubDate>
    </item>
    <item>
      <title>如何在 Ubuntu 24.04 上安装和配置 Fail2ban</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=74</link>
      <description><![CDATA[Step 1: Update Your System
按 Ctrl + Alt + T 打开终端，更新系统。


sudo apt update &amp;&amp; sudo apt upgrade -y


Step 2: Installing Fail2ban
在 Ubuntu 24.04 服务器上安装 Fail2ban


sudo apt install fail2ban


Step 3: Configuring Fail2ban
Fail2ban 带有默 ...]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Sat, 05 Apr 2025 06:43:39 +0000</pubDate>
    </item>
    <item>
      <title>常用 Shell 分析服务器日志命令</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=73</link>
      <description><![CDATA[1、查看有多少个IP访问：awk \'{print $1}\' access.log|sort|uniq|wc -l2、查看某一个页面被访问的次数：grep \&quot;/index.php\&quot; access.log | wc -l3、查看每一个IP访问了多少个页面：awk \'{++S[$1]} END {for (a in S) print a,S[a]}\' access.log &gt; log.txtsort -n -t \' \' - ...]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Fri, 04 Apr 2025 09:58:56 +0000</pubDate>
    </item>
    <item>
      <title>利用shell脚本统计文件中出现次数最多的IP</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=72</link>
      <description><![CDATA[cat access.log | awk \'{print $2}\' | sort | uniq -c | sort -n -r | head -n 1

----
tail -n +3 :去掉上面用红色标明的两行。awk \'{ print $5}\'：取数据的低5域（第5列），上面蓝色标明。cut -d : -f 1 ：取蓝色部分前面的IP部分。sort：对IP部分进行排序。uniq -c： ...]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Fri, 04 Apr 2025 09:54:37 +0000</pubDate>
    </item>
    <item>
      <title>查看IP访问量的shell脚本汇总</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=71</link>
      <description><![CDATA[一些用于查看ip访问量的shell脚本，另外一些还可以查看time_wait连接，syn连接的脚本，可以用来分析网络的状况.。首先我的nginx的access日志文件是存放在我的Linux机器上的：/var/log/nginx/sc/access.log1、首先第一部分：网站日志分析（nginx日志）1、获取访问前10为 ...]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Fri, 04 Apr 2025 09:45:40 +0000</pubDate>
    </item>
    <item>
      <title>从access.log如何判定恶意ip</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=70</link>
      <description><![CDATA[在处理Apache或Nginx的访问日志（例如access.log）时，识别和阻止恶意IP地址是一个重要的安全措施。恶意IP可能尝试执行各种恶意行为，如注入攻击、爬虫攻击、DDoS攻击等。以下是一些步骤和方法，帮助你判定和应对恶意IP：1. 使用日志分析工具a. 使用Apache的ModSecu ...]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Fri, 04 Apr 2025 05:43:01 +0000</pubDate>
    </item>
    <item>
      <title>免费，开源的充电站（充电桩）软件技术栈:PIONIX的Everest</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=51</link>
      <description><![CDATA[PIONIX的Everest是一个由Linux基金会支持的开源充电站软件，集成了OCPP，注重模块化和定制性。它通过MQTT连接模块，旨在加速电动汽车采用并支持本地能源管理和光伏集成。代码可在GitHub上获取。

Link
https://github.com/EVerest/EVerest


Main Repository of EVerest ...]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Mon, 28 Oct 2024 07:26:55 +0000</pubDate>
    </item>
    <item>
      <title>orise / 奥升充电桩平台orise-charge-cloud</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=50</link>
      <description><![CDATA[⭐ 系统亮点
[*]支持云快充通信协议 ｜ 华为FusionCharge ｜ 支持分时电价 ｜ 支持停车系统
[*]支持设备监控预警 ｜ 支持中电联互联互通 ｜ 支持各地区市政平台对接
[*]微服务架构 ｜ 系统-业务模块分离 ｜ 多租户 ｜ 高可用 ｜ 动态伸缩 ｜ 无感升级
[*]采用 SpringClo ...]]></description>
      <category>开源管理系统</category>
      <author>rafavi</author>
      <pubDate>Mon, 28 Oct 2024 07:20:20 +0000</pubDate>
    </item>
    <item>
      <title>/var/www/nacos</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=35</link>
      <description><![CDATA[/var/www/nacos

 distribution/target/nacos-server-2.4.0-SNAPSHOT/nacos/bin]]></description>
      <category>开源管理系统</category>
      <author>service</author>
      <pubDate>Sat, 06 Apr 2024 10:15:02 +0000</pubDate>
    </item>
    <item>
      <title>充电桩开源物联网JAVA版 V2.5.2</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=34</link>
      <description><![CDATA[http://wenhui.nxptdn.com/article/68?_refluxos=a10


开源版必读 [url]http://wenhui.nxptdn.com/page/link[/url]**1.安装jdk(见软件安装文档)
2.安装数据库(见软件安装文档)
3.安装redis(见软件安装文档)
4.访问 https://nacos.io/zh-cn/docs/v2/quickstart/quick-st ...]]></description>
      <category>开源管理系统</category>
      <author>service</author>
      <pubDate>Sat, 23 Mar 2024 14:56:48 +0000</pubDate>
    </item>
    <item>
      <title>Redis安装</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=33</link>
      <description><![CDATA[https://blog.csdn.net/m0_6793042 ... 1001.2014.3001.5501


wget http://download.redis.io/releases/redis-7.2.4.tar.gz
tar -zvxf redis-7.2.4.tar.gz

mv /root/redis-7.2.4  /usr/local/redis

(要先切换root管理员

su root)

cd /usr/local/redis
make
cd sr]]></description>
      <category>开源管理系统</category>
      <author>service</author>
      <pubDate>Sat, 23 Mar 2024 14:24:55 +0000</pubDate>
    </item>
    <item>
      <title>enabling PHP 8.3 FPM</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=32</link>
      <description><![CDATA[NOTICE: Not enabling PHP 8.3 FPM by default.
NOTICE: To enable PHP 8.3 FPM in Apache2 do:
NOTICE: a2enmod proxy_fcgi setenvif
NOTICE: a2enconf php8.3-fpm]]></description>
      <category>开源管理系统</category>
      <author>service</author>
      <pubDate>Sat, 23 Mar 2024 05:48:15 +0000</pubDate>
    </item>
    <item>
      <title>七仔充电桩平台</title>
      <link>http://bluetooth.com.cn/forum/forum.php?mod=viewthread&amp;tid=31</link>
      <description><![CDATA[充电桩Saas云平台源代码。技术栈：java微服务，springcloud和springboot、mysql|、redis等常用，充电桩系统包含（公众号、H5、小程序）、采集端、运营端、代理商端、支持云快充1.5协议、充电桩硬件，充电桩二轮、充电桩四轮,。二轮充电桩解决方案文档、四轮充电桩解决 ...]]></description>
      <category>开源管理系统</category>
      <author>service</author>
      <pubDate>Sun, 17 Mar 2024 04:54:25 +0000</pubDate>
    </item>
  </channel>
</rss>