Skip to content

Commit

Permalink
closes #77
Browse files Browse the repository at this point in the history
  • Loading branch information
fqrious committed Nov 13, 2024
1 parent f6617e6 commit 426751f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ vine==5.1.0
wcwidth==0.2.13
stix2arango @ https://github.com/muchdogesec/stix2arango/archive/main.zip
file2txt @ https://github.com/muchdogesec/file2txt/archive/main.zip
txt2stix @ https://github.com/muchdogesec/txt2stix/releases/download/main-2024-11-11/txt2stix-0.0.1b5-py3-none-any.whl
dogesec_commons[stixifier] @ https://github.com/muchdogesec/dogesec_commons/releases/download/main-2024-11-12/dogesec_commons-0.0.1b2-py3-none-any.whl
txt2stix @ https://github.com/muchdogesec/txt2stix/releases/download/main-2024-11-13/txt2stix-0.0.1b5-py3-none-any.whl
dogesec_commons[stixifier] @ https://github.com/muchdogesec/dogesec_commons/releases/download/main-2024-11-13/dogesec_commons-0.0.1b2-py3-none-any.whl
2 changes: 0 additions & 2 deletions stixify/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,7 @@
{"name": "Dossiers", "description": "Group together Reports as Dossiers around a theme."},
{"name": "Objects", "description": "Search through STIX object extracted from Files in Reports."},
{"name": "Profiles", "description": "Create and search for extraction profile applied to text Files."},
{"name": "Aliases", "description": "Search through aliases that can be used in profiles (see txt2stix for more information)"},
{"name": "Extractors", "description": "Search through extractors that can be used in profiles (see txt2stix for more information)"},
{"name": "Whitelists", "description": "Search through whitelists that can be used in profiles (see txt2stix for more information)"},
{"name": "Jobs", "description": "Check the status of data retrieval from Files uploaded."},
]
}
Expand Down
4 changes: 1 addition & 3 deletions stixify/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from django.urls import path, include
from rest_framework import routers
from dogesec_commons.objects import views as arango_views
from dogesec_commons.stixifier.views import ProfileView, ExtractorsView, WhitelistsView, AliasesView
from dogesec_commons.stixifier.views import ProfileView, ExtractorsView
from .web.views import FileView, DossierView, JobView, ReportView
from drf_spectacular.views import SpectacularAPIView, SpectacularSwaggerView
from django.conf.urls.static import static
Expand All @@ -41,8 +41,6 @@
router.register("objects", arango_views.ObjectsWithReportsView, "object-view-orig")
# txt2stix views
router.register('extractors', ExtractorsView, "extractors-view")
router.register('whitelists', WhitelistsView, "whitelists-view")
router.register('aliases', AliasesView, "aliases-view")

urlpatterns = [
path(f'api/{API_VERSION}/', include(router.urls)),
Expand Down

0 comments on commit 426751f

Please sign in to comment.