Block 1 - Scheduled Check
- Type / Role
- n8n-nodes-base.cron - cron
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
How It Works: The 5 Node Security Flow This workflow efficiently performs a scheduled file integrity audit. 1. Scheduled Check (Cron Node) This is the workflow's trigger. It schedules the workflow ...
n8n-nodes-base.cron, n8n-nodes-base.code, n8n-nodes-base.ssh, n8n-nodes-base.if, n8n-nodes-base.noop, n8n-nodes-base.slack, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Marth.
Original n8n.io sourceThis workflow efficiently performs a scheduled file integrity audit.
This is the workflow's trigger. It schedules the workflow to run at a specific, regular interval.
Cron node automatically initiates the workflow on its schedule, ensuring consistent file integrity checks without manual intervention.This node acts as your static database, defining which files to monitor and their known-good checksums.
This node connects to your remote server to get the current checksum of the file being monitored.
sha256sum /path/to/file on the server. The current checksum is then captured and passed to the next node for comparison.This is the core detection logic. It compares the newly retrieved checksum from the server with the known-good checksum you stored.
These nodes represent the final action of the workflow.
Implementing this essential cybersecurity monitor in your n8n instance is quick and straightforward.
Before building the workflow, ensure all necessary accounts are set up and their credentials are ready.
sha256sum on the files you want to monitor.#security-alerts).sha256sum [file_path] command on your server for each file you want to monitor. Copy and save the generated checksum values—these are the "known-good" checksums you will use as your reference.Get the workflow structure into your n8n instance.
Customize the imported workflow to fit your specific monitoring needs.
filesToCheck array. Enter your actual server file paths and paste the "known-good" checksums you manually obtained in step 1.YOUR_SECURITY_ALERT_CHANNEL_ID with your actual Channel ID.Verify that your workflow is working correctly before setting it live.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Monitor remote server file integrity with SSH and Slack alerts |
|---|---|
| Complexity | intermediate |
| Nodes | 8 |
| Categories | SecOps |
| Author | Marth |
| Published | 01 Aug 2025 |
Use the JSON export at /data/workflows/6814/6814.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
How It Works: The 5 Node Security Flow This workflow efficiently performs a scheduled file integrity audit. 1. Scheduled Check (Cron Node) This is the workflow's trigger. It schedules the workflow ...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your SecOps use case.