Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosGoogle Cloud Tech: Gemini is coming to your city(24.09.2026 um 15:00 Uhr)
AI & KI NachrichtenGoogle’s latest moonshot to put machine learning in space(24.09.2026 um 15:12 Uhr)
Windows Tipps & SecurityPoll: What's your favorite Surface of 2026?(24.09.2026 um 14:58 Uhr)
Sichere ProgrammierungStreaming Materialized Views for Live Read Models (2026)(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA Day Is Not 86400 Seconds: The DST Bug in Your Date Math(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungSetting up Traefik: reverse proxy with automatic HTTPS(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA 200 OK response does not prove a secret leak(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungHow hot do you like it?(24.09.2026 um 15:05 Uhr)
YouTube Security VideosGoogle Cloud Tech: Gemini is coming to your city(24.09.2026 um 15:00 Uhr)
AI & KI NachrichtenGoogle’s latest moonshot to put machine learning in space(24.09.2026 um 15:12 Uhr)
Windows Tipps & SecurityPoll: What's your favorite Surface of 2026?(24.09.2026 um 14:58 Uhr)
Sichere ProgrammierungStreaming Materialized Views for Live Read Models (2026)(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA Day Is Not 86400 Seconds: The DST Bug in Your Date Math(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungSetting up Traefik: reverse proxy with automatic HTTPS(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA 200 OK response does not prove a secret leak(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungHow hot do you like it?(24.09.2026 um 15:05 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Automating LinkedIn Posts from Telegram with Hexabot

Automating LinkedIn Posts from Telegram with Hexabot In this article, I want to share a practical Hexabot demo: publishing a LinkedIn post directly from Telegram. The idea is simple: You send a message to a Telegram bot. Hexabot…

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




Automating LinkedIn Posts from Telegram with Hexabot



In this article, I want to share a practical Hexabot demo: publishing a LinkedIn post directly from Telegram.



The idea is simple:



You send a message to a Telegram bot.

Hexabot receives it.

An AI workflow prepares the LinkedIn post.

The content is published to LinkedIn automatically.



This is a small example, but it demonstrates something important: AI workflows do not have to live only inside dashboards or internal tools. They can start from a conversation, connect to external services, use AI, and trigger real business actions.










What we are building



This example connects three main pieces:





  1. Telegram as the input channel


  2. Hexabot as the AI workflow automation engine


  3. LinkedIn as the publishing destination



The workflow starts when a user sends a message to a Telegram bot. Hexabot receives the message through the Telegram channel extension, processes it through a workflow, generates or formats the LinkedIn post using an AI model, then publishes it using the LinkedIn API.



You can find the full example here:



https://github.com/hexabot-ai/linkedin-post-from-telegram-example






Why this example matters



A lot of AI demos stop at generating text.



But in real operations, generating text is rarely the final step.



Usually, you need to:




  • receive input from a user or a system

  • understand the request

  • transform it into structured content

  • call an external API

  • track what happened

  • and keep the process reusable



That is where workflow automation becomes useful.



In this example, Telegram is not just a chat interface. It becomes the entry point for an automation process. LinkedIn is not just a manual publishing destination. It becomes an action executed by the workflow.



Hexabot sits in the middle as the orchestration layer.






How the workflow works



At a high level, the flow looks like this:




Telegram message

Hexabot Telegram channel

AI workflow

LinkedIn publisher action

LinkedIn post






A user sends a prompt such as:




Write me a LinkedIn post about this first test post that I sent from Telegram to my Hexabot LinkedIn integration.






Hexabot receives the message, runs the imported workflow, uses the configured AI model to prepare the content, then publishes the final post to LinkedIn.






Main setup steps



The repository includes a detailed README, but here is the overall process.






1. Create a Hexabot project



First, install the Hexabot CLI and create a new project:




npm install -g @hexabot-ai/cli
hexabot create hexabot-linkedin-bot
cd hexabot-linkedin-bot






Then start the project locally:




hexabot dev






The admin interface will be available at:




http://localhost:3000









2. Create a Telegram bot



To receive messages from Telegram, you need to create a bot using @BotFather.



In Telegram:




/start
/newbot






After choosing a name and username, Telegram gives you a bot token. This token will later be configured inside Hexabot as a credential.






3. Install the Telegram channel extension



The example uses the Hexabot Telegram channel extension:




npm install hexabot-channel-telegram






This extension allows Hexabot to receive messages from Telegram and use them as workflow inputs.






4. Expose your local API



Telegram needs a public webhook URL to send messages to your local Hexabot instance.



For local development, you can use a tunneling service such as:




ngrok
pinggy






Once your local API is exposed, update your .env file:




API_ORIGIN=https://your-public-url.example.com/api









5. Configure the Telegram source in Hexabot



Inside the Hexabot admin panel, go to the sources settings page:




http://localhost:3000/settings/sources






From there, configure the Telegram source:




  • enable the source

  • select the default workflow

  • add the Telegram bot token credential

  • add a webhook secret credential

  • enable automatic webhook setup if needed



This allows Telegram messages to be routed into the correct Hexabot workflow.






6. Configure LinkedIn access



To publish to LinkedIn, you need a LinkedIn developer application and an access token with the required permissions.



The README walks through the process of:




  • creating a LinkedIn app

  • enabling the required LinkedIn products

  • generating an OAuth access token

  • retrieving the LinkedIn sub identifier

  • using that identifier as the author reference for publishing



You will need two important values:




LinkedIn access token
LinkedIn member identifier






These values are used by the LinkedIn publisher step in the workflow.






7. Import the workflow



The repository includes a ready-made workflow file:




linkedin-post-form-telegram.yml






Import it from the Hexabot workflow editor:




http://localhost:3000/workflow-editor/






After importing it, configure:




  • the AI model provider

  • the model name

  • the AI API key credential

  • the LinkedIn access token

  • the default LinkedIn author identifier



Once saved, the workflow is ready to run.






What makes Hexabot useful here



This example is not only about publishing to LinkedIn.



It shows how Hexabot can be used as an AI automation layer where workflows can:




  • start from a conversation

  • connect to channels like Telegram

  • use AI models

  • call external APIs

  • execute real actions

  • stay self-hostable and extensible



For developers, this is especially useful because Hexabot workflows can be extended with custom actions, channels, and integrations.



That means you are not limited to Telegram and LinkedIn.



The same pattern could be adapted for:




  • posting to other social platforms

  • creating CRM notes

  • sending internal notifications

  • generating support replies

  • preparing marketing content

  • triggering approval workflows

  • building internal AI assistants






Final thoughts



This Telegram-to-LinkedIn example is intentionally simple, but it shows the power of connecting conversations with real automation.



Instead of opening multiple tools, copying text, formatting content, and publishing manually, you can start the whole process from a Telegram message and let Hexabot orchestrate the workflow.



You can explore the full example here:



https://github.com/hexabot-ai/linkedin-post-from-telegram-example



And if you find Hexabot useful, consider giving the main repository a star on GitHub:



https://github.com/hexabot-ai/hexabot

SOC Incident Playbook: Remote Code Execution (RCE) Defense
title: Detect Exploitation - Automating LinkedIn Posts from Telegram with Hexabot
id: af3cecdc-dcef-461a-a108-e5407ab7c0cc
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 = "Automating LinkedIn Posts from" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Automating LinkedIn Posts from Telegram .... 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 Automating LinkedIn Posts from Telegram with Hexabot

Thematisch verwandte Begriffe: Automating, LinkedIn, Posts, from · 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-97179 | A security vulnerability has been detected in O2OA up to 9.5.3/10.0.2. T…
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