Weitere Audit Aktion Filter Möglichkeit
Dieser Commit ist enthalten in:
@@ -59,7 +59,8 @@
|
|||||||
"Bash(/home/rac00n/.npm-global/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/x64-linux/rg -A5 -B5 \"navbar|nav\" /mnt/c/Users/Administrator/Documents/GitHub/v2-Docker/v2_adminpanel/templates/base.html)",
|
"Bash(/home/rac00n/.npm-global/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/x64-linux/rg -A5 -B5 \"navbar|nav\" /mnt/c/Users/Administrator/Documents/GitHub/v2-Docker/v2_adminpanel/templates/base.html)",
|
||||||
"Bash(/home/rac00n/.npm-global/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/x64-linux/rg -n \"href=[''\"\"][/]?(dashboard)?[''\"\"]\" --type html)",
|
"Bash(/home/rac00n/.npm-global/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/x64-linux/rg -n \"href=[''\"\"][/]?(dashboard)?[''\"\"]\" --type html)",
|
||||||
"Bash(/home/rac00n/.npm-global/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/x64-linux/rg -n \"Dashboard\" /mnt/c/Users/Administrator/Documents/GitHub/v2-Docker/v2_adminpanel/templates/resources.html)",
|
"Bash(/home/rac00n/.npm-global/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/x64-linux/rg -n \"Dashboard\" /mnt/c/Users/Administrator/Documents/GitHub/v2-Docker/v2_adminpanel/templates/resources.html)",
|
||||||
"Bash(/home/rac00n/.npm-global/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/x64-linux/rg -n \"Dashboard\" /mnt/c/Users/Administrator/Documents/GitHub/v2-Docker/v2_adminpanel/templates/profile.html /mnt/c/Users/Administrator/Documents/GitHub/v2-Docker/v2_adminpanel/templates/resource_metrics.html)"
|
"Bash(/home/rac00n/.npm-global/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/x64-linux/rg -n \"Dashboard\" /mnt/c/Users/Administrator/Documents/GitHub/v2-Docker/v2_adminpanel/templates/profile.html /mnt/c/Users/Administrator/Documents/GitHub/v2-Docker/v2_adminpanel/templates/resource_metrics.html)",
|
||||||
|
"Bash(/home/rac00n/.npm-global/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/x64-linux/rg -n \"BACKUP|LOGIN_2FA_SUCCESS\" /mnt/c/Users/Administrator/Documents/GitHub/v2-Docker/v2_adminpanel/app.py)"
|
||||||
],
|
],
|
||||||
"deny": []
|
"deny": []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,6 +49,15 @@
|
|||||||
.action-EXPORT { color: #ffc107; }
|
.action-EXPORT { color: #ffc107; }
|
||||||
.action-GENERATE_KEY { color: #20c997; }
|
.action-GENERATE_KEY { color: #20c997; }
|
||||||
.action-CREATE_BATCH { color: #6610f2; }
|
.action-CREATE_BATCH { color: #6610f2; }
|
||||||
|
.action-BACKUP { color: #5a67d8; }
|
||||||
|
.action-LOGIN_2FA_SUCCESS { color: #00a86b; }
|
||||||
|
.action-LOGIN_2FA_BACKUP { color: #059862; }
|
||||||
|
.action-LOGIN_2FA_FAILED { color: #e53e3e; }
|
||||||
|
.action-LOGIN_BLOCKED { color: #b91c1c; }
|
||||||
|
.action-RESTORE { color: #4299e1; }
|
||||||
|
.action-PASSWORD_CHANGE { color: #805ad5; }
|
||||||
|
.action-2FA_ENABLED { color: #38a169; }
|
||||||
|
.action-2FA_DISABLED { color: #e53e3e; }
|
||||||
</style>
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
@@ -87,6 +96,15 @@
|
|||||||
<option value="EXPORT" {% if filter_action == 'EXPORT' %}selected{% endif %}>📥 Export</option>
|
<option value="EXPORT" {% if filter_action == 'EXPORT' %}selected{% endif %}>📥 Export</option>
|
||||||
<option value="GENERATE_KEY" {% if filter_action == 'GENERATE_KEY' %}selected{% endif %}>🔑 Key generiert</option>
|
<option value="GENERATE_KEY" {% if filter_action == 'GENERATE_KEY' %}selected{% endif %}>🔑 Key generiert</option>
|
||||||
<option value="CREATE_BATCH" {% if filter_action == 'CREATE_BATCH' %}selected{% endif %}>🔑 Batch erstellt</option>
|
<option value="CREATE_BATCH" {% if filter_action == 'CREATE_BATCH' %}selected{% endif %}>🔑 Batch erstellt</option>
|
||||||
|
<option value="BACKUP" {% if filter_action == 'BACKUP' %}selected{% endif %}>💾 Backup</option>
|
||||||
|
<option value="LOGIN_2FA_SUCCESS" {% if filter_action == 'LOGIN_2FA_SUCCESS' %}selected{% endif %}>🔐 2FA-Anmeldung</option>
|
||||||
|
<option value="LOGIN_2FA_BACKUP" {% if filter_action == 'LOGIN_2FA_BACKUP' %}selected{% endif %}>🔒 2FA-Backup-Code</option>
|
||||||
|
<option value="LOGIN_2FA_FAILED" {% if filter_action == 'LOGIN_2FA_FAILED' %}selected{% endif %}>⛔ 2FA-Fehlgeschlagen</option>
|
||||||
|
<option value="LOGIN_BLOCKED" {% if filter_action == 'LOGIN_BLOCKED' %}selected{% endif %}>🚫 Login-Blockiert</option>
|
||||||
|
<option value="RESTORE" {% if filter_action == 'RESTORE' %}selected{% endif %}>🔄 Wiederhergestellt</option>
|
||||||
|
<option value="PASSWORD_CHANGE" {% if filter_action == 'PASSWORD_CHANGE' %}selected{% endif %}>🔐 Passwort geändert</option>
|
||||||
|
<option value="2FA_ENABLED" {% if filter_action == '2FA_ENABLED' %}selected{% endif %}>✅ 2FA aktiviert</option>
|
||||||
|
<option value="2FA_DISABLED" {% if filter_action == '2FA_DISABLED' %}selected{% endif %}>❌ 2FA deaktiviert</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
@@ -97,6 +115,7 @@
|
|||||||
<option value="customer" {% if filter_entity == 'customer' %}selected{% endif %}>Kunde</option>
|
<option value="customer" {% if filter_entity == 'customer' %}selected{% endif %}>Kunde</option>
|
||||||
<option value="user" {% if filter_entity == 'user' %}selected{% endif %}>Benutzer</option>
|
<option value="user" {% if filter_entity == 'user' %}selected{% endif %}>Benutzer</option>
|
||||||
<option value="session" {% if filter_entity == 'session' %}selected{% endif %}>Session</option>
|
<option value="session" {% if filter_entity == 'session' %}selected{% endif %}>Session</option>
|
||||||
|
<option value="database" {% if filter_entity == 'database' %}selected{% endif %}>Datenbank</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
@@ -138,6 +157,15 @@
|
|||||||
{% elif log[3] == 'EXPORT' %}📥 Export
|
{% elif log[3] == 'EXPORT' %}📥 Export
|
||||||
{% elif log[3] == 'GENERATE_KEY' %}🔑 Key generiert
|
{% elif log[3] == 'GENERATE_KEY' %}🔑 Key generiert
|
||||||
{% elif log[3] == 'CREATE_BATCH' %}🔑 Batch erstellt
|
{% elif log[3] == 'CREATE_BATCH' %}🔑 Batch erstellt
|
||||||
|
{% elif log[3] == 'BACKUP' %}💾 Backup erstellt
|
||||||
|
{% elif log[3] == 'LOGIN_2FA_SUCCESS' %}🔐 2FA-Anmeldung
|
||||||
|
{% elif log[3] == 'LOGIN_2FA_BACKUP' %}🔒 2FA-Backup-Code
|
||||||
|
{% elif log[3] == 'LOGIN_2FA_FAILED' %}⛔ 2FA-Fehlgeschlagen
|
||||||
|
{% elif log[3] == 'LOGIN_BLOCKED' %}🚫 Login-Blockiert
|
||||||
|
{% elif log[3] == 'RESTORE' %}🔄 Wiederhergestellt
|
||||||
|
{% elif log[3] == 'PASSWORD_CHANGE' %}🔐 Passwort geändert
|
||||||
|
{% elif log[3] == '2FA_ENABLED' %}✅ 2FA aktiviert
|
||||||
|
{% elif log[3] == '2FA_DISABLED' %}❌ 2FA deaktiviert
|
||||||
{% else %}{{ log[3] }}
|
{% else %}{{ log[3] }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
In neuem Issue referenzieren
Einen Benutzer sperren