<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[段彤的网络博客]]></title> 
<description><![CDATA[繁华落尽，自拾凄凉，无数与岁月重复粘贴的生活，一如既往。]]></description>
<link>https://duantong.net/</link>
<language>zh-cn</language>
<generator>www.emlog.net</generator>
<item>
    <title>[转载] 微信hook消息接收</title>
    <link>https://duantong.net/post-28.html</link>
    <description><![CDATA[微信hook消息接收微信版本：3.9.12.45账号：两个微信账号，大号用来发消息，小号用来测试工具：微信、CE修改器、x64dbg定位消息地址选择微信进程大号给小号发送消息，扫描类型选择字符串，数值填写消息内容重复之上的步骤，不断重复，直到无法定位的时候（我这里有三个），一个个查看浏览器内存区域找到带着wxid和xml格式的就是内存地址x64dbg断点记录一下当前的微信地址1B6555E11BD，关闭CE修改器，打开x64dbg，附加微信，按住alt+e选择wechatwin.dll点进去，再内存窗口搜索刚才记录的地址设置写入断点此时微信大号给小号发送消息，查看堆栈信息找到有个db的那个（这一步骤是再写入微信数据库之前定位call）选择，右键&ldq... <a href="https://duantong.net/post-28.html">阅读全文&gt;&gt;</a>]]></description>
    <pubDate>Wed, 23 Jul 2025 08:08:44 +0000</pubDate>
    <author>段彤</author>
    <guid>https://duantong.net/post-28.html</guid>

</item>
<item>
    <title>Docker安装Oracle数据库</title>
    <link>https://duantong.net/post-27.html</link>
    <description><![CDATA[# 下载镜像
docker pull registry.cn-hangzhou.aliyuncs.com/zhuyijun/oracle:19c # 创建文件
mkdir -p /home/data/oracle/oradata # 授权，不授权会导致后面安装失败
chmod 777 /home/data/oracle/oradata # 启动容器
docker run -d \ -p 1521:1521 -p 5500:5500 \ -e ORACLE_SID=ORCLCDB \ -e ORACLE_PDB=ORCLPDB \ -e ORACLE_PWD=Sjf1234567890 \ -e ORACLE_EDITION=standard \ -e ... <a href="https://duantong.net/post-27.html">阅读全文&gt;&gt;</a>]]></description>
    <pubDate>Wed, 28 May 2025 07:26:08 +0000</pubDate>
    <author>段彤</author>
    <guid>https://duantong.net/post-27.html</guid>

</item>
<item>
    <title>Realm端口转发工具安装教程</title>
    <link>https://duantong.net/post-26.html</link>
    <description><![CDATA[Realm 是Rust语言开发的流量转发工具，Realm 比 Gost占用资源更小。支持多组服务器转发，同时也支持tcp和udp，还有域名解析便捷。1、下载最新的可执行文件到本地：Github以最新版本为主，根据自己的系统版本下载即可，比如我的是64位Debian系统，则需下载realm-x86_64-unknown-linux-gnu.tar.gz下载好后在本地电脑上解压，得到 realm 无后缀名的可执行程序，使用FinalShell等ssh工具传输到远程VPS的 /root 目录2、赋予程序可执行权限：使用ssh工具连接到VPS后，赋予 /root 目录下的 realm 可执行755权限chmod +x realm 3、创建realm配置文件：r... <a href="https://duantong.net/post-26.html">阅读全文&gt;&gt;</a>]]></description>
    <pubDate>Mon, 21 Oct 2024 08:01:58 +0000</pubDate>
    <author>段彤</author>
    <guid>https://duantong.net/post-26.html</guid>

</item>
<item>
    <title>利用宝塔反代飞牛NAS（FNNAS）</title>
    <link>https://duantong.net/post-24.html</link>
    <description><![CDATA[前言最近飞牛NAS系统比较火，手头有个大盘鸡闲置，准备安装一个飞牛NAS玩玩，但是大盘鸡是国外的，进行反代一下。记录一下流程。准备安装好宝塔，创建一个网站，绑定好域名。配置打开创建域名的位置，反代配置界面添加反代，端口写8000（改了的话，写你改了的端口）。但是发现开启反代之后，并不好用。界面打不开。我看了一下，需要添加一个websocket的服务。写道配置文件里面。location /websocket { proxy_pass http://www.xxxx.com:8000; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Conne... <a href="https://duantong.net/post-24.html">阅读全文&gt;&gt;</a>]]></description>
    <pubDate>Thu, 19 Sep 2024 03:19:32 +0000</pubDate>
    <author>段彤</author>
    <guid>https://duantong.net/post-24.html</guid>

</item>
<item>
    <title>CentOS 7中部署.NET Code WEB程序</title>
    <link>https://duantong.net/post-25.html</link>
    <description><![CDATA[前言公司需要将一个门户网站，从WINDOWS IIS 移植到 CentOS 7中，记录一下运行方式。注册 Microsoft 密钥和源我们需要在自己的服务器上注册 Microsoft 密钥和源，这个操作是每一台服务器只能执行一次的sudo rpm -Uvh https://packages.microsoft.com/config/centos/7/packages-microsoft-prod.rpm它主要是会帮助我们注册密钥和安装一下必须的依赖项。安装 .NET Core SDK注册完之后我们就可以按照自己的需要选择相应的SDK版本进行安装，示范中我是选择了最新版3.1：sudo yum install dotnet-sdk-3.1因为是采用了yu... <a href="https://duantong.net/post-25.html">阅读全文&gt;&gt;</a>]]></description>
    <pubDate>Wed, 18 Sep 2024 02:04:33 +0000</pubDate>
    <author>段彤</author>
    <guid>https://duantong.net/post-25.html</guid>

</item>
<item>
    <title>随身WiFi Debian安装Klipper系统前，如何联网，让随身WiFi连其他WiFi上网</title>
    <link>https://duantong.net/post-23.html</link>
    <description><![CDATA[进入Shell后， 输入指令nmtui复制一下设备 里面的文字，记录好wlan0 (02:00:36:66:ED:36)添加一个wifi，将复制的粘贴到对应设备内容，输入wifi名称，再删除之前发射WiFi的，等待联网就可以了。安装Klipper 方法，最好换国内源Armbian系统镜像、ip扫描器、putty、raspberry pi imager软件在交流群里，交流群二维码在动态置顶  上位机（树莓派、香橙派）安装Klipper步骤： 账号root 密码1234 第一次进入后先设置系统密码，选择系统风格是zsh，新建klipper用户 更新系统sudo apt-get update 连接wifi   armbian-config 查看ip地址   ... <a href="https://duantong.net/post-23.html">阅读全文&gt;&gt;</a>]]></description>
    <pubDate>Sat, 13 Apr 2024 10:35:08 +0000</pubDate>
    <author>段彤</author>
    <guid>https://duantong.net/post-23.html</guid>

</item>
<item>
    <title>Docker 中安装 ubuntu 并用ssh连接</title>
    <link>https://duantong.net/post-22.html</link>
    <description><![CDATA[一、运行镜像docker run --name ubuntu -it -d -p 8022:22 ubuntu:latest还没有安装过docker的小伙伴，可以参考附录中的文章安装docker。二、安装 ssh2.1 进入容器docker exec -it ubuntu /bin/bash2.2 更新包管理器apt-get update2.3 安装 ssh 并启动apt-get install openssh-server openssh-client启动ssh/etc/init.d/ssh start查看启动进程ps -e | grep sshd三、初始化密码3.1 安装vimapt-get install vim3.2 编辑 sshd_confi... <a href="https://duantong.net/post-22.html">阅读全文&gt;&gt;</a>]]></description>
    <pubDate>Fri, 22 Mar 2024 08:00:22 +0000</pubDate>
    <author>段彤</author>
    <guid>https://duantong.net/post-22.html</guid>

</item>
<item>
    <title>Emlog修改默认动态链接?post=xxx的方法</title>
    <link>https://duantong.net/post-21.html</link>
    <description><![CDATA[修改前请注意备份举例说明，比如将 http://域名/?post=1 修改为 http://域名/?id=1第一步、在根目录文件include/lib/url.php中找到 第 40 行左右$logUrl = BLOG_URL . '?post=' . $blogId;并把其中的 post 改为 id；第二步、在根目录文件include/lib/option.php中找到'reg_0' =  '|^.*/\?(post)=(\d+)(&(comment-page)=(\d+))?([\?&].*)?$|',并把其中的 post 改为 id；第三步、在根目录文件include/controller/log_controller.php中找到if ($pa... <a href="https://duantong.net/post-21.html">阅读全文&gt;&gt;</a>]]></description>
    <pubDate>Thu, 16 Nov 2023 09:46:33 +0000</pubDate>
    <author>段彤</author>
    <guid>https://duantong.net/post-21.html</guid>

</item>
<item>
    <title>Aria2 SSL/TLS handshake failure: The signature algorithm is not supported. 问题解决</title>
    <link>https://duantong.net/post-20.html</link>
    <description><![CDATA[利用系统自动安装的Aria2ubuntu 14.04 x64aria2 下载https://d1.baidupcs.com会提示 errorCode=1 SSL/TLS handshake failure: The signature algorithm is not supported.aria2c 'https://d1.baidupcs.com'搜索了一下在https://github.com/aria2/aria2/issues/392有提到，是 gnutls 的问题。但是却没有解决方案，请教下要怎么解决。也有说在https://github.com/aria2/aria2/commit/dd277b33af2a5a58c39142... <a href="https://duantong.net/post-20.html">阅读全文&gt;&gt;</a>]]></description>
    <pubDate>Tue, 10 Oct 2023 09:55:26 +0000</pubDate>
    <author>段彤</author>
    <guid>https://duantong.net/post-20.html</guid>

</item>
<item>
    <title>[分享] 一键脚本搭建网站CDN节点教程，可配置ssl、网站添加管理</title>
    <link>https://duantong.net/post-19.html</link>
    <description><![CDATA[一键搭建CDN, 一键自动配置Let's Encrypt加OCSP装订，一键添加网站，一键管理网站，等等&hellip;&hellip;一键CDN脚本功能简介：自动将您的VPS（512 MB内存即可）部署为CDN节点自动引导配置网站、设置重写规则、配置SSL证书可以一键Let's Encrypt证书并开启OCSP装订配置缓存规则添加删除网站、修改IP、等等查看日志与统计高级缓存控制备份CDN设置与SSL证书，实现多节点快速导入到处设定支持中英文开源地址：https://github.com/Har-Kuun/OneClickCDN/简易命令行面板示例：系统环境要求目前支持Ubuntu 20.04 LTS, Debian 10, Debian 11, C... <a href="https://duantong.net/post-19.html">阅读全文&gt;&gt;</a>]]></description>
    <pubDate>Tue, 05 Sep 2023 06:47:03 +0000</pubDate>
    <author>段彤</author>
    <guid>https://duantong.net/post-19.html</guid>

</item></channel>
</rss>