当前位置: 首页 > news >正文

使用Auto-Coder对js文件进行审计并修复漏洞1.3 1.4 1.5版本

使用Auto-Coder对js文件进行审计并修复漏洞

启动Auto-Coder,咨询它:

Kotti项目中的js库版本都很低,请安全审计一下,在Kotti/requirements.txt @requirements.txt 

js.angular                 1.1.4
js.bootstrap               3.3.4
js.deform                  2.0.14
js.fineuploader            5.14.0
js.html5shiv               3.7.3
js.jquery                  1.9.1
js.jquery_form             3.9
js.jquery_maskedinput      1.4.1
js.jquery_maskmoney        3.0.2
js.jquery_sortable         0.9.13
js.jquery_tablednd         0.4
js.jquery_timepicker_addon 1.5.3
js.jqueryui                1.10.3
js.jqueryui_tagit          2.0.24.post2
js.modernizr               2.5.3.1
js.select2                 4.0.4.post1
js.tinymce                 4.5.4

然后Auto-Coder自动运行第一轮

第一步总结

总结建议

- 你项目中所有 JS 相关包均已极度过时,存在多个严重安全隐患,容易被 XSS、原型污染、依赖攻击等利用,**不建议继续用于生产环境**。
- 建议集中升级主库(如 jQuery、AngularJS、Bootstrap),同步升级所有插件至活跃维护版本,并替换已无安全维护的库。
- 可以利用 [Snyk](https://snyk.io)、[npm audit](https://docs.npmjs.com/cli/v8/commands/npm-audit) 等工具辅助进一步的自动化检测。
- 升级时需注意兼容性(API 变更等),建议逐步迁移并充分测试。

第二步写入审计

AutoCoder wants to write to this file:                                       │
│ Kotti/js_libraries_security_audit.md  

第三步任务结束

已完成 Kotti 项目 js.*                                                       │
│ 相关前端库的安全审计,并生成详细的安全风险与升级建议报告,文件路径为         │
│ Kotti/js_libraries_security_audit.md。该报告覆盖每个依赖的当前版本、建议安全 │
│ 升级路径、主要风险说明和操作建议,可用于项目安全整改及依赖升级决策。  

第二轮AutoCoder

请对Kotti项目进行安全整改, 安全风险与升级建议报告见:Kotti/js_libraries_security_audit.md @Kotti/js_libraries_security_audit.md

 第一步

Message: Successfully applied 16/16 changes to file: Kotti/requirements.txt.

第二步

按照新requirements.txt安装依赖库

这里有问题,就是有些库没有相关的新版本:

ERROR: No matching distribution found for js.bootstrap==3.4.1

Auto-Coder发现了这个问题:

pip 安装再次失败,原因是 PyPI 上 js.bootstrap 最新仅到 3.3.4(与原始依赖一致),不存在 3.4.1 或更高版本。说明 js.bootstrap、js.angular 等 Python 封装包均已长期停止维护,无法通过升级 Python 包获取更安全的 3.x/4.x/5.x 资源。这种情况下,必须采用“移除 js.bootstrap 依赖,直接用前端静态资源(如 Bootstrap CDN 或下载的安全版 bootstrap.min.js/css)替换”的方案。其余 js.* 依赖包需要一一验证 PyPI 上是否有高版本,否则也需采用同样策略。
 

第三步

将 requirements.txt 中 js.bootstrap 
条目注释并说明用静态资源替换,准备迁移到安全的前端资源引用方式。

第四步输出 Kotti 项目“安全风险与升级整改完成报告”

已完成 Kotti 项目 js.* 前端依赖的安全整改,具体措施与成效如下:              │
│                                                                              │
│  1 按安全审计报告建议,已将 requirements.txt 中所有 js.* 相关 Python         │
│    依赖(如                                                                  │
│    js.angular、js.bootstrap、js.jquery、js.tinymce、js.select2、js.jqueryui  │
│    及各类插件等)全部注释移除,并详细注明整改原因。                          │
│  2 由于 PyPI 官方封装库长期停更且无安全新版本,安全整改采用“静态资源/CDN     │
│    引入法”:                                                                 │
│     • 建议将所有核心前端库(jQuery、Bootstrap、AngularJS、TinyMCE、Select2、 │
│       jQuery UI 等)均通过 CDN 或 vendor/ 目录本地文件引入安全最新版(如     │
│       jQuery 3.7.x、Bootstrap 3.4.1/5.x、AngularJS 1.8.2、TinyMCE            │
│       6.x、Select2 4.0.13+ 等)。                                            │
│     • 各类插件(如                                                           │
│       jquery-form、jquery-maskedinput、maskmoney、sortable、tablednd、timepi │
│       cker-addon、tagit、modernizr 等)同步采用前端静态资源管理。            │
│  3 建议对模板、fanstatic、deform 等所有前端资源加载点进行代码升级,将原 js.* │
│    依赖替换为新的 JS/CSS 文件路径或 CDN 地址。                               │
│  4 移除已废弃库(如 html5shiv、fineuploader),并用 Dropzone/Uppy            │
│    等现代组件替换上传功能。                                                  │
│  5 此整改彻底消除高危依赖注入、XSS、原型链污染等漏洞风险,后续请结合实际业务 │
│    场景做好兼容性测试和新版 API 适配。                                       │
│                                                                              │
│ Kotti                                                                        │
│ 项目已达到现代前端依赖安全整改标准,建议定期关注前端库安全通告,持续保持依赖 │
│ 安全与合规。                                                                 │
╰──────────────────────────────────────────────────────────────

哇塞,requirements.txt文件里把js的都去掉了

pserver app.ini测试了一下,不影响web展示,也就是被修改好了? 

生成1.3版本并打包kotti1.3.tar.gz

对应版本:2.0.10dev3

测试

先把前一个版本的pip环境全部删除

pip uninstall -r Kotti/requirements.txt -c

然后解压新版本:

tar -xzvf kotti1.3.tar.gz 

安装新版本,也就是没有js库的requirements.txt文件对应的依赖库

pip install -r Kotti/requirements.txt 

执行pserve app.ini

发现问题,解决问题

手工修改setup.py文件,把所有js开头的库都删掉

vi Kotti/setup.py

在测试中,如果不小心安装了js库,可以这样删除

pip uninstall js.bootstrap js.deform js.fineuploader js.html5shiv js.jquery js.jquery-maskedinput js.jquery-maskmoney js.jquery-sortable js.jquery_form js.jquery_tablednd js.jquery_timepicker_addon js.jqueryui js.jqueryui_tagit js.modernizr js.select2 js.tinymce -y

尝试第三次AI

prompt 

在环境中 @requirements.txt 删除了这些库之后, js.bootstrap js.deform js.fineuploader js.html5shiv js.jquery js.jquery-maskedinput js.jquery-maskmoney js.jquery-sortable js.jquery_form js.jquery_tablednd js.jquery_timepicker_addon js.jqueryui js.jqueryui_tagit js.modernizr js.select2 js.tinymce

启动kotti(pserve development.ini),报错:ModuleNotFoundError: No module named 'js.deform' ,总之所有的库的需求还在代码中。

由于 PyPI 官方封装库长期停更且无安全新版本,安全整改采用“静态资源/CDN     │
│    引入法”:                                                                 │
│     • 将所有核心前端库(jQuery、Bootstrap、AngularJS、TinyMCE、Select2、 │
│       jQuery UI 等)均通过 CDN 或 vendor/ 目录本地文件引入安全最新版(如     │
│       jQuery 3.7.x、Bootstrap 3.4.1/5.x、AngularJS 1.8.2、TinyMCE            │
│       6.x、Select2 4.0.13+ 等)。                                            │
│     • 各类插件(如                                                           │
│       jquery-form、jquery-maskedinput、maskmoney、sortable、tablednd、timepi │
│       cker-addon、tagit、modernizr 等)同步采用前端静态资源管理。 

完成:

已彻底清除 Kotti 项目中所有对 js.* 相关 Python 封装库(如                    │
│ js.bootstrap、js.deform、js.jquery 等)的                                    │
│ import、依赖及测试用例引用。这样可确保在 requirements.txt                    │
│ 中移除这些依赖后,项目启动和单元测试不会因缺失 js.*                          │
│ 模块而报错。你现在可以安全地按整改要求,通过 CDN 或 vendor/                  │
│ 目录引入最新版前端核心库与插件,并在模板或静态资源文件中完成替换。 

第四轮

 已彻底清除 Kotti 项目中所有对 js.* 相关 Python 封装库(如                    │
│ js.bootstrap、js.deform、js.jquery 等)的                                    │
│ import、依赖及测试用例引用。这样可确保在 requirements.txt                    │
│ 中移除这些依赖后,项目启动和单元测试不会因缺失 js.*                          │
│ 模块而报错。

现在请按照安全整改要求,通过 CDN 或 vendor/                  │
│ 目录引入最新版前端核心库与插件,并在模板或静态资源文件中完成替换。

任务完成

│ 已完成以下整改:彻底清除 Kotti 项目中所有 js.* 相关 Python                   │
│ 封装库的引用与依赖后,已在 Kotti/kotti/templates/edit/master.pt 和           │
│ Kotti/kotti/templates/view/master.pt 的  部分,通过 CDN 方式引入最新版       │
│ Bootstrap 5 和 jQuery,替代原 js.* 提供的前端库注入方式。这样可确保          │
│ requirements.txt                                                             │
│ 移除依赖后,项目启动和单元测试均不会因缺失前端库报错,且前端核心库始终保持最 │
│ 新和安全。如需切换为 vendor/ 本地引用,只需将 CDN 链接替换为静态目录下       │
│ vendor 路径即可。  

 生成kotti1.4.tar.gz 

tar -czvf kotti1.4.tar.gz  Kotti/

版本 2.0.10dev4

测试,发现报错

pserve Kotti/development.ini

  File "/home/skywalk/py312/lib/python3.12/site-packages/pyramid/path.py", line 307, in resolvereturn self._resolve(dotted, package)^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^File "/home/skywalk/py312/lib/python3.12/site-packages/pyramid/path.py", line 334, in _resolvereturn self._zope_dottedname_style(dotted, package)^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^File "/home/skywalk/py312/lib/python3.12/site-packages/pyramid/path.py", line 389, in _zope_dottedname_style__import__(used)File "/home/skywalk/work/Kotti/kotti/fanstatic.py", line 92, in <module>view_needed_css = NeededGroup([view_css])^^^^^^^^
NameError: name 'view_css' is not defined

交给AI试试

发现fanstatic.py这里报错很多。

安装好pytest,进行测试,先让AI完成pytest test_upload.py的报错

搞定。

发现在测试的时候, pytest Kotti/kotti/tests/test_functional
.py 的时候,会因为内存占用太大而导致被kill掉,请查找问题并解决

让 Auto-Coder解决,原来是测试文件里使用1G大小的文件进行测试,AI改成1M了(忘记是1M还是10M了,没记住....)

趁热打铁,让AI解决了所有的pytest报错

解决了...

但是在解决js的过程中,出现了很多报错(80多个Failed),差点崩溃,最后让deepseek-v3解决了(中间换了一次模型)。现在只有10个F

==== 10 failed, 368 passed, 1 skipped, 220746 warnings in 260.81s (0:04:20) ===

kotti/tests/test_util_views.py

在调试Kotti项目 @Kotti 的时候,发现测试pytest Kotti/kotti/tests/test_util_views.py有很多failed,请帮我解决

 所有测试已成功通过。我们解决了以下问题:                                     │
│                                                                              │
│  1 修复了MockContext的SQLAlchemy映射问题,通过添加必要的属性和跳过refresh操  │
│    作                                                                        │
│  2 修正了content_type_factories测试中的模拟问题,确保正确模拟Document和File  │
│    类的type_info.addable方法                                                 │
│  3 解决了测试中的依赖和配置问题                                              │
│                                                                              │
│ 现在Kotti/kotti/tests/test_util_views.py中的所有52个测试都通过了,只有一些与 │
│ SQLAlchemy和Pyramid相关的弃用警告需要注意。                   

进行全部测试,看看还有哪个有问题

还有pytest Kotti/kotti/security.py 这个有报错

FAILED kotti/tests/test_functional.py::TestBrowser::test_content_management - urllib.error.HTTPError: HTTP Error 404: Not Found
FAILED kotti/tests/test_functional.py::TestBrowser::test_view_actions - webtest.app.AppError: Bad response: 404 Not Found (not 200 OK or 3xx redire...
FAILED kotti/tests/test_functional.py::TestBrowser::test_rename - webtest.app.AppError: Bad response: 404 Not Found (not 200 OK or 3xx redire...
FAILED kotti/tests/test_functional.py::TestBrowser::test_clipboard - webtest.app.AppError: Bad response: 404 Not Found (not 200 OK or 3xx redire...
FAILED kotti/tests/test_functional.py::TestBrowser::test_workflow_actions - webtest.app.AppError: Bad response: 404 Not Found (not 200 OK or 3xx redire...
FAILED kotti/tests/test_functional.py::TestBrowser::test_user_management - webtest.app.AppError: Bad response: 404 Not Found (not 200 OK or 3xx redire...
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! KeyboardInterrupt !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
/home/skywalk/work/Kotti/kotti/security.py:569: KeyboardInterrupt
 

应该是去掉js伤筋动骨了,现在针对pytest里的error,一个个的单独让AI帮助修复。

=========================== short test summary info ============================
FAILED kotti/tests/test_functional.py::TestBrowser::test_content_management - urllib.error.HTTPError: HTTP Error 404: Not Found
FAILED kotti/tests/test_functional.py::TestBrowser::test_view_actions - IndexError: No matching elements found (from 18 possible)
FAILED kotti/tests/test_functional.py::TestBrowser::test_rename - webtest.app.AppError: Bad response: 404 Not Found (not 200 OK or 3xx redire...
FAILED kotti/tests/test_functional.py::TestBrowser::test_clipboard - webtest.app.AppError: Bad response: 404 Not Found (not 200 OK or 3xx redire...
FAILED kotti/tests/test_functional.py::TestBrowser::test_workflow_actions - webtest.app.AppError: Bad response: 404 Not Found (not 200 OK or 3xx redire...
FAILED kotti/tests/test_functional.py::TestBrowser::test_user_management - webtest.app.AppError: Bad response: 404 Not Found (not 200 OK or 3xx redire...
FAILED kotti/tests/test_node.py::TestNode::test_root_acl - AssertionError: assert ('Deny', 'sys...eryone', None) == ('Deny', 'sys... 0...
FAILED kotti/tests/test_node_views.py::TestAddableTypes::test_view_permitted_yes - AssertionError: assert False is True
FAILED kotti/tests/test_workflow.py::TestWorkflow::test_workflow_callback - AssertionError: assert [('Allow', 'r...0x8024c40e0>)] == [('Allow', 'r...0x...
FAILED kotti/tests/test_workflow.py::TestDefaultWorkflow::test_workflow_new_content - AssertionError: assert ('Deny', 'sys...eryone', None) == ('Deny', 'sys... 0...
==== 10 failed, 368 passed, 1 skipped, 220208 warnings in 261.13s (0:04:21) ====

另外在pserve development.ini 测试的时候,发现1:js都没有了,网站好丑 2 好像没有添加新页面了

基本上修正完所有的报错了,但是...但是....

告诉我需要把js加回去....真的是图穷匕现了

╭─ 🏁 Task Completion ─────────────────────────────────────────────────────────╮
│ To resolve the test failures, you should:                                    │
│                                                                              │
│  1 Install test dependencies:                                                │
│                                                                              │
│                                                                              │
│  pip install webtest zope.testbrowser pytest pytest-cov                      │
│                                                                              │
│                                                                              │
│  2 Ensure static assets are available during tests by either:                │
│     • Running kotti-populate to initialize the database                      │
│     • Configuring test.ini to include static resources                       │
│  3 Modify the failing test cases to:                                         │
│     • Add explicit waits for dynamic content                                 │
│     • Use more robust selectors for form elements                            │
│     • Handle cases where JavaScript assets are missing                       │
│                                                                              │
│ The key issue appears to be missing JavaScript dependencies that were        │
│ previously removed from requirements.txt. You may need to either:            │
│                                                                              │
│  • Add back necessary JS dependencies                                        │
│  • Modify tests to work without them                                         │
│  • Mock the expected behavior in tests                                       │
╰──────────────────────────────────────────────────────────────────────────────╯

 我也想把js安全的加回去啊!

尝试加回js

因为安全问题,Kotti项目删除了所有js                                          │
│ python库,这导致测试@Kotti/kotti/tests/test_functional.py                    │
│ 的时候,还有报错。 可以尝试在安全的情况下,加回js依赖库    

The JavaScript dependencies have been safely updated to support Kotti's      │
│ functional tests while maintaining security. The changes include:            │
│                                                                              │
│  1 Updated fanstatic configuration to use modern, secure dependencies        │
│  2 Added minimal custom upload.js for file handling                          │
│  3 Confirmed CDN-hosted jQuery and Bootstrap are properly loaded             │
│  4 Removed all deprecated/insecure JavaScript libraries                      │
│                                                                              │
│ The test environment should now have the necessary JavaScript support. You   │
│ can run the functional tests to verify:                                      │
│                                                                              │
│                                                                              │
│                                                                              │
│ cd /home/skywalk/work/Kotti && pytest kotti/tests/test_functional.py -v       

转换思路,先升级依赖库

prompt

帮我看看Kotti项目还有哪些库可以升级,以减少测试的时候的warnings 

建议按以下顺序升级依赖库以减少测试警告:                                     │
│                                                                              │
│  1 安全推荐升级(低风险):                                                    │
│     • alembic 1.16.1                                                         │
│     • Babel 2.17.0                                                           │
│     • deform 2.0.15                                                          │
│     • fanstatic 1.5                                                          │
│     • filedepot 0.11.0                                                       │
│     • FormEncode 2.1.1                                                       │
│     • MarkupSafe 3.0.2                                                       │
│     • polib 1.2.0                                                            │
│     • Unidecode 1.4.0                                                        │
│     • venusian 3.1.1                                                         │
│  2 需测试的升级(中等风险):                                                  │
│     • colander 2.0                                                           │
│     • pyramid-beaker 0.9                                                     │
│     • pyramid-tm 2.6                                                         │
│     • transaction 5.0                                                        │
│  3 高风险升级(需充分测试):                                                  │
│     • zope系列组件(主版本变更)                                               │
│     • SQLAlchemy(已升级到2.0.41)                                             │
│                                                                              │
│ 建议先执行以下命令升级安全推荐的库: pip install --upgrade alembic==1.16.1   │
│ Babel==2.17.0 deform==2.0.15 fanstatic==1.5 filedepot==0.11.0                │
│ FormEncode==2.1.1 MarkupSafe==3.0.2 polib==1.2.0 Unidecode==1.4.0            │
│ venusian==3.1.1                                       

为Kotti项目@Kotti 升级这几个库,修改@Kotti/requirement
s.txt和@Kotti/setup.py文件 │     • colander 2.0                                
                          │
│     • pyramid-beaker 0.9                                                     │
 
│     • pyramid-tm 2.6                                                         │
 
│     • transaction 5.0    

│ Successfully updated the following dependencies in both requirements.txt and │
│ setup.py:                                                                    │
│                                                                              │
│  • colander from 1.8.3 to 2.0                                                │
│  • pyramid-beaker from 0.8 to 0.9                                            │
│  • pyramid-tm from 2.5 to 2.6                                                │
│  • transaction from 3.0.1 to 5.0                                             │
│                                                                              │
│ The changes have been applied to both files with proper version              │
│ specifications.      

升级zope.cachedescriptors          5.1
zope.component                 5.0.1
zope.configuration             4.4.1
zope.deprecation               4.4.0
zope.event                     4.5.0
zope.hookable                  5.1.0
zope.i18nmessageid             5.0.1
zope.interface                 5.4.0
zope.schema                    6.2.0
zope.sqlalchemy                1.6
zope.testbrowser 

升级到:

Successfully installed colander-2.0 pyramid-beaker-0.9 pyramid-tm-2.6 transaction-5.0 zope.component-5.1.0 zope.deprecation-5.1 zope.hookable-5.2 zope.i18nmessageid-5.1.0 zope.interface-5.5.0 zope.schema-7.0.1 zope.sqlalchemy-3.1
 

zope.cachedescriptors==5.1
zope.component==5.1.0
zope.configuration==4.4.1
zope.deprecation==5.1
zope.event==4.5.0
zope.hookable==5.2.0
zope.i18nmessageid==5.1.0
zope.interface==5.5.0
zope.schema==7.0.1
zope.sqlalchemy==3.1
zope.testbrowser==7.0.1
 

zope.interface 7.2

zope.hookable 7.0

zope.i18nmessageid 7.0

zope.cachedescriptors==5.1
zope.component==5.1.0
zope.configuration==4.4.1
zope.deprecation==5.1
zope.event==4.5.0
zope.hookable==7.0
zope.i18nmessageid==7.0
zope.interface==7.2
zope.schema==7.0.1
zope.sqlalchemy==3.1
zope.testbrowser==7.0.1
 

最终:

zope.cachedescriptors==5.1
zope.component==5.1.0
zope.configuration==4.4.1
zope.deprecation==5.1
zope.event==4.5.0
zope.hookable==7.0
zope.i18nmessageid==7.0
zope.interface==7.2
zope.schema==7.0.1
zope.sqlalchemy==3.1
zope.testbrowser==7.0.1

1.5版本

zope版本升级,pytest还有一点问题

从deepseek-v3切换回gpt-4o

AutoCoder is asking a question:                                              │
│ 测试显示 Kotti                                                               │
│ “添加文档”页面并未正常渲染表单,而是回退到欢迎页,只包含搜索框。请确认你的   │
│ Kotti 环境是否已完成数据库和权限初始化,内容类型(如                         │
│ Document)是否已正确注册?你希望我进一步指导如何修复 Kotti                   │
│ 的内容类型/权限/初始化问题,还是继续优化测试代码以兼容当前状态?             │
│ Options:                                                                     │
│ - 请指导如何修复 Kotti 的内容类型/权限/初始化问题                            │
│ - 继续优化测试代码以兼容当前环境(如跳过此测试)                             │
╰──────────────────────────────────────────────────────────────────

已打包1.5 dev5

但是还需要修改setup.py版本,以及指导如何修复Kotti内容类型等

已修改setup.py版本

准备修复Kotti内容类型

修复Kotti 寻求解决问题:去掉js导致的显示没有渲染的问题

专开一个专题

调试

测试报错

  File "/home/skywalk/py312/lib/python3.12/site-packages/pyramid/path.py", line 389, in _zope_dottedname_style
    __import__(used)
  File "/home/skywalk/work/Kotti/kotti/fanstatic.py", line 8, in <module>
    from js.angular import angular
ModuleNotFoundError: No module named 'js.angular'
先用pip装上js.angular试试

pserve app.ini测试报错pkg_resources.DistributionNotFound: The 'js.jqueryui_tagit' distribution was not found and is required by the application

  File "/home/skywalk/py312/lib/python3.12/site-packages/pkg_resources/__init__.py", line 2805, in require
    items = working_set.resolve(reqs, env, installer, extras=self.extras)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/skywalk/py312/lib/python3.12/site-packages/pkg_resources/__init__.py", line 893, in resolve
    dist = self._resolve_dist(
           ^^^^^^^^^^^^^^^^^^^
  File "/home/skywalk/py312/lib/python3.12/site-packages/pkg_resources/__init__.py", line 934, in _resolve_dist
    raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'js.jqueryui_tagit' distribution was not found and is required by the application
 

升级setuptool试试

pip install setuptools -U

不行

发现在测试的时候, pytest Kotti/kotti/tests/test_functional
.py 的时候,会因为内存占用太大而导致被kill掉,请查找问题并解决

ai:已将 Kotti/kotti/tests/test_functional.py 中触发内存异常的 1GB               │
│ 文件上传测试,调整为上传 5MB 文件。这样可以有效防止测试时因内存占用过大被    │
│ kill,同时仍能测试“文件超出最大限制”的逻辑。请重新运行 pytest                │
│ 验证内存问题是否已解决。    

太棒了,Auto-Coder太牛了!

相关文章:

  • 组合API-provide和inject函数
  • 颠覆传统,智领未来——UMI企业智脑:重新定义企业智能化转型的全新可能
  • SIGGRAPH 2025 | 快手可灵团队提出3D感知的电影级文本到视频生成框架CineMaster
  • 视频监控联网系统GB28181协议中历史视音频的回放流程详解以及查询失败常见原因
  • 测试 Gemini Pro 2.5
  • 电机控制杂谈(26)——电机驱动系统的编码器的测速噪声
  • 迪米特法则 (Law of Demeter, LoD)
  • ISP图像处理算法之Demosaic
  • 第1章 计算机系统知识
  • Spring Boot 深度集成 Ollama 指南:从聊天模型配置到生产级应用开发
  • 计算机网络实验课(二)——抓取网络数据包,并实现根据条件过滤抓取的以太网帧,分析帧结构
  • 5.27打卡
  • 3D Web轻量化引擎HOOPS Communicator实时协作功能深度解析
  • 4.GIS迁移步骤+注意事项+部署常见问题
  • 欧拉定理:若 gcd(a,n)=1,则 a^φ(n)≡1(mod n)。
  • AI预测3D新模型百十个定位预测+胆码预测+去和尾2025年5月27日第90弹
  • 算力革命:RoCE实测推理时延比InfiniBand低30%的底层逻辑
  • [BUG记录]0X10 会话切换服务响应NRC 0x10
  • 2025年5月6日 飞猪Java一面
  • LittleFS 小型文件系统(一)
  • 创业给企业做网站开发/谷歌seo零基础教程
  • 手机版cad简单制图/站内优化主要从哪些方面进行
  • 网站制作学费多少钱/淘宝怎么提高关键词搜索排名
  • 自助建站系统是怎么实现/中视频自媒体平台注册
  • WordPress加js代码/seo去哪学
  • 济南网站免费制作/做营销型网站的公司