Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
•
IT Security NachrichtenBetrüger phishen mit vermeintlicher Reisebestätigung - IT-Markt(24.09.2026 um 23:41 Uhr)
••
Sicherheitslücken (CVE)IT Security News Daily Summary 2026-09-24(24.09.2026 um 23:55 Uhr)
•
Sicherheitslücken (CVE)IT Security News Roundup: 2026-09-24(24.09.2026 um 23:57 Uhr)
•
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-25 00h : 9 posts(25.09.2026 um 00:00 Uhr)
•••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
•••
IT Security NachrichtenBetrüger phishen mit vermeintlicher Reisebestätigung - IT-Markt(24.09.2026 um 23:41 Uhr)
••
Sicherheitslücken (CVE)IT Security News Daily Summary 2026-09-24(24.09.2026 um 23:55 Uhr)
•
Sicherheitslücken (CVE)IT Security News Roundup: 2026-09-24(24.09.2026 um 23:57 Uhr)
•
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-25 00h : 9 posts(25.09.2026 um 00:00 Uhr)
•••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
••
Intelligence View
⚡ tsecurity.de Intelligence

Migrating Tenant Management System From Mongodb To Redis Backend

This is a submission for the Redis AI Challenge: Beyond the Cache. cover_image: What I Built I built a Tenant Management System, a small but practical intranet application used to keep track of tenants in an apartment…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

This is a submission for the Redis AI Challenge: Beyond the Cache.



cover_image: Redis Challenge with Grafana









What I Built



I built a Tenant Management System, a small but practical intranet application used to keep track of tenants in an apartment complex. It allows the community head to search for tenants and check their status quickly.



This is a live app already being used by real users. For this challenge, I refactored the backend, originally based on MongoDB, and migrated it to Redis Cloud as the primary database.



I also updated some of the application code to better take advantage of Redis’ capabilities.









Application flow



First admin need to login first using his own account on sign in page, and generate token to add operator guy who will be fill, update and search for tenant data in apartment complex. This token will be use by operator to sign up on sign up page and login inside the apps.



Next time operator wants to do their job, just sign in using his/her name and password. Operator can add tenant data, update, search based on name or tower+unit and delete it too. Admin cannot do this directly.



Every time they want to logout just refresh the browser to back to sign in page.






Demo





_ Default password for admin is admin with password 123456 _



_ There are one operator for test with username aa and password 123456 _






Test Data Used



For this project, I leveraged several real-world and simulated datasets hosted on GitHub to demonstrate and test Redis functionalities effectively:



Operator Name List:

https://github.com/hendram/appsrwbackredis/blob/master/operator-name-list.txt

Contains a list of operator names for testing Redis queries related to operators.



Resident Name List:

https://github.com/hendram/appsrwbackredis/blob/master/residents-name-list.txt

Provides resident names to simulate tenant-related Redis queries.



Timeseries Log for Name Search:

https://github.com/hendram/appsrwbackredis/blob/master/timeseries-log-namesearch.txt

A fake dataset used to demo RedisTimeSeries search queries based on tenant names.



Timeseries Log for Tower & Unit Search:

https://github.com/hendram/appsrwbackredis/blob/master/timeseries-log-towerunitsearch.txt

Demo dataset used to showcase timeseries search queries filtered by tower and unit attributes.






Redis database



Redis memory usage



RedisJson and RedisSearch Index



RedisSearch






How I Used Redis Cloud



In this project, I used Redis Cloud as my primary database, not just for caching, but for real-time data storage, querying, and monitoring.






Redis Features Used:




  • 🧠 RedisJSON: Used to store structured data about each tenant — including fields like nama, tower, unit, and status.


  • 🔍 RediSearch: Enabled fast, full-text search capabilities for fields like tenant name (nama) and apartment unit (towerunit). This allows operators to search quickly even as the dataset grows.


  • 📊 RedisTimeSeries:


    I use this module to log how many records are returned by each search query (e.g., on nama or towerunit).


    Each operator’s search count result is pushed to a time series key so we can monitor activity over time.


    This gives visibility into tenant search behavior — not for performance metrics, but for tracking usage patterns.



  • 📈 Grafana Cloud Integration:


    I integrated Redis Cloud with Grafana Cloud using the Redis Data Source Plugin. This allowed me to build a live dashboard that queries RedisTimeSeries directly to show:




    • Search query volumes over time

    • Which operators are most active

    • What kind of search patterns are emerging






  • ☁️ Redis Cloud: As a managed platform, Redis Cloud made it easy to deploy without worrying about infrastructure. It includes Redis modules like RedisJSON and RediSearch out of the box, which helped me replace my previous MongoDB backend completely.








This setup proves Redis Cloud can be used as a complete real-time application backend, not just a cache — and even supports advanced observability when combined with tools like Grafana.

SOC Incident Playbook: Remote Code Execution (RCE) Defense
Syntax validiert (0 Fehler)
title: Detect Exploitation - Migrating Tenant Management System From Mongodb To Redis Backend
id: 403056dc-27f3-4f74-8a81-462c74e524f0
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-25
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-25"
        description = "YARA Signature for "
    strings:
        $str = "Migrating Tenant Management Sy" ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("Migrating Tenant Management System From ")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*Migrating Tenant Management System From *"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "Migrating Tenant Management System From "
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc
🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Migrating Tenant Management System From .... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Migrating Tenant Management System From Mongodb To Redis Backend

Thematisch verwandte Begriffe: Migrating, Tenant, Management, System · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-87722 | Uncontrolled Resource Consumption (CWE-400 / CWE-1333) in regex search q…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...
↗ Original-Quelle