GithubHelp home page GithubHelp logo

dirflash / psirt-bot-card Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 73 KB

This project creates a Webex App bot to respond to a message and deliver a selected file type of all updated Cisco PSIRT notifications that have occurred in the last 7-days.

License: MIT License

Python 100.00%
cisco github-actions mongodb pipedream psirt-openvuln-api python webex webex-card bot devnet

psirt-bot-card's Introduction

PSIRT Bot

Python PSIRT Bot


In beta!

Documentation is hard

Still working on the documentation. It's not complete, or accurate, at the moment!


Getting Started

  1. Problem Statement
  2. Requirements
  3. Webex
  4. Webex Webhook
  5. Send a Webex test message
  6. Pipedream Setup
  7. Cisco API Console Registration
  8. PSQRT Walk Through
  9. Workflow Diagram
  10. References

What problem is this script trying to solve?

Using the Cisco Security Advisories portal, it can be difficult to determine what PSIRT notifications have been updated with new information, affected products, workarounds, and patches.

This project creates a Webex App bot, using buttons and cards, that utilizes Webex Webhooks, Pipedream workflows, the Cisco PSIRT openVuln API, MongoDB, and Github Actions to respond to a Webex App message, and deliver an XLXS file of all updated Cisco PSIRT notifications that have occurred in the last 7 days.

This XLXS file will make it easier for a security team to review updated PSIRT information and take any required remediation without the need of setting up a Python environment and creating all the required connections.

Requirements for running in autonomous Bot mode

Registered accounts with the following services:

  1. Webex - https://web.webex.com You can use the browser based client without installing the Webex messaging application. But the Webex app makes things easier.
  2. Pipedream - https://pipedream.com
  3. Cisco PSIRT OpenVuln API - https://developer.cisco.com/psirt/
  4. MongoDB - https://www.mongodb.com
  5. Github - https://github.com

Running separately, and concurrently, is psirt-gsheets. This script creates a Google Sheets document with the updated Cisco PSIRTs. The PSIRT Bot uses the Google Sheets publish to the web functionality to attach the latest report to the Webex app response.

Webex

  1. Create an account at https://www.webex.com.
  2. Create a new Bot app.
    • Record the following details:
    • Bot access token
    • Bot username
    • Bot ID

Webex Webhook

Using the Webex for Developers documentation, create a "messages" -> "created" and "attachmentActions" -> "created" Webhook. The target URL in the Webhook configuration is the Pipedream Webhook receiver URL.

Sample Webhook

Webex Test Message

From the Webex app, send a test message to the newly created Webex Bot. This message should appear in the "Select Event" section of the HTTP?Webhook "Trigger" event in Pipedream.

Test Message

Pipedream

  1. Create a Pipedream.com account
  2. Click on "Settings"
  3. Click on "Environment Variables"
  4. Click on "NEW ENVIRONMENT VARIABLE"
  5. Create the following Environment Variables

enviro_vars

  1. Create a new Workflow
  2. Add a trigger
    • Select "HTTP/Webhook"
    • Select "HTTP Requests"
    • Click "Save and Continue"
    • Safely record and store the Webhook receiver URL

trigger_1

  1. Click on the plus sign underneath the trigger step
  2. Add a Python step
  3. Select "Run Python Code"
  4. Name the step "get_user"
  5. Add the code included in the following image

trigger_2

  1. Click on the plus sign underneath the "get_user" step
  2. In the "Search for an app" field, type "filter"
  3. Select "Filter"
  4. Select "End Workflow on Custom Condition"
  5. Click on the "Reason" box and expand the "steps" data
  6. Select "First_Name"
  7. Complete the "Reason" logic to look like the following image

trigger_3 Note: To be able to find the required fields, a test messages must have been sent to the Pipedream receiver by following the instructions in the "Webex" section above.

  1. Follow the same steps to complete the "Condition" logic
  2. Click on the plus sign underneath the trigger step
  3. Add a Python step
  4. Select "Run Python Code"
  5. Name the step "get_msg"
  6. Add the code included in the following image

trigger_4

  1. Go back to the main Pipedream dashboard and select "Accounts"
  2. Click "CONNECT AN APP"
  3. In the "Search for an App" box, type "Mongo"
  4. Select "MongoDB"
  5. Complete the required account information and validate Pipedream can connect to your MongoDB database
  6. Click on the plus sign underneath the "get_msg" step
  7. In the "Search for an app" field, type "mongo"
  8. Select "MongoDB"
  9. Select "Use any MongoDB API"
  10. Complete the "MongoDB Account", "Database", "Collection" fields to connect MongoDB
  11. Add the "Data" objects and expressions to match the following image
  12. Name the step "create_new_document"

trigger_5

  1. Click on the plus sign underneath the trigger step
  2. Add a Python step
  3. Select "Run Python Code"
  4. Name the step "Github_Action"
  5. Add the code included in the following image

trigger_6

  1. Click on the plus sign underneath the trigger step
  2. Add a Python step
  3. Select "Run Python Code"
  4. Name the step "python" - or anything else you like. Since it's the last step, the name is not important.
  5. Add the code included in the following image

trigger_7

  1. You will need to test each step of the workflow to validate it works correctly
  2. Once all steps are validated, click on the "Deploy" button in the top right
  3. You will be taken to the "inspect" console that shows a summary of each step and a log of each Webhook request

Cisco API Console Registration

An account will also need to be created to access the Cisco API Console.

  1. Once logged into the Cisco API Console, click on "My Keys & Apps" My Keys & Apps

  2. Click on "Register a New Apps

  3. Give your application a name

  4. Provide an optional description of the application

  5. Select "Client Credentials" in the "OAuth2.0 Credentials" section

  6. Select the "Cisco PSIRT openVuln API" check box

  7. Agree to the "Terms of Service"

  8. Click on "Register"

Save the "Key" and "Client Secret" in a secure place. These credentials will need to be added as Github secrets for the Github action to work properly.

MongoDB

Github

Run and test locally

Requirements to run and test locally

This script requires a Python environment and the libraries included in the requirements.txt file.

Import requirements file: pip install -r requirements.txt

Configparser to store and access secrets

All the API keys are stored in a config.ini file using configparser. Your config.ini file should look like this:

Sample config.ini file

Cisco API Console Credentials

Follow the instructions in the "Cisco API Console Registration section"

The generated "Key" and "Client Secret" should be used as the client_id and client_secret objects in psirt.py.

Usage

$  python.exe psirt-bot.py

psirt-bot.py is the main script.

It retrieves a calls OAuth Bearer access token, collects the number of active PSIRT listings and the number of PSIRTs that have been updated in the last 7-days.

It then collects Webex App user information stored in the MongoDB instance, and responds to the requester with a report of the PSIRTs that have been updated in the last 7-day, 14-days, or 30-days based on the selection related to the first adaptive card.

If the script is run locally, a CSV file of the report is also generated an placed in the 'reports' folder.

Example conversation in the Webex App:

conversation

Sample report

sample_report

Usage Walk Through

YouTube walk through video from a user perspective.

Watch the video

Bot Workflow

References

  1. Webex Developer Platform Documentation

psirt-bot-card's People

Contributors

dirflash avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.