Catalyst / admin/Synapse-Cortex 14.8 GB / 57.8 GB 40.0 GB free
Help Sign in

admin / Synapse-Cortex

public

Self Hosted ITSM Tool with RBAC/Tenanting and MFA

Code Issues Pull requests Pipelines Packages Security Insights Wiki Settings
Synapse-Cortex / Synapse-Cortexv2 / playbooks / check-ssh-authentication-ubuntu-debian.json 2490 B · main
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
{
  "name": "Check SSH Authentication (Ubuntu/Debian)",
  "enabled": true,
  "allowed_target_os": [
    "linux"
  ],
  "required_approval_level": "human_in_the_loop",
  "forbidden_commands": [],
  "graph_json": {
    "nodes": [
      {
        "id": "start",
        "type": "start",
        "data": {},
        "position": {
          "x": 250,
          "y": 0
        }
      },
      {
        "id": "cmd_status",
        "type": "command",
        "data": {
          "label": "Check SSH service status",
          "command": "systemctl status ssh"
        },
        "position": {
          "x": 250,
          "y": 130
        }
      },
      {
        "id": "cmd_config",
        "type": "command",
        "data": {
          "label": "Validate sshd configuration",
          "command": "sshd -t"
        },
        "position": {
          "x": 250,
          "y": 260
        }
      },
      {
        "id": "cmd_authtest",
        "type": "command",
        "data": {
          "label": "Test authentication as ticket user",
          "command": "ssh -o BatchMode=yes -o ConnectTimeout=5 {{username}}@{{ip_address}} \"echo auth-ok\""
        },
        "position": {
          "x": 250,
          "y": 390
        }
      },
      {
        "id": "cmd_failures",
        "type": "command",
        "data": {
          "label": "Review recent failed attempts",
          "command": "grep \"Failed password\" /var/log/auth.log | tail -n 20"
        },
        "position": {
          "x": 250,
          "y": 520
        }
      },
      {
        "id": "cmd_accepted",
        "type": "command",
        "data": {
          "label": "Review recent successful logins",
          "command": "grep \"Accepted\" /var/log/auth.log | tail -n 10"
        },
        "position": {
          "x": 250,
          "y": 650
        }
      }
    ],
    "edges": [
      {
        "id": "e_start_cmd_status",
        "source": "start",
        "target": "cmd_status"
      },
      {
        "id": "e_cmd_status_cmd_config",
        "source": "cmd_status",
        "target": "cmd_config"
      },
      {
        "id": "e_cmd_config_cmd_authtest",
        "source": "cmd_config",
        "target": "cmd_authtest"
      },
      {
        "id": "e_cmd_authtest_cmd_failures",
        "source": "cmd_authtest",
        "target": "cmd_failures"
      },
      {
        "id": "e_cmd_failures_cmd_accepted",
        "source": "cmd_failures",
        "target": "cmd_accepted"
      }
    ]
  }
}