Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Правило "Обращение к Интернет-ресурсам" - ГОТОВО #3084

Merged
merged 8 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/diagnostics/InternetAccess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Обращение к Интернет-ресурсам (InternetAccess)

<!-- Блоки выше заполняются автоматически, не трогать -->
## Описание диагностики
<!-- Описание диагностики заполняется вручную. Необходимо понятным языком описать смысл и схему работу -->
Проверьте обращение к Интернет-ресурсам и набор передаваемых данных для исключения передачи конфиденциальной или защищенной информации.

## Примеры
<!-- В данном разделе приводятся примеры, на которые диагностика срабатывает, а также можно привести пример, как можно исправить ситуацию -->
```bsl
HTTPСоединение = Новый HTTPСоединение("zabbix.localhost", 80); // замечание
FTPСоединение = Новый FTPСоединение(Сервер, Порт, Пользователь, Пароль); // замечание
```

## Источники
<!-- Необходимо указывать ссылки на все источники, из которых почерпнута информация для создания диагностики -->
<!-- Примеры источников

* Источник: [Стандарт: Тексты модулей](https://its.1c.ru/db/v8std#content:456:hdoc)
* Полезная информация: [Отказ от использования модальных окон](https://its.1c.ru/db/metod8dev#content:5272:hdoc)
* Источник: [Cognitive complexity, ver. 1.4](https://www.sonarsource.com/docs/CognitiveComplexity.pdf) -->
16 changes: 16 additions & 0 deletions docs/en/diagnostics/InternetAccess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Referring to Internet resources (InternetAccess)

<!-- Блоки выше заполняются автоматически, не трогать -->
## Description
<!-- Описание диагностики заполняется вручную. Необходимо понятным языком описать смысл и схему работу -->

## Examples
<!-- В данном разделе приводятся примеры, на которые диагностика срабатывает, а также можно привести пример, как можно исправить ситуацию -->

## Sources
<!-- Необходимо указывать ссылки на все источники, из которых почерпнута информация для создания диагностики -->
<!-- Примеры источников

* Источник: [Стандарт: Тексты модулей](https://its.1c.ru/db/v8std#content:456:hdoc)
* Полезная информация: [Отказ от использования модальных окон](https://its.1c.ru/db/metod8dev#content:5272:hdoc)
* Источник: [Cognitive complexity, ver. 1.4](https://www.sonarsource.com/docs/CognitiveComplexity.pdf) -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*
* This file is a part of BSL Language Server.
*
* Copyright (c) 2018-2023
* Alexey Sosnoviy <labotamy@gmail.com>, Nikita Fedkin <nixel2007@gmail.com> and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
* BSL Language Server is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3.0 of the License, or (at your option) any later version.
*
* BSL Language Server is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with BSL Language Server.
*/
package com.github._1c_syntax.bsl.languageserver.diagnostics;

import com.github._1c_syntax.bsl.languageserver.diagnostics.metadata.DiagnosticMetadata;
import com.github._1c_syntax.bsl.languageserver.diagnostics.metadata.DiagnosticSeverity;
import com.github._1c_syntax.bsl.languageserver.diagnostics.metadata.DiagnosticTag;
import com.github._1c_syntax.bsl.languageserver.diagnostics.metadata.DiagnosticType;
import com.github._1c_syntax.bsl.languageserver.utils.bsl.Constructors;
import com.github._1c_syntax.bsl.parser.BSLParser;
import com.github._1c_syntax.utils.CaseInsensitivePattern;
import org.antlr.v4.runtime.tree.ParseTree;

import java.util.regex.Pattern;

@DiagnosticMetadata(
type = DiagnosticType.VULNERABILITY,
severity = DiagnosticSeverity.MAJOR,
minutesToFix = 60,
tags = {
DiagnosticTag.SUSPICIOUS
},
activatedByDefault = false
)

public class InternetAccessDiagnostic extends AbstractVisitorDiagnostic {
private static final Pattern PATTERN_NEW_EXPRESSION = CaseInsensitivePattern.compile(
"FTPСоединение|FTPConnection|HTTPСоединение|HTTPConnection|WSОпределения|WSDefinitions|WSПрокси|WSProxy" +
"|ИнтернетПочтовыйПрофиль|InternetMailProfile|ИнтернетПочта|InternetMail|Почта|Mail|HTTPЗапрос|HTTPRequest|" +
"ИнтернетПрокси|InternetProxy");
artbear marked this conversation as resolved.
Show resolved Hide resolved

@Override
public ParseTree visitNewExpression(BSLParser.NewExpressionContext ctx) {
Constructors.typeName(ctx).ifPresent((String typeName) -> {
theshadowco marked this conversation as resolved.
Show resolved Hide resolved
var matcherTypeName = PATTERN_NEW_EXPRESSION.matcher(typeName);
if (matcherTypeName.matches()) {
diagnosticStorage.addDiagnostic(ctx);
}
});
return super.visitNewExpression(ctx);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -888,6 +888,16 @@
"title": "Incorrect use of \"StrTemplate\"",
"$id": "#/definitions/IncorrectUseOfStrTemplate"
},
"InternetAccess": {
"description": "Referring to Internet resources",
"default": true,
"type": [
"boolean",
"object"
],
"title": "Referring to Internet resources",
"$id": "#/definitions/InternetAccess"
},
"InvalidCharacterInFile": {
"description": "Invalid character",
"default": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
diagnosticMessage=Check the reference to Internet resources
diagnosticName=Referring to Internet resources
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
diagnosticMessage=Проверьте обращение к Интернет-ресурсам
diagnosticName=Обращение к Интернет-ресурсам
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/*
* This file is a part of BSL Language Server.
*
* Copyright (c) 2018-2023
* Alexey Sosnoviy <labotamy@gmail.com>, Nikita Fedkin <nixel2007@gmail.com> and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
* BSL Language Server is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3.0 of the License, or (at your option) any later version.
*
* BSL Language Server is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with BSL Language Server.
*/
package com.github._1c_syntax.bsl.languageserver.diagnostics;

import org.eclipse.lsp4j.Diagnostic;
import org.junit.jupiter.api.Test;

import java.util.List;

import static com.github._1c_syntax.bsl.languageserver.util.Assertions.assertThat;

class InternetAccessDiagnosticTest extends AbstractDiagnosticTest<InternetAccessDiagnostic> {
InternetAccessDiagnosticTest() {
super(InternetAccessDiagnostic.class);
}

@Test
void test() {

List<Diagnostic> diagnostics = getDiagnostics();

assertThat(diagnostics, true)
.hasRange(1, 20, 75)
.hasRange(3, 18, 72)
.hasRange(5, 16, 80)
.hasRange(8, 8, 111)
.hasRange(13, 21, 65)
.hasRange(14, 17, 35)
.hasRange(15, 17, 47)
.hasRange(16, 17, 43)
.hasRange(17, 21, 51)
.hasRange(21, 21, 65)
.hasRange(22, 17, 35)
.hasRange(23, 17, 47)
.hasRange(24, 17, 43)
.hasRange(25, 21, 51)
.hasRange(29, 14, 43)
.hasRange(35, 14, 32)
.hasRange(39, 14, 35)
.hasRange(42, 10, 21)
.hasSize(18);
}
}
43 changes: 43 additions & 0 deletions src/test/resources/diagnostics/InternetAccessDiagnostic.bsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
Процедура Тест1()
FTPСоединение = Новый FTPСоединение(Сервер, Порт, Пользователь, Пароль); // ошибка

Определения = Новый WSОпределения("http://localhost/test.asmx?WSDL"); // ошибка

ПроксиДва = Новый WSПрокси(Определения, "http://localhost/", "test", "test"); // ошибка

Определения =
Новый WSОпределения("http://localhost/test.asmx?WSDL", "Пользователь", "Пароль", Неопределено, Таймаут); // ошибка

КонецПроцедуры

Процедура HTTP()
HTTPСоединение = Новый HTTPСоединение("zabbix.localhost", 80); // ошибка
HTTPЗапрос = Новый HTTPЗапрос(); // ошибка
HTTPЗапрос = Новый HTTPЗапрос("zabbix", 80); // ошибка
HTTPЗапрос = Новый HTTPЗапрос("zabbix"); // ошибка
ИнтернетПрокси = Новый ИнтернетПрокси("zabbix"); // ошибка
КонецПроцедуры

Процедура HTTP()
HTTPСоединение = Новый HTTPСоединение("zabbix.localhost", 80); // ошибка
HTTPЗапрос = Новый HTTPЗапрос(); // ошибка
HTTPЗапрос = Новый HTTPЗапрос("zabbix", 80); // ошибка
HTTPЗапрос = Новый HTTPЗапрос("zabbix"); // ошибка
ИнтернетПрокси = Новый ИнтернетПрокси("zabbix"); // ошибка
КонецПроцедуры
artbear marked this conversation as resolved.
Show resolved Hide resolved

Функция НовыйИнтернетПочтовыйПрофильБезТаймАута()
Профиль = Новый ИнтернетПочтовыйПрофиль; // ошибка
Профиль.Пользователь = "admin";
Возврат Профиль;
КонецФункции

Функция InternetMail()
Профиль = Новый InternetMail; // ошибка
КонецФункции

Функция InternetMail_НовыйИмя()
Профиль = Новый("InternetMail"); // ошибка
КонецФункции

Профиль = Новый Почта; // ошибка
artbear marked this conversation as resolved.
Show resolved Hide resolved
Loading