-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release-1.0.5 change docker-compose-yml to 1.0.5 change k8s config to 1.0.5 change version to latest change version to latest update docker-compose.yml update docker-compose.yml update docker-compose.yml latest * update docker to 1.0.5 * Release-1.0.6
- Loading branch information
Showing
8 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
Submodule dongtai-agent-java
updated
93 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule docker
updated
4 files
+3 −0 | .github/workflows/build_base_image.yaml | |
+8 −5 | .github/workflows/release_base_image.yaml | |
+1 −0 | mysql/update-20211009.sql | |
+1,337 −0 | mysql/update-20211022.sql |
Submodule dongtai-engine
updated
21 files
+1 −1 | .dockerignore | |
+62 −28 | .github/workflows/deploy_engine_to_aws.yml | |
+0 −87 | .github/workflows/deploy_engine_to_aws_test.yml | |
+23 −23 | .github/workflows/release_engine.yml | |
+1 −1 | .gitignore | |
+6 −6 | README.md | |
+6 −6 | README_CN.md | |
+9 −9 | conf/config.ini.example | |
+5 −0 | core/plugins/__init__.py | |
+150 −0 | core/plugins/strategy_headers.py | |
+10 −0 | core/plugins/strategy_sensitive.py | |
+17 −0 | core/plugins/strategy_taint.py | |
+5 −1 | core/tasks.py | |
+1 −1 | deploy/deploy-eks-iast-saas-engine-prod.yml | |
+1 −1 | deploy/deploy-eks-iast-saas-engine-task-prod.yml | |
+11 −18 | lingzhi_engine/settings.py | |
+1 −0 | logs/engine.log.example | |
+1 −1 | signals/handlers/vul_handler.py | |
+5 −0 | test/core/plugins/__init__.py | |
+28 −0 | test/core/plugins/strategy_headers.py | |
+2 −2 | vuln/views/health.py |
Submodule dongtai-openapi
updated
27 files
Submodule dongtai-web
updated
23 files
+2 −2 | .env | |
+0 −39 | .github/workflows/build-web.yml | |
+9 −6 | .github/workflows/deploy-web-to-aws.yml | |
+0 −69 | .github/workflows/deploy-web-to-aws_test.yml | |
+15 −4 | .github/workflows/deploy-web-to-release.yml | |
+2 −4 | deploy/deploy-eks-iast-saas-web-prod.yml | |
+52 −5 | src/config/lang/en.ts | |
+45 −6 | src/config/lang/zh_cn.ts | |
+27 −24 | src/router/routes.ts | |
+2 −0 | src/services/index.ts | |
+24 −0 | src/services/message.ts | |
+12 −0 | src/services/setting.ts | |
+4 −0 | src/services/taint.ts | |
+13 −2 | src/views/Login.vue | |
+14 −2 | src/views/deploy/Deploy.vue | |
+187 −2 | src/views/layout/Header.vue | |
+98 −10 | src/views/setting/AgentManage.vue | |
+21 −3 | src/views/setting/ChangePassword.vue | |
+122 −26 | src/views/setting/SysInfo.vue | |
+3 −3 | src/views/setting/changeLogo.vue | |
+1 −1 | src/views/setting/hookRule.vue | |
+17 −4 | src/views/taint/Search.vue | |
+319 −42 | src/views/taint/SearchBar.vue |
Submodule dongtai-webapi
updated
27 files
+55 −2 | .github/workflows/deploy_webapi_to_aws.yml | |
+0 −93 | .github/workflows/deploy_webapi_to_aws_test.yml | |
+5 −4 | .github/workflows/release_webapi.yml | |
+23 −5 | README.ZH_CN.md | |
+25 −5 | README.md | |
+1 −3 | deploy/deploy-dongtai-webapi-prod.yml | |
+249 −86 | i18n/en/LC_MESSAGES/django.po | |
+ − | i18n/zh/LC_MESSAGES/django.mo | |
+233 −92 | i18n/zh/LC_MESSAGES/django.po | |
+13 −8 | iast/github_contributors.py | |
+25 −4 | iast/serializers/agent.py | |
+23 −6 | iast/urls.py | |
+15 −0 | iast/utils.py | |
+46 −0 | iast/views/agent_alias_modified.py | |
+0 −1 | iast/views/documents.py | |
+2 −2 | iast/views/engine_hook_rule_add.py | |
+47 −19 | iast/views/engine_method_pool_search.py | |
+51 −0 | iast/views/engine_method_pool_time_range.py | |
+13 −14 | iast/views/github_contributors.py | |
+55 −0 | iast/views/messages_del.py | |
+74 −0 | iast/views/messages_list.py | |
+43 −0 | iast/views/messages_new.py | |
+50 −0 | iast/views/messages_send.py | |
+78 −9 | iast/views/profile.py | |
+1 −1 | iast/views/project_add.py | |
+11 −6 | iast/views/project_report_export.py | |
+3 −1 | webapi/settings.py |