Chunk #520
Aus: Sicherheit (Index: 8)
85
Tokens
Synced
Status
Taxonomie
| Kategorie | Sicherheit |
|---|---|
| Pfad | Sicherheit > MCP-DB Sicherheit > Migration |
| Heading-Pfad | Sicherheit > MCP-DB Sicherheit > Migration von direkten DB-Zugriffen > Migration Schritt-für-Schritt > 1. Alte mysql-Befehle identifizieren |
Entities
| Name | Typ |
|---|---|
| mysql | TECHNOLOGY |
| mariadb | TECHNOLOGY |
| grep | COMMAND |
| password | CONCEPT |
| DB-Credentials | CONFIG |
Keywords
Inhalt
# Suche nach mysql-Befehlen mit Passwörtern
grep -r "mysql.*-p" /var/www/ --include="*.sh" --include="*.md" --include="*.php"
grep -r "mariadb.*-p" /var/www/ --include="*.sh" --include="*.md" --include="*.php"
# Suche nach hardcodierten DB-Credentials
grep -r "password.*=" /var/www/tools/ --include="*.py" | grep -v "os.environ"Clean Content
``` `# Suche nach mysql-Befehlen mit Passwörtern grep -r "mysql.*-p" /var/www/ --include="*.sh" --include="*.md" --include="*.php" grep -r "mariadb.*-p" /var/www/ --include="*.sh" --include="*.md" --include="*.php" # Suche nach hardcodierten DB-Credentials grep -r "password.*=" /var/www/tools/ --include="*.py" | grep -v "os.environ"` ```
Metadaten
| Analysiert am | 20.12.2025 12:42:28 |
|---|---|
| Analyse-Modell | gemma3:4b-it-qat |
| Embedding-Modell | mxbai-embed-large |
| Qdrant-ID | 25d503ff-03da-4e46-a3ba-5241b991d3bb |
| Erstellt | 20.12.2025 12:34:42 |
| Aktualisiert | 20.12.2025 12:53:38 |