Skip to content

Commit

Permalink
VolWeb 1.0.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
k1nd0ne committed Dec 29, 2022
2 parents 306e01b + 47ef158 commit 478ca5b
Show file tree
Hide file tree
Showing 81 changed files with 3,427 additions and 1,279 deletions.
Empty file removed Cases/IOCs/.keep
Empty file.
1 change: 0 additions & 1 deletion VolWeb/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
'windows_engine.apps.WindowsEngineConfig',
'dashboard.apps.DashboardConfig',
'investigations.apps.InvestigationsConfig',
'iocs.apps.IocsConfig',
'symbols.apps.SymbolsConfig',
'django.contrib.admin',
'django.contrib.auth',
Expand Down
1 change: 0 additions & 1 deletion VolWeb/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
path('login/', auth_views.LogoutView.as_view(template_name='dashboard/login.html'), name='logout'),
path('', include('dashboard.urls')),
path('investigations/', include('investigations.urls')),
path('iocs/', include('iocs.urls')),
path('symbols/', include('symbols.urls')),
path('win/', include('windows_engine.urls')),
path('lin/', include('linux_engine.urls')),
Expand Down
14 changes: 14 additions & 0 deletions dashboard/static/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@
text-align: left;
}

.table-responsive {
overflow: inherit;
}

.overlay {
display: none;
position: fixed;
Expand Down Expand Up @@ -204,6 +208,16 @@ thead, tbody {
margin: -25px 0 0 -25px;
}

.spinner-timeline {
z-index: 2;
position: absolute;
top: 15%;
left: 55%;
margin: -25px 0 0 -25px;
}




.open-menu {
padding-top: 10px;
Expand Down
8 changes: 0 additions & 8 deletions dashboard/static/js/bs-init.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,6 @@ if (document.getElementById('memcount')) {
} else {
console.error(countUp.error);
}
}
if (document.getElementById('indcount')) {
const countUp = new CountUp('indcount', document.getElementById("indcount").getAttribute("countToind"));
if (!countUp.error) {
countUp.start();
} else {
console.error(countUp.error);
}
}

if (document.getElementById('symcount')) {
Expand Down
2 changes: 1 addition & 1 deletion dashboard/static/js/investigations.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ if (sidebar) {

}
if (response['message'] == "error") {
$('#proc-error-message').html("Something went wrong getting the linked iocs.");
$('#proc-error-message').html("Something went wrong getting the case.");
$('.toast-proc-error').toast('show');
}
$('.invest-details').show();
Expand Down
32 changes: 0 additions & 32 deletions dashboard/static/js/iocs.js

This file was deleted.

Loading

0 comments on commit 478ca5b

Please sign in to comment.