<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>日常问题 on 随记</title><link>https://blog.liuyi2026.asia/zh/tags/%E6%97%A5%E5%B8%B8%E9%97%AE%E9%A2%98/</link><description>Recent content in 日常问题 on 随记</description><generator>Hugo</generator><language>zh</language><lastBuildDate>Thu, 06 Aug 2026 09:26:31 +0800</lastBuildDate><atom:link href="https://blog.liuyi2026.asia/zh/tags/%E6%97%A5%E5%B8%B8%E9%97%AE%E9%A2%98/index.xml" rel="self" type="application/rss+xml"/><item><title>Crack</title><link>https://blog.liuyi2026.asia/zh/docs/problem/Wifi/Crack/</link><pubDate>Thu, 06 Aug 2026 09:26:31 +0800</pubDate><guid>https://blog.liuyi2026.asia/zh/docs/problem/Wifi/Crack/</guid><description>&lt;p>&lt;em>&lt;strong>学习如何破解自己的wifi（o.O）&lt;/strong>&lt;/em>&lt;/p>
&lt;h1 id="这里以安装在路由器上的系统openwrt为例">这里以安装在路由器上的系统openwrt为例&lt;a class="anchor" href="#%e8%bf%99%e9%87%8c%e4%bb%a5%e5%ae%89%e8%a3%85%e5%9c%a8%e8%b7%af%e7%94%b1%e5%99%a8%e4%b8%8a%e7%9a%84%e7%b3%bb%e7%bb%9fopenwrt%e4%b8%ba%e4%be%8b">#&lt;/a>&lt;/h1>
&lt;h2 id="前提">前提&lt;a class="anchor" href="#%e5%89%8d%e6%8f%90">#&lt;/a>&lt;/h2>
&lt;p>安装一些软件&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-shell" data-lang="shell">&lt;span style="display:flex;">&lt;span>apk update &lt;span style="color:#f92672">&amp;amp;&amp;amp;&lt;/span> apk upgrade
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>apk add lrzsz &lt;span style="color:#75715e">#在xshell上传下载字典&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>apk add hcxtools &lt;span style="color:#75715e">#握手包格式转换&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>apk add aircrack-ng &lt;span style="color:#75715e">#监听扫描&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>apk add airmon-ng &lt;span style="color:#75715e">#貌似不需要这个&lt;/span>&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>接下来会新加两个虚拟接口（重启路由器之后会消失）&lt;/p>
&lt;h2 id="关闭原来的部分接口">关闭原来的部分接口&lt;a class="anchor" href="#%e5%85%b3%e9%97%ad%e5%8e%9f%e6%9d%a5%e7%9a%84%e9%83%a8%e5%88%86%e6%8e%a5%e5%8f%a3">#&lt;/a>&lt;/h2>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-shell" data-lang="shell">&lt;span style="display:flex;">&lt;span>wifi down&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>(也可以不关闭原来的接口 &lt;del>即不 &lt;code>wifi down&lt;/code>&lt;/del> ，直接禁用2.4G的wifi，以及中继的5Gwifi。默认就会直接去扫描5G &lt;del>但是也只能扫描部分信道，不能扫描全部的&lt;/del> ，后面也不用特意设置5G频率)&lt;/p>
&lt;h2 id="添加接口">添加接口&lt;a class="anchor" href="#%e6%b7%bb%e5%8a%a0%e6%8e%a5%e5%8f%a3">#&lt;/a>&lt;/h2>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-shell" data-lang="shell">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#供扫描2.4G wifi用&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>iw phy phy0 interface add mon24 type monitor
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#启用该接口&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>ip link set mon24 up 
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#供扫描5G wifi用&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>iw phy phy0 interface add mon5 type monitor
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#启用该接口&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>ip link set mon5 up 
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#查看是否添加成功&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>iw dev&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;h2 id="设置频率并扫描">设置频率并扫描&lt;a class="anchor" href="#%e8%ae%be%e7%bd%ae%e9%a2%91%e7%8e%87%e5%b9%b6%e6%89%ab%e6%8f%8f">#&lt;/a>&lt;/h2>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-shell" data-lang="shell">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#设置2.4G wifi&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>iw dev mon24 set freq &lt;span style="color:#ae81ff">2412&lt;/span> 
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#设置5G wifi&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>iw dev mon5 set freq &lt;span style="color:#ae81ff">5180&lt;/span>&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>查看一下是否设置成功&lt;/p></description></item><item><title>如何搜索</title><link>https://blog.liuyi2026.asia/zh/docs/problem/Other/01/</link><pubDate>Fri, 26 Apr 2024 00:00:00 +0000</pubDate><guid>https://blog.liuyi2026.asia/zh/docs/problem/Other/01/</guid><description>&lt;h1 id="原则">原则&lt;a class="anchor" href="#%e5%8e%9f%e5%88%99">#&lt;/a>&lt;/h1>
&lt;ol>
&lt;li>搜索的时候，要&lt;strong>简约&lt;/strong>，且尽量把&lt;strong>关键词分散&lt;/strong>，不要有&amp;quot;的&amp;quot;，&amp;ldquo;地&amp;rdquo;，或者其他动词什么的，尽量是&lt;strong>名词&lt;/strong>。&lt;/li>
&lt;li>关键词之间用&lt;strong>空格隔开&lt;/strong>&lt;/li>
&lt;/ol>
&lt;p>比如想要看一部电影，那么关键词有&amp;quot;电影名&amp;quot;，&amp;ldquo;bt&amp;rdquo;，&amp;ldquo;迅雷&amp;rdquo;，&amp;ldquo;阿里云盘&amp;rdquo;，&amp;ldquo;百度网盘&amp;rdquo;&lt;/p>
&lt;blockquote class='book-hint '>
&lt;p>解释一下，这里来源（迅雷|阿里云盘|百度网盘），资源类型（bt）也是关键词&lt;/p>&lt;/blockquote>&lt;p>所以搜索就是**&amp;ldquo;孤注一掷 bt&amp;rdquo;，&amp;ldquo;孤注一掷 阿里云盘&amp;rdquo;，&amp;ldquo;孤注一掷 百度网盘&amp;rdquo;，&amp;ldquo;孤注一掷 迅雷&amp;rdquo;，注意，中间都有空格**&lt;/p>
&lt;h1 id="例子">例子&lt;a class="anchor" href="#%e4%be%8b%e5%ad%90">#&lt;/a>&lt;/h1>
&lt;h2 id="bt种子形式">bt种子形式&lt;a class="anchor" href="#bt%e7%a7%8d%e5%ad%90%e5%bd%a2%e5%bc%8f">#&lt;/a>&lt;/h2>
&lt;p>&lt;img src="img/ly-20241212141836193.png" alt="image-20240226132336128" />&lt;br>
点进来之后，滑到最下面（一般链接都是以浅蓝色标识，点过一次后就变成暗红色）&lt;br>
&lt;img src="img/ly-20241212141836507.png" alt="image-20240226132614759" />&lt;/p>
&lt;p>bt文件一般要用&amp;quot;迅雷&amp;quot;这个软件下载，上面随便点击一个，迅雷这个软件就会跳出来&lt;br>
&lt;img src="img/ly-20241212141836693.png" alt="image-20240226132743460" />&lt;br>
然后选择好目录点击确认就可以下载了&lt;/p>
&lt;h2 id="阿里云盘形式">阿里云盘形式&lt;a class="anchor" href="#%e9%98%bf%e9%87%8c%e4%ba%91%e7%9b%98%e5%bd%a2%e5%bc%8f">#&lt;/a>&lt;/h2>
&lt;p>&lt;img src="img/ly-20241212141836869.png" alt="image-20240226133054195" />&lt;/p>
&lt;p>第一个链接有人提出质疑了，我们点下面那个，这是进入之后的画面：&lt;br>
&lt;img src="img/ly-20241212141837046.png" alt="image-20240226133201891" />&lt;br>
再点击&amp;quot;阿里xxxxxxxxxx&amp;quot;这个链接，进入阿里云盘：&lt;br>
&lt;img src="img/ly-20241212141837227.png" alt="image-20240226133251855" />&lt;/p>
&lt;p>点进来看视频文件还在不在，在的话，保存就可以了&lt;br>
&lt;img src="img/ly-20241212141837403.png" alt="image-20240226133340936" />&lt;br>
之后到自己的阿里云盘下载就行了&lt;/p>
&lt;h2 id="百度云盘形式">百度云盘形式&lt;a class="anchor" href="#%e7%99%be%e5%ba%a6%e4%ba%91%e7%9b%98%e5%bd%a2%e5%bc%8f">#&lt;/a>&lt;/h2>
&lt;p>百度云盘被限速了，不得已的情况下，不要用百度云盘，基本上前面两种形式的资源没找到的话，百度云盘大概率也不会有&lt;/p></description></item></channel></rss>