Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
Windows Tipps & SecurityGrafikkarte vor Überhitzung schützen: So geht’s(25.09.2026 um 08:00 Uhr)
••••••••••
Windows Tipps & SecurityGrafikkarte vor Überhitzung schützen: So geht’s(25.09.2026 um 08:00 Uhr)
••••••••••
Intelligence View
⚡ tsecurity.de Intelligence

Advent of Cyber 2025: Day 7 Writeup Network Discovery - Scan-ta Clause | TryHackMe

Hellow! Lets get to it fast! 👉 Room Link You have to start the target machine. And if you dont have the openvpn in your own machine, start the attackbox too. Today's learning objectives: Learn the basics of network service discovery wi…

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

Hellow! Lets get to it fast! 👉 Room Link



You have to start the target machine. And if you dont have the openvpn in your own machine, start the attackbox too.



Today's learning objectives:




Learn the basics of network service discovery with Nmap

Learn core network protocols and concepts along the way

Apply your knowledge to find a way back into the server.




The plot is that our server access has been compromised and we now have to perform counter-attacks! We know the ip address, let's start scanning first.



In order to get into a house, we need to know where the door(or window) is. *Nmap lets us discover which ports(windows) are open and closed.

*



If you dont have nmap in your own (debian-based?) machine then sudo apt install nmap



nmap 10.48.157.85 searches most 1000 'popular' ports.


nmap -p- --script=banner 10.49.191.120 scans all 65535 ports possible!

Whats 'banner' here? Its a name of a script (usually Lua langauge). We can 'script scan' the network. Nmap already comes with some scripts such as 'banner' here. You can see the banner script outputs after every open port found:



Nmap script args output



Now we know that ftp is running in a 'non default' port of 21212



ftp ipadress 21212 then type login username 'anonymous'. This brings us into that machine and a shell. explore the file that contains a tryhackme flag.



Unlike the THM instructions, ls in my case is not running. But it works in THM Attackbox :/



THM Attackbox



get tbfc_qa_key1 - 'downloads' the file and forwards it to standard output so that we can see the contents in in the terminal.



Copy the key1 fragment, go to browser and type the target machine ip > Click unlock > paste the key1



Get the 2nd key from netcat(nc) command: nc -v ipaddress 25251

The 3rd key requires nmap scanning on the UDP ports, not the default TCP we scanned so far: nmap -sU ipaddress



nmap UDP scanning

UDP 53 port, which is a DNS port, is open. Use dig command to perform DNS queries: dig @ipaddress TXT key3.tbfc.local +short



After getting all 3 key fragments(easter_isthe_newxmas), we obtain access to the admin console.



admin console



Previously, we scanned for open ports with nmap, now we can just 'ask the os' to list open ports with ss command(socket statistics): ss -tulnp

mysql 3306 port is open. By default localhost access do not require authorization. THM page tells use which database to look for: mysql -D tbfcqa01 -e "select * from flags;"



To answer this question, "What evil message do you see on top of the website?", look at the top of the Target Machine webpage....

1. Sofort-Triage & Abwehrmaßnahmen

SOC Incident Playbook: Vulnerability Remediation & Verification
Syntax validiert (0 Fehler)
title: Detect Exploitation - Advent of Cyber 2025: Day 7 Writeup Network Discovery - Scan-ta Clause | TryHackMe
id: 5fe1d591-eecb-4cd3-b81e-8c263fef145d
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-26
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-26"
        description = "YARA Signature for "
    strings:
        $str = "Advent of Cyber 2025: Day 7 Wr" ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("Advent of Cyber 2025 Day 7 Writeup Netwo")
| 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: "*Advent of Cyber 2025 Day 7 Writeup Netwo*"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "Advent of Cyber 2025 Day 7 Writeup Netwo"
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc

2. Cyber Threat Intelligence & Forensik

🎯
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 Advent of Cyber 2025: Day 7 Writeup Netw.... 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 Advent of Cyber 2025: Day 7 Writeup Network Discovery - Scan-ta Clause | TryHackMe

Thematisch verwandte Begriffe: Advent, Cyber, 2025, Writeup · 6 Treffer

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 ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-86066 | Horilla is an HR and CRM software. Prior to 2.0.0, approve_validate_atte…
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