Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
Linux Tipps & HardeningVAXEE NP-01 Ergo Wireless (8K) mouse thoughts(24.09.2026 um 12:38 Uhr)
•
Linux Tipps & HardeningQualcomm Announces Snapdragon X2 Series Processors Will Support Linux(24.09.2026 um 12:04 Uhr)
•••
Linux Tipps & HardeningBlack Friday 2026 Phone Deals: Best iPhone, Samsung and More(24.09.2026 um 12:39 Uhr)
•
Linux Tipps & HardeningDont Trust Qualcomm for X2 Elite Linux Support! Liars!(24.09.2026 um 12:59 Uhr)
•
KI & AI VideosJulian Goldie SEO: LIVE: Building Agent OS with Claude!(24.09.2026 um 12:16 Uhr)
••••
Linux Tipps & HardeningVAXEE NP-01 Ergo Wireless (8K) mouse thoughts(24.09.2026 um 12:38 Uhr)
•
Linux Tipps & HardeningQualcomm Announces Snapdragon X2 Series Processors Will Support Linux(24.09.2026 um 12:04 Uhr)
•••
Linux Tipps & HardeningBlack Friday 2026 Phone Deals: Best iPhone, Samsung and More(24.09.2026 um 12:39 Uhr)
•
Linux Tipps & HardeningDont Trust Qualcomm for X2 Elite Linux Support! Liars!(24.09.2026 um 12:59 Uhr)
•
KI & AI VideosJulian Goldie SEO: LIVE: Building Agent OS with Claude!(24.09.2026 um 12:16 Uhr)
••••
Intelligence View
⚡ tsecurity.de Intelligence

Part-2: Deploy a Sample App in Google Cloud Platform (GCP)

Google Cloud Platform (GCP) makes it incredibly easy to spin up a Virtual Machine (VM) in just a few clicks. In this post, I’ll guide you through creating a basic Compute Engine VM instance, perfect for beginners getting started with G…

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

Google Cloud Platform (GCP) makes it incredibly easy to spin up a Virtual Machine (VM) in just a few clicks.

In this post, I’ll guide you through creating a basic Compute Engine VM instance, perfect for beginners getting started with GCP.







1️⃣ Enable the Compute Engine API



Before you can create a VM, make sure the Compute Engine API is enabled for your project.

Go to:




Google Cloud Console → APIs & Services → Enable APIs → Search "Compute Engine API" → Enable












2️⃣ Create a New VM Instance



Navigate to:




Google Cloud Console → Compute Engine → VM Instances → Create Instance












3️⃣ Fill in the VM Details



Basic Info




  • Name: demo1-vm

  • Labels > environment: dev

  • Region: us-central1

  • Zone: us-central1-a



Basic-info






Machine Configuration




  • Series: E2

  • Machine Type: e2-micro (free-tier eligible)



machine-config









Operating system and storage



os-storage






Availability Policies




  • VM Provisioning Model: Standard

  • Display Device: ✅ Checked

  • Confidential VM Service: ❌ Unchecked (default)

  • Container: ❌ Unchecked (default)



Observability






Boot Disk



Leave defaults (Debian/Ubuntu image works fine for now)






Identity and API Access




  • Service Account: Compute Engine default

  • Access Scopes: Allow default access



Security






Firewall



✅ Allow HTTP Traffic (so you can host a simple web server later)



Networking






Advanced Options



Leave default for now (we’ll cover these in detail in future posts)









4️⃣ Create the VM



Click Create and wait for GCP to provision your instance.

In a few moments, you’ll have your VM ready to connect via SSH or use for your workloads.



Active-vm







5️⃣ Connect to the VM via SSH



Go to:




Google Cloud Console → Compute Engine → VM Instances → demo1-vm






Click SSH → Open in browser window






🛠 What Happens in the Background?



When you open an SSH connection in the browser, Google Cloud:




  • Generates temporary SSH keys in the background

  • Transfers the public key to your VM

  • Appends the public key to:




~/.ssh/authorized_keys







  • Starts the SSH session directly in your browser tab



You can verify the key by running inside the VM:




cat ~/.ssh/authorized_keys












6️⃣ Create the Web Server Install Script



Let’s create a simple script that installs nginx and sets up a test page.




nano webserver-install.sh






Add the below content into the webserver-install.sh




#!/bin/bash
sudo apt install -y telnet
sudo apt install -y nginx
sudo systemctl enable nginx
sudo chmod -R 755 /var/www/html
HOSTNAME=$(hostname)
sudo echo "<!DOCTYPE html> <html> <body style='background-color:rgb(250, 210, 210);'> <h1>Welcome to Latchu@DevOps - WebVM App1 </h1> <p><strong>VM Hostname:</strong> $HOSTNAME</p> <p><strong>VM IP Address:</strong> $(hostname -I)</p> <p><strong>Application Version:</strong> V1</p> <p>Google Cloud Platform - Demos</p> </body></html>" | sudo tee /var/www/html/index.html






Save and exit (CTRL+O, CTRL+X), then make it executable:




chmod +x webserver-install.sh
./webserver-install.sh






ssh-browser









7️⃣ Access the Web Server



Find your VM’s External IP in the VM details page



Open your browser and visit:




http://<external-ip-of-vm>






Access-the-app

CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Vulnerability Remediation & Verification
title: Detect Exploitation - Part-2: Deploy a Sample App in Google Cloud Platform (GCP)
id: d830ddf0-b7ad-47be-9b89-8603bd3ef82c
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
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
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "Part-2: Deploy a Sample App in" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Part-2: Deploy a Sample App in Google Cl.... 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 Part-2: Deploy a Sample App in Google Cloud Platform (GCP)

Thematisch verwandte Begriffe: Part2, Deploy, Sample, Google · 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-97152 | Nanomsg versions 0.5-beta through 1.x before 1.2.3 has a remotely exploi…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
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
🔖 Gespeicherte Artikel
📂 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...

Zurück: vorheriger • Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick