Skip to content

Instantly share code, notes, and snippets.

@bowsersenior
Created November 3, 2012 06:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bowsersenior/4006251 to your computer and use it in GitHub Desktop.
Save bowsersenior/4006251 to your computer and use it in GitHub Desktop.
Sample gauntlt attack
Feature: simple nmap attack (sanity check)

  Background:
    Given "nmap" is installed
    And the following profile:
      | name | value |
      | hostname | example.com |

  Scenario: Verify server is available on standard web ports
    When I launch an "nmap" attack with:
      """
      nmap -p 80 
      """
    Then the output should contain:
      """
      80/tcp open http
      """
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment