txt2detection 0.0.2rc12__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of txt2detection might be problematic. Click here for more details.
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/.github/workflows/run-tests.yml +3 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/PKG-INFO +6 -4
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/pyproject.toml +9 -6
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/requirements.txt +1 -1
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/.env.example +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/.env.markdown +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/.github/workflows/create-release.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/.gitignore +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/LICENSE +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/README.md +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/config/detection_languages.yaml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/docs/README.md +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/docs/txt2detection.png +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/CVE-2024-56520.txt +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/EC2-exfil.txt +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/observables.txt +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-custom-tags.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-existing-related.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-master.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-no-author.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-no-date.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-no-description.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-no-level.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-no-license.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-no-status.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-no-tags.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-no-title.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-observables.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/files/sigma-rule-one-date.yml +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/manual-tests/README.md +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/src/__init__.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/src/requirements.txt +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/src/test_bundler.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/src/test_main.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/src/test_main_run_txt2detction.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/src/test_models.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/src/test_observables.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/tests/src/test_utils.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/__init__.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/__main__.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/ai_extractor/__init__.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/ai_extractor/anthropic.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/ai_extractor/base.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/ai_extractor/deepseek.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/ai_extractor/gemini.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/ai_extractor/openai.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/ai_extractor/openrouter.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/ai_extractor/prompts.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/ai_extractor/utils.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/bundler.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/models.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/observables.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection/utils.py +0 -0
- {txt2detection-0.0.2rc12 → txt2detection-1.0.0}/txt2detection.py +0 -0
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: txt2detection
|
|
3
|
-
Version: 0.0
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A command line tool that takes a txt file containing threat intelligence and turns it into a detection rule.
|
|
5
5
|
Project-URL: Homepage, https://github.com/muchdogesec/txt2detection
|
|
6
6
|
Project-URL: Issues, https://github.com/muchdogesec/txt2detection/issues
|
|
7
|
-
|
|
7
|
+
Project-URL: dogesec HQ, https://dogesec.com
|
|
8
|
+
Author: dogesec
|
|
9
|
+
Maintainer: dogesec
|
|
8
10
|
License-File: LICENSE
|
|
9
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -20,7 +22,7 @@ Requires-Dist: stix2
|
|
|
20
22
|
Requires-Dist: tqdm>=4.66.4; python_version >= '3.7'
|
|
21
23
|
Requires-Dist: validators>=0.34.0
|
|
22
24
|
Provides-Extra: llms
|
|
23
|
-
Requires-Dist: llama-index-core==0.12.
|
|
25
|
+
Requires-Dist: llama-index-core==0.12.41; extra == 'llms'
|
|
24
26
|
Requires-Dist: llama-index-llms-anthropic==0.6.3; extra == 'llms'
|
|
25
27
|
Requires-Dist: llama-index-llms-deepseek==0.1.1; extra == 'llms'
|
|
26
28
|
Requires-Dist: llama-index-llms-gemini==0.4.2; extra == 'llms'
|
|
@@ -4,12 +4,14 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "txt2detection"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "dogesec" }
|
|
10
|
+
]
|
|
11
|
+
maintainers = [
|
|
12
|
+
{ name = "dogesec" }
|
|
11
13
|
]
|
|
12
|
-
description = "
|
|
14
|
+
description = "A command line tool that takes a txt file containing threat intelligence and turns it into a detection rule."
|
|
13
15
|
readme = "README.md"
|
|
14
16
|
requires-python = ">=3.11"
|
|
15
17
|
classifiers = [
|
|
@@ -31,13 +33,14 @@ dependencies = [
|
|
|
31
33
|
[project.urls]
|
|
32
34
|
Homepage = "https://github.com/muchdogesec/txt2detection"
|
|
33
35
|
Issues = "https://github.com/muchdogesec/txt2detection/issues"
|
|
36
|
+
"dogesec HQ" = "https://dogesec.com"
|
|
34
37
|
|
|
35
38
|
[project.scripts]
|
|
36
39
|
txt2detection = "txt2detection.__main__:main"
|
|
37
40
|
|
|
38
41
|
[project.optional-dependencies]
|
|
39
42
|
llms = [
|
|
40
|
-
"llama-index-core==0.12.
|
|
43
|
+
"llama-index-core==0.12.41",
|
|
41
44
|
"llama-index-llms-anthropic==0.6.3",
|
|
42
45
|
"llama-index-llms-gemini==0.4.2",
|
|
43
46
|
"llama-index-llms-openai==0.3.11",
|
|
@@ -142,7 +142,7 @@ jsonschema==4.24.0 ; python_version >= "3.8"
|
|
|
142
142
|
# via txt2detection (pyproject.toml)
|
|
143
143
|
jsonschema-specifications==2025.4.1
|
|
144
144
|
# via jsonschema
|
|
145
|
-
llama-index-core==0.12.
|
|
145
|
+
llama-index-core==0.12.41
|
|
146
146
|
# via
|
|
147
147
|
# llama-index-llms-anthropic
|
|
148
148
|
# llama-index-llms-gemini
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|