All Projects → nsacyber → Walkoff

nsacyber / Walkoff

Licence: other
A flexible, easy to use, automation framework allowing users to integrate their capabilities and devices to cut through the repetitive, tedious tasks slowing them down. #nsacyber

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Walkoff

Walkoff Apps
WALKOFF-enabled applications. #nsacyber
Stars: ✭ 125 (-85.38%)
Mutual labels:  automation, analytics, integration, cybersecurity, orchestration, administration
Webhook
webhook is a lightweight incoming webhook server to run shell commands
Stars: ✭ 7,201 (+742.22%)
Mutual labels:  automation, integration, devops, sysadmin
Rex
Rex, the friendly automation framework
Stars: ✭ 653 (-23.63%)
Mutual labels:  automation, framework, devops
Server
The Prefect API and backend
Stars: ✭ 87 (-89.82%)
Mutual labels:  automation, workflow, orchestration
Kitten
Tiny multi-server automation tool
Stars: ✭ 171 (-80%)
Mutual labels:  automation, devops, sysadmin
Sooty
The SOC Analysts all-in-one CLI tool to automate and speed up workflow.
Stars: ✭ 867 (+1.4%)
Mutual labels:  automation, cybersecurity, workflow
Terrahub
Terraform Automation and Orchestration Tool (Open Source)
Stars: ✭ 148 (-82.69%)
Mutual labels:  automation, devops, orchestration
Sandpolis
Experimental remote monitoring and management
Stars: ✭ 30 (-96.49%)
Mutual labels:  automation, devops, administration
Ck
Collective Knowledge framework (CK) helps to organize black-box research software as a database of reusable components and micro-services with common APIs, automation actions and extensible meta descriptions. See real-world use cases from Arm, General Motors, ACM, Raspberry Pi foundation and others:
Stars: ✭ 395 (-53.8%)
Mutual labels:  automation, devops, workflow
Shuffle
Shuffle: A general purpose security automation platform platform. We focus on accessibility for all.
Stars: ✭ 424 (-50.41%)
Mutual labels:  automation, cybersecurity, orchestration
Decker
Declarative penetration testing orchestration framework
Stars: ✭ 263 (-69.24%)
Mutual labels:  automation, framework, orchestration
Runbook
A framework for gradual system automation
Stars: ✭ 531 (-37.89%)
Mutual labels:  automation, devops, orchestration
Rundeck
Enable Self-Service Operations: Give specific users access to your existing tools, services, and scripts
Stars: ✭ 4,426 (+417.66%)
Mutual labels:  automation, devops, orchestration
Prefect
The easiest way to automate your data
Stars: ✭ 7,956 (+830.53%)
Mutual labels:  automation, workflow, orchestration
Openrpa
Free Open Source Enterprise Grade RPA
Stars: ✭ 596 (-30.29%)
Mutual labels:  automation, workflow
Noahv
An efficient front-end application framework based on vue.js
Stars: ✭ 593 (-30.64%)
Mutual labels:  framework, devops
Intelmq
IntelMQ is a solution for IT security teams for collecting and processing security feeds using a message queuing protocol.
Stars: ✭ 611 (-28.54%)
Mutual labels:  automation, cybersecurity
Guide
Kubernetes clusters for the hobbyist.
Stars: ✭ 5,150 (+502.34%)
Mutual labels:  automation, devops
Jok3r
Jok3r v3 BETA 2 - Network and Web Pentest Automation Framework
Stars: ✭ 645 (-24.56%)
Mutual labels:  automation, framework
Netaddr
A network address manipulation library for Python
Stars: ✭ 648 (-24.21%)
Mutual labels:  devops, sysadmin

Join us for a WALKOFF community virtual event on September 23rd!

https://www.eventbrite.com/e/walkoff-consortium-automating-at-the-speed-of-operations-registration-118693482401

Check out the WALKOFF community subreddit!

https://www.reddit.com/r/walkoffcommunity/

Welcome to WALKOFF's documentation!

This documentation is intended as a reference for app and workflow developers as well as project contributors and operators. Here you will find walkthroughs, tutorials and other useful information about applications that are shipped with Walkoff, our changelog, and how to interact with Walkoff using its RESTful API.

What is WALKOFF?

WALKOFF is a flexible, easy to use, automation framework allowing users to integrate their capabilities and devices to cut through the repetitive, tedious tasks slowing them down,

WHAT WE OFFER

  • Easy-to-use: Drag-and-drop workflow editor. Sharable apps and workflows.
  • Flexibility: Deployable on Windows or Linux.
  • Modular: Plug and play integration of almost anything with easy-to-develop applications.
  • Visual Analytics: Send workflow data to custom dashboards (and soon, Elasticsearch & Kibana!)

Documentation

https://walkoff.readthedocs.io/en/latest/

Pre-requisites

Ensure that Docker, Docker Compose 3+, and git are installed!

If you do not already have a Docker Swarm initialized or joined, run the following command to create one:

docker swarm init

Note: If you have multiple NICs you will need to use --advertise-addr to pick an address from which the swarm will be accessible.

Deploying WALKOFF in a Unix environment

  1. Open a terminal and clone WALKOFF:

    git clone https://github.com/nsacyber/WALKOFF.git
    
  2. Move into the WALKOFF directory:

    cd WALKOFF
    
  3. Build WALKOFF's bootloader container, which handles management of the WALKOFF stack:

    ./build_bootloader.sh
    

    The bootloader performs the following tasks:

    • Creating Docker secrets, configs, networks, volumes, etc.
    • Building and pushing component images to WALKOFF's internal registry.
    • Deploying and removing the Docker Stack.
  4. Launch WALKOFF with the bootloader, building components as well:

    ./walkoff.sh up --build
    
    # If verbose output is desired:
    ./walkoff.sh up --build --debug
    
  5. Navigate to the default IP and port. The default IP and the port can be changed by altering the port NGINX is exposed on (the right-hand port) in the top-level docker-compose.yml. Note that you should use HTTPS, and allow the self-signed certificate when prompted.

    https://127.0.0.1:8080
    
  6. The default username is "admin" and password is "admin." These can and should be changed upon initial login.

  7. To stop WALKOFF, use the bootloader:

    ./walkoff.sh down
    
    # If removing encryption key (and persistent data), stored images, and verbose output is desired:
    ./walkoff.sh down --key --registry --debug
    

Deploying WALKOFF in a Windows environment

  1. Open PowerShell and clone WALKOFF:

    git clone https://github.com/nsacyber/WALKOFF.git
    
  2. Move into the WALKOFF directory:

    cd WALKOFF
    
  3. Use the provided walkoff.ps1 script to initialize Walkoff's required components:

    # Create Docker volumes, secrets
    .\walkoff.ps1 init
    
    # Build and Push WALKOFF component images
    .\walkoff.ps1 build
    
  4. Launch WALKOFF with walkoff.ps1:

    # Deploy WALKOFF stack
    .\walkoff.ps1 up
    
    # Check WALKOFF stack services
    .\walkoff.ps1 status
    
  5. Navigate to the default IP and port. The default IP and the port can be changed by altering the port NGINX is exposed on (the right-hand port) in the top-level docker-compose.yml. Note that you should use HTTPS, and allow the self-signed certificate when prompted.

    https://127.0.0.1:8080
    
  6. The default username is "admin" and password is "admin." These can and should be changed upon initial login.

  7. To stop WALKOFF, use the bootloader:

    .\walkoff.ps1 stop
    
    # If removing encryption key, persistent data, stored images is desired:
    .\walkoff.ps1 down
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].