binwalk安装记录和burpsuite安装记录

我的虚拟机环境是Ubuntu20.04
python有2.7的和3.8的

  • [[#binwalk|binwalk]]
    • [[#binwalk#pip|pip]]
    • [[#binwalk#安装 sasquatch|安装 sasquatch]]
    • [[#binwalk#安装 jefferson|安装 jefferson]]
    • [[#binwalk#安装 ubi_reader|安装 ubi_reader]]
    • [[#binwalk#安装 yaffshiv|安装 yaffshiv]]
  • [[#报错汇总|报错汇总]]
    • [[#报错汇总#报错:qt5base-dev|报错:qt5base-dev]]
    • [[#报错汇总#报错SetuptoolsDeprecationWarning: setup.py install is deprecated. setuptools版本不匹配|报错SetuptoolsDeprecationWarning: setup.py install is deprecated. setuptools版本不匹配]]
    • [[#报错汇总#报错The Python LZMA module could not be found|报错The Python LZMA module could not be found]]
    • [[#报错汇总#报错sasquatch|报错sasquatch]]
    • [[#报错汇总#报错AttributeError: ‘module’ object has no attribute ‘DEVNULL’|报错AttributeError: ‘module’ object has no attribute ‘DEVNULL’]]
  • [[#装个QQ传文件方便|装个QQ传文件方便]]
  • [[#Burpsuite|Burpsuite]]

binwalk

Ubuntu安装binwalk完整步骤_ubuntu18安装binwalk-CSDN博客是我的参考资料
其实官方github上写的就这么点,实际上没有这么顺利-_-

$ git clone https://github.com/ReFirmLabs/binwalk.git
$ cd binwalk
$ sudo ./deps.sh
$ sudo python setup.py install

后面两个命令要多尝试几遍。最终的结果就是输入binwalk的时候可以输出binwalk版本,输入binwalk -e xxxx.bin的时候可以解压文件系统,而不是留一个很大的一坨解压不出来。

安装binwalk,这两个命令都试了

git clone https://github.com/ReFirmLabs/binwalk.git
pip3 install git+https://github.com/ReFirmLabs/binwalk.git

可以先运行一下sudo ./deps.sh 然后运行到一半就是很多问题
(git链接不稳定的可以注释掉所有的rm删除包的操作)

pip

需要,手动安装一些pip包,个人虚拟机的原因有些pip包很难安装上,在install xxxx后面加上-i https://pypi.tuna.tsinghua.edu.cn/simple可以解决网络不可达的问题

安装crypto, pycrypto 已停止更新, 使用 pycryptodome 
pip3 install pycryptodomepip3 install matplotlib PyQt5 pyqtgraph
pip3 install capstone这两个是安装jefferson中requirement.txt里面的包
pip install cstruct==2.1
pip install python-lzo==1.14

./deps.sh 命令,不能出错,某些依赖没有安装可能会导致解包失败,我直接运行sudo ./deps.sh会出现非常多的错误,所以就把他拆开了,一步一步运行一步一步安装

sudo apt-get install mtd-utils gzip bzip2 tar arj lhasa p7zip p7zip-full cabextract cramfsprogs cramfsswap squashfs-tools sleuthkit default-jdk lzop srecord

(这一步忘记装没装了)软件包 cramfsprogs 包含命令 cramfsck, 在新版 ubuntu 和 debian 中已被移除, 直接下载了旧版的包然后使用 dpkg 安装

wget http://mirrors.tuna.tsinghua.edu.cn/debian/pool/main/c/cramfs/cramfsprogs_1.1-6_amd64.deb
sudo dpkg -i cramfsprogs_1.1-6_amd64.deb
rm cramfsprogs_1.1-6_amd64.deb

在binwalk文件夹下:cd binwalk

安装 sasquatch

apt install build-essential liblzma-dev liblzo2-dev zlib1g-dev
git clone https://github.com/devttys0/sasquatch
cd sasquatch
./build.sh

sasquatch和squashfs-tools工具的安装和使用-CSDN博客
我好像还装了一个交squashfs-tools的东西,当时在所有的东西都装好了之后发现binwalk不能解压squashfs文件装的

$ git clone https://github.com/plougher/squashfs-tools.git
$ cd ./squashfs-tools/squashfs-tools
$ sudo make && sudo make install

或者$ sudo apt-get install squashfs-tools
但实际上没解决我的问题,我的问题后面解决了是python默认版本为2.7(过低)导致的

安装 jefferson

这两组命令我都试了,不知道哪个起作用

# jefferson 用于提取 JFFS2 文件系统
apt install python-pip
apt install liblzma-dev
pip2 install pyliblzma cstruct
pip2 install git+https://github.com/sviehb/jefferson.git
大致思路:
git clone https://github.com/sviehb/jefferson.git
cd jefferson
sudo apt update
sudo apt install python3-pip liblzo2-dev
sudo python3 -m pip install -r requirements.txt
sudo python3 setup.py install手动安装python包
pip3 install python-lzo==1.14 -i https://pypi.tuna.tsinghua.edu.cn/simplepip3 install cstruct==2.1 -i https://pypi.tuna.tsinghua.edu.cn/simple
然后sudo python3 setup.py install
输出:
running install_lib
creating /usr/local/lib/python3.8/dist-packages/jefferson
copying build/lib/jefferson/__init__.py -> /usr/local/lib/python3.8/dist-packages/jefferson
copying build/lib/jefferson/rtime.py -> /usr/local/lib/python3.8/dist-packages/jefferson
copying build/lib/jefferson/jffs2_lzma.py -> /usr/local/lib/python3.8/dist-packages/jefferson
byte-compiling /usr/local/lib/python3.8/dist-packages/jefferson/__init__.py to __init__.cpython-38.pyc
byte-compiling /usr/local/lib/python3.8/dist-packages/jefferson/rtime.py to rtime.cpython-38.pyc
byte-compiling /usr/local/lib/python3.8/dist-packages/jefferson/jffs2_lzma.py to jffs2_lzma.cpython-38.pyc
running install_scripts
copying build/scripts-3.8/jefferson -> /usr/local/bin
changing mode of /usr/local/bin/jefferson to 755
running install_egg_info
Writing /usr/local/lib/python3.8/dist-packages/jefferson-0.4.1.egg-info

安装 ubi_reader

# ubi_reader 用于提取 UBIFS 文件系统
apt install liblzo2-dev
pip3 install python-lzo
pip3 install git+https://github.com/jrspruitt/ubi_reader.git

输出

sunny2004@sunny2004-VirtualBox:~/my_files/binwalk/ubi_reader$ pip3 install git+https://github.com/jrspruitt/ubi_reader.git
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Collecting git+https://github.com/jrspruitt/ubi_reader.gitCloning https://github.com/jrspruitt/ubi_reader.git to /tmp/pip-req-build-0id1w32nRunning command git clone -q https://github.com/jrspruitt/ubi_reader.git /tmp/pip-req-build-0id1w32nInstalling build dependencies ... doneGetting requirements to build wheel ... donePreparing wheel metadata ... done
Collecting lzallright<0.3.0,>=0.2.1Downloading https://pypi.tuna.tsinghua.edu.cn/packages/e6/c0/7bed5bafcab95436ff78469a0a6c32554e2a3c291bf0227a111062ad6dda/lzallright-0.2.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)|████████████████████████████████| 1.3 MB 570 kB/s 
Building wheels for collected packages: ubi-readerBuilding wheel for ubi-reader (PEP 517) ... doneCreated wheel for ubi-reader: filename=ubi_reader-0.8.9-py3-none-any.whl size=70374 sha256=c72e0b9279c9179d9d65b0fe8b706328f52420ac006bc8c68e1a506cd1563ad3Stored in directory: /tmp/pip-ephem-wheel-cache-h4mnk3l_/wheels/c6/3e/0b/f2a5b3a8dd9f986a3f787cd69f1142e62b3b38852b01875c31
Successfully built ubi-reader
Installing collected packages: lzallright, ubi-reader
Successfully installed lzallright-0.2.3 ubi-reader-0.8.9

安装 yaffshiv

试了两组命令

# 安装 yaffshiv 用于提取 YAFFS 文件系统
pip2 install git+https://github.com/devttys0/yaffshiv

git clone https://github.com/devttys0/yaffshiv
然后到yaffshiv目录下,sudo python setup.py

sunny2004@sunny2004-VirtualBox:~/my_files/binwalk/yaffshiv$ sudo python setup.py install
[sudo] sunny2004 的密码: 
running install
running build
running build_scripts
running install_scripts
copying build/scripts-2.7/yaffshiv -> /usr/local/bin
changing mode of /usr/local/bin/yaffshiv to 775
running install_egg_info
Writing /usr/local/lib/python2.7/dist-packages/yaffshiv-0.1.egg-info

上面sudo ./deps.sh解决完

解决到最后一步:
sudo python setup.py install
出现:

Installed /usr/local/lib/python3.11/dist-packages/binwalk-2.3.3+cddfede-py3.11.egg
Processing dependencies for binwalk==2.3.3+cddfede
Finished processing dependencies for binwalk==2.3.3+cddfede

安装好了
再次输入binwalk,就会出现binwalk的版本号

报错汇总

报错:qt5base-dev

How To Install qtbase5-dev-tools on Kali Linux | Installati.one解决方法:
安装qtbase5-dev
然后再去deps.sh里面把qt5base-dev删掉

报错SetuptoolsDeprecationWarning: setup.py install is deprecated. setuptools版本不匹配

输入 sudo python setup.py install
错误:

/usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.
!!
********************************************************************************Please avoid running ``setup.py`` directly.Instead, use pypa/build, pypa/installer, pypa/build orother standards-based tools.See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.********************************************************************************!!self.initialize_options()
/usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: EasyInstallDeprecationWarning: easy_install command is deprecated.
!!********************************************************************************Please avoid running ``setup.py`` and ``easy_install``.Instead, use pypa/build, pypa/installer, pypa/build orother standards-based tools.See https://github.com/pypa/setuptools/issues/917 for details.********************************************************************************!!self.initialize_options()
warning: install_lib: 'build/lib' does not exist -- no Python modules to installzip_safe flag not set; analyzing archive contents...

这实际上是setuptools的问题
SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip - 知乎 (zhihu.com)
最近在编译时候发现个报错:SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.

可以看到我之前安装的setuptools版本是65.6.3,版本过高,尝试降低版本。
使用命令pip uninstall setuptools将高版本setuptools卸载使用命令pip install setuptools==58.2.0
安装指定较低版本setuptools如果网络不可达就:
pip install setuptools==58.2.0 -i https://pypi.tuna.tsinghua.edu.cn/simple 安装

然后再回到python setup.py install继续

报错The Python LZMA module could not be found

WARNING: The Python LZMA module could not be found. It is *strongly* recommended that you install this module for binwalk to provide proper LZMA identification and extraction results.

手动安装:apt-get install python-lzma

报错sasquatch

WARNING: Extractor.execute failed to run external extractor 'sasquatch -p 1 -le -d '%%squashfs-root%%' '%e'': [Errno 2] No such file or directoryWARNING: Extractor.execute failed to run external extractor 'sasquatch -p 1 -be -d '%%squashfs-root%%' '%e'': [Errno 2] No such file or directory1648424       0x192728        Squashfs filesystem, little endian, non-standard signature, version 3.0, size: 6099215 bytes, 447 inodes, blocksize: 65536 bytes, created: 2016-03-10 04:34:22

解决办法就是安装sasquath,或者sasquath没装好
原文链接:https://blog.csdn.net/yalecaltech/article/details/104244818

报错AttributeError: ‘module’ object has no attribute ‘DEVNULL’

这个是我真正的核心问题,并且困扰很久,因为他跟binwalk本身没有关系,搜索资料的时候太费劲了
Python 2.7中subprocess模块没有DEVNULL的处理方法_subprocess.devnull-CSDN博客
很简单,修改默认python的版本为3.8就可以了

sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ python 这是默认的2.7的时候
Python 2.7.18 (default, Jul  1 2022, 12:27:04) 
[GCC 9.4.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> exit
Use exit() or Ctrl-D (i.e. EOF) to exit
>>> exit()sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ python3 python3对应的是3.8
Python 3.8.10 (default, Nov 22 2023, 10:22:35) 
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ python --version
Python 2.7.18sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ $ sudo update-alternatives --config python    这个时候则表示 Python 的替代版本尚未被update-alternatives 命令识别。想解决这个问题,我们需要更新一下替代列表,将python2.7 和 python3.8 放入其中。
$:未找到命令sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ sudo update-alternatives --config python
[sudo] sunny2004 的密码: 
链接组 python (提供 /usr/bin/python)中只有一个候选项:/usr/bin/python2.7
无需配置。sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ sudo update-alternatives --config python
链接组 python (提供 /usr/bin/python)中只有一个候选项:/usr/bin/python2.7
无需配置。sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ whereis python
python: /usr/bin/python2.7-config /usr/bin/python3.8-config /usr/bin/python /usr/bin/python3.8 /usr/bin/python2.7 /usr/lib/python3.9 /usr/lib/python3.8 /usr/lib/python2.7 /etc/python3.8 /etc/python2.7 /usr/local/lib/python3.8 /usr/local/lib/python2.7 /usr/include/python3.8 /usr/include/python2.7 /usr/share/pythonsunny2004@sunny2004-VirtualBox:~/my_files/firmware$ update-alternatives --list python
/usr/bin/python2.7sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
\update-alternatives: 错误: 无法创建文件 /var/lib/dpkg/alternatives/python.dpkg-tmp: 权限不够sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ update-alternatives --install /usr/bin/python python /usr/bin/python3.8 2
update-alternatives: 使用 /usr/bin/python3.8 来在自动模式中提供 /usr/bin/python (python)
update-alternatives: 错误: 新建符号链接 /etc/alternatives/python.dpkg-tmp 时出错: 权限不够sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 2
update-alternatives: 使用 /usr/bin/python3.8 来在自动模式中提供 /usr/bin/python (python)
sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ update-alternatives --list python
/usr/bin/python2.7
/usr/bin/python3.8
sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ update-alternatives --config python
有 2 个候选项可用于替换 python (提供 /usr/bin/python)。选择       路径              优先级  状态
------------------------------------------------------------
* 0            /usr/bin/python3.8   2         自动模式1            /usr/bin/python2.7   1         手动模式2            /usr/bin/python3.8   2         手动模式要维持当前值[*]请按<回车键>,或者键入选择的编号:0 
sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ python
Python 3.8.10 (default, Nov 22 2023, 10:22:35) 
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ 替换成功了sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ python2
Python 2.7.18 (default, Jul  1 2022, 12:27:04) 
[GCC 9.4.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
sunny2004@sunny2004-VirtualBox:~/my_files/firmware$ 

装个QQ传文件方便

https://im.qq.com/download/
在这里下载linux版本的,x86,deb然后在文件夹下运行
└─$ sudo dpkg -i linuxqq_3.2.3-19189_amd64.deb
然后就可以在应用程序里搜到了
登录就可以了

# FirmAE

安装之前一定要保证binwalk可以顺利安装
安装步骤

$ git clone --recursive https://github.com/pr0v3rbs/FirmAE
$ ./download.sh 这里面有27个文件,git有问题连接不上,我手动下载下来的,放到FirmAE新建一个文件夹binaries里面
$ ./install.sh

pr0v3rbs/FirmAE: Towards Large-Scale Emulation of IoT Firmware for Dynamic Analysis (github.com)这里面就写的很详细了,主要遇到的问题还是binwalk的

FirmAE的工作模式分为5种:-c检查是否能模拟、-a漏洞分析、-r固件模拟的运行、-d用户级的调试、-b内核级的调试。

# 命令
sudo ./run.sh -c <brand> <firmware>
sudo ./run.sh -a <brand> <firmware>
sudo ./run.sh -r <brand> <firmware>
sudo ./run.sh -d <brand> <firmware>
sudo ./run.sh -b <brand> <firmware>

其中,<firmware>是固件路径,<brand>是固件的牌子,这个可以随意写。

在对固件模拟前,尽量先-c进行检查。在检查之后,运行和调试时的模拟速度也会变快。

他现在动了一点,然后就又不动了,啊啊啊好离谱,这个-c模式时检查是否可以模拟和调试的,检查固件是否可以仿真,会给出仿真成功后可以访问web页面的ip,或是仿真失败给出仿真失败的原因比如固件提取失败、网络构建失败、服务启动失败等,比如这样:sudo ./run.sh -c DIR820L /home/iotsec/DIR820LA1_FW105B03.bin
到了[*] infer network start!!!的时候不要着急,稍微等一等

后面我再模拟的时候就报错了,什么需要更改没有权限之类的,有可能是权限问题:
image下的文件我把他全部修改成所有权限都打开了
修改文件夹下所有文件的权限:
sudo chmod -R 777 filename

FirmAE固件模拟及IOT漏洞复现分析入门 | CTF导航 (ctfiot.com)这是我调试FirmAE的参考链接
执行sudo ./run.sh -r DIR820L /home/iotsec/DIR820LA1_FW105B03.bin命令
进行固件模拟

sunny2004@sunny2004-VirtualBox:~/my_files/my_install/FirmAE$ sudo ./run.sh -r WRT54GL FW_WRT54GL_4.30.18.006_ETSI_20160108.bin 
[sudo] sunny2004 的密码: 
[*] FW_WRT54GL_4.30.18.006_ETSI_20160108.bin emulation start!!!
[*] extract done!!!
[*] get architecture done!!!
[*] FW_WRT54GL_4.30.18.006_ETSI_20160108.bin already succeed emulation!!![IID] 3
[MODE] run
[+] Network reachable on 192.168.1.1!
[+] Web service on 192.168.1.1
Creating TAP device tap3_0...
Set 'tap3_0' persistent and owned by uid 0
Bringing up TAP device...
Creating TAP device tap3_1...
Set 'tap3_1' persistent and owned by uid 0
Bringing up TAP device...
Starting emulation of firmware... 192.168.1.1 true true 12.048628845 13.674513941

中出现两个true则证明模拟成功
Starting emulation of firmware… 192.168.1.1 true true 12.048628845 13.674513941
然后我们就可以使用浏览器访问http://192.168.0.1
出现如下界面则表明我们成功模拟了一台D-Link路由器

退出的话,回到终端,ctrl+c就可以关掉了

在浏览器输入192.168.0.1就可以看到模拟的界面了
使用空口令点击Login即可直接进入路由器后台管理界面
NETWORK SETTINGS功能处存在命令注入漏洞

Burpsuite

Ubuntu安装Burp Suite–史上最详细教程_ubuntu安装burpsuite-CSDN博客
里面有百度网盘的链接:链接:https://pan.baidu.com/s/1OqiYpRr2XnWPw6B1Tum2hw?pwd=2001 提取码:2001
下载之后,解压
用apt安装java

sunny2004@sunny2004-VirtualBox:~/my_files/my_install$ sudo apt install default-jre
[sudo] sunny2004 的密码: 
正在读取软件包列表... 完成
正在分析软件包的依赖关系树       
正在读取状态信息... 完成       
default-jre 已经是最新版 (2:1.11-72)。
default-jre 已设置为手动安装。
升级了 0 个软件包,新安装了 0 个软件包,要卸载 0 个软件包,有 62 个软件包未被升级。

然后启动jar包

sunny2004@sunny2004-VirtualBox:~/my_files/my_install$ java -jar BurpLoaderKeygen.jar 
Gtk-Message: 17:00:30.866: Failed to load module "canberra-gtk-module"

手动点run 激活burp安装成功即可
点ok,勾选框框(its performance),点同意
然后就要破解了,按照教程一步一步来,很顺利。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/707248.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JavaWeb——005 -- 请求响应 分层解耦(Postman、三层架构、IOC、DI、注解)

目录 一、请求 1、Postman&#xff08;接口测试工具&#xff09; 1.1、介绍 ②、安装 2、简单参数 1.1、原始方式 1.2、SpringBoot方法 ③、小结 3、实体参数 3.1、简单实体对象 3.2、复杂实体对象 3.3、小结 4、数组集合参数 ①、数组​编辑 ②、集合 ③、小结…

Alist访问主页显示空白解决方法

文章目录 问题记录问题探索和解决网络方案问题探究脚本内容查看 最终解决教程 问题记录 访问Alist主页显示空白&#xff0c;按F12打开开发人员工具 ,选择控制台&#xff0c;报错如下 index.75e31196.js:20 Uncaught TypeError: Cannot assign to read only property __symbo…

python|闲谈2048小游戏和数组的旋转及翻转和转置

目录 2048 生成数组 n阶方阵 方阵旋转 顺时针旋转 逆时针旋转 mxn矩阵 矩阵旋转 测试代码 测试结果 翻转和转置 2048 《2048》是一款比较流行​的数字游戏​&#xff0c;最早于2014年3月20日发行。原版2048由Gabriele Cirulli首先在GitHub上发布&#xff0c;后被移…

【Day59】代码随想录之动态规划_583两个字符串的删除操作_72编辑距离

文章目录 动态规划理论基础动规五部曲&#xff1a;出现结果不正确&#xff1a; 1. 583两个字符串的删除操作2. 72编辑距离 动态规划理论基础 动规五部曲&#xff1a; 确定dp数组 下标及dp[i] 的含义。递推公式&#xff1a;比如斐波那契数列 dp[i] dp[i-1] dp[i-2]。初始化d…

选择排序的简单介绍

选择排序是一种简单直观的排序算法&#xff0c;其原理如下&#xff1a; 1. 遍历数组&#xff0c;找到最小&#xff08;或最大&#xff09;的元素&#xff0c;并将其与数组的第一个元素交换位置。 2. 接着在剩下的元素中找到最小&#xff08;或最大&#xff09;的元素&#xff…

Uniapp在IOS系统打包测试流程

大家好我是咕噜美乐蒂&#xff0c;很高兴又和大家见面了&#xff01;UniApp 是一种基于 Vue.js 的跨平台应用开发框架&#xff0c;可以用于快速构建同时支持多个平台&#xff08;包括iOS、Android、Web 等&#xff09;的应用程序。在 iOS 系统上打包和测试 UniApp 应用的流程可…

园区水费收费管理系统

园区水费收费管理系统是专为园区或小区的水费管理而设计的系统&#xff0c;旨在提高水费收费效率、精准监测水费使用情况&#xff0c;简化管理流程&#xff0c;为园区管理方和居民提供便捷、高效的水费管理解决方案。该系统结合了数字化技术和智能化管理手段&#xff0c;通过线…

『NLP学习笔记』图解 GPT-2(可视化 Transformer 语言模型)

图解 GPT-2(可视化 Transformer 语言模型) 文章目录 一. GPT-2和语言模型1.1. 什么是语言模型1.2 Transformer的语言模型1.3 和BERT的不同1.4 Transformer 组件的演变1.4.1 encoder组件1.4.2 decoder组件1.4.3 只有decoder组件的decoder模块1.5 GPT-2内部结构1.6 GPT-2内部结构…

P1090 [NOIP2004 提高组] 合并果子 / [USACO06NOV] Fence Repair G python解法

P1090 [NOIP2004 提高组] 合并果子 / [USACO06NOV] Fence Repair G - 洛谷 | 计算机科学教育新生态 (luogu.com.cn) nint(input()) arrlist(map(int,input().split())) arr.sort() sumarr[0] total_sum0 #一开始以为单纯排列就行了&#xff0c;然后将之前累计的时间求和 for i…

非同质化权益(NFR):重塑当代商业市场的新范式

每天五分钟讲解一个互联网知识&#xff0c;大家好我是啊浩说互联网 随着区块链技术的日益成熟和数字资产的普及&#xff0c;非同质化权益&#xff08;Non-Fungible Rights&#xff0c;简称NFR&#xff09;开始崭露头角&#xff0c;并在当代商业市场中引发了一场深刻的变革。NFR…

pg_rman部署及使用

PG_RMAN部署及使用 PGSQL推出开源备份工具pg_rman&#xff0c;类似于oracle的rman备份策略&#xff0c;实现了全量、增量和归档等多重备份方式&#xff0c;可以很灵活的管理PGSQL数据库的备份&#xff0c;支持在线和基于PITR的备份恢复方式。 1、使用postgres用户部署 [post…

动态规划-状态转移(O(n))

获取生成数组中的最大值 1.题目 2.思路 其实只要看透该题的本质 并不难&#xff0c;应用动态规划&#xff0c;题目就已经给出了状态方程的式子。 首先规定好maxn的大小&#xff0c;防止溢出。定义nums数组。定义一个函数&#xff0c;写入状态方程式子。最后定义一个变量与数…

【数据结构】数组

第一章、为什么数组的下标一般从0开始编号 提到数组&#xff0c;读者肯定不陌生&#xff0c;甚至还会很自信地说&#xff0c;数组很简单。编程语言中一般会有数组这种数据类型。不过&#xff0c;它不仅是编程语言中的一种数据类型&#xff0c;还是基础的数据结构。尽管数组看起…

Openstack云计算架构及前期服务搭建

openstack介绍 Openstack是一个开源的云计算管理平台项目&#xff0c;由几个主要的组件组合起来完成具体工作&#xff0c;支持几乎所有的云环境&#xff0c;项目目标是提供实施简单、可大规模扩展、丰富、标准统一的云计算管理平台 ----百度百科 Openstack是一个云操作系统&a…

STM32开发(屏幕驱动ST7735S-SPI方式)用RT-Thread驱动测试

前言 使用ST7735S屏幕驱动&#xff0c;方便学习LVGL通过结构体的方式来管理相关函数和变量通讯协议和硬件驱动层进行解耦 驱动 配置&#xff08;用于对接硬件&#xff09; st7735s_conf.h // // Created by shchl on 2024/2/28. //#ifndef STM32F407V4T6_RTOS_ST7735S_CON…

css常用的选择器介绍

CSS&#xff08;层叠样式表&#xff09;选择器是CSS规则的一部分&#xff0c;它用于选择和定位网页上的元素&#xff0c;以便将样式应用到这些元素上。CSS选择器的种类繁多&#xff0c;每种选择器都有其特定的用途、特点和效率。在这篇文章中&#xff0c;我们将讨论一些常用的C…

Spring Boot项目如何快速从零开始打造一个属于自己的RPC框架

一、前言 在平时Spring Boot项目开发过程中,我们进行远程服务调用大都采用@RestController + @RequestMapping相关注解发布接口,使用OpenFeign组件进行微服务之间调用。这套技术架构已经足够完善了,当然没有什么问题,但是作为一个开发者,老是用一套框架天天写代码,不免有…

环境分析检测小剂量移液用耐受硝酸盐酸PFA材质吸管特氟龙移液枪枪头

PFA枪头&#xff0c;为移液枪专业定制&#xff0c;广泛用于ICP-MS、ICP-OES等痕量分析以及同位素分析等实验室。地质、电子化学品、半导体分析测试、疾控中心、制药厂、环境检测中心等一些机构少量移液用。 规格参考:0.1-0.2ml、1ml、2ml、5ml、10ml等。 目前部分规格可适配普…

什么是智能运维产品线和服务线

智能运维产品线和服务线涵盖了一系列自动化和智能化的技术和服务&#xff0c;旨在提升IT运维的效率和有效性。智能运维&#xff08;AIOps&#xff09;利用大数据、分析技术和机器学习能力来自动执行和简化运营工作流程&#xff0c;包括收集和汇总多源IT基础架构组件的数据、应用…

ARTS Week 18

Algorithm 本周的算法题为 485. 最大连续 1 的个数 给定一个二进制数组 nums &#xff0c; 计算其中最大连续 1 的个数。 示例 1&#xff1a;输入&#xff1a;nums [1,1,0,1,1,1]输出&#xff1a;3解释&#xff1a;开头的两位和最后的三位都是连续 1 &#xff0c;所以最大连续…