Skip to main content

Python library for Fortify Software Security Center (SSC) RESTFul API

Project description

https://img.shields.io/pypi/v/fortifyapi.svg https://img.shields.io/pypi/pyversions/fortifyapi.svg https://img.shields.io/travis/fortifyadmin/fortifyapi/master.svg

Fortify API

Fortify API is a Python RESTFul API client module for Fortify’s Software Security Center

Quick Start

Several quick start options are available:

  • Build locally: pip install wheel setuptools && python setup.py build

  • Install with pip (recommended): pip install fortifyapi

  • Download the latest release.

Example

from os import environ
from locale import LC_ALL, setlocale
from fortifyapi.fortify import FortifyApi

 # Set encoding
 environ["PYTHONIOENCODING"] = "utf-8"
 myLocale = setlocale(category=LC_ALL, locale="en_GB.UTF-8")

 # Set vars for connection
 url = 'https://some-fortify-host/ssc'
 user = 'Fortify SSC User'
 password = 'Fortify SSC Password'
 description = 'fortifyapi test client'

 # Authenticate and retrieve token
 def token():
     api = FortifyApi(host=url, username=user, password=password, verify_ssl=False)
     response = api.get_token(description=description)
     return response.data['data']['token']

 # Re-use token in all requests
 def api():
     api = FortifyApi(host=url, token=token(), verify_ssl=False)
     return api

 # List ID, Project/application Version
 def list():
     response = api().get_all_project_versions()
     data = response.data['data']
     for version in data:
         print("{0:8} {1:30} {2:30}".format(version['id'], version['project']['name'], version['name']).encode(
             'utf-8', errors='ignore').decode())

 if __name__ == '__main__':
      list()

Bugs and Feature Requests

Found something that doesn’t seem right or have a feature request? Please open a new issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fortifyapi-2.1.macosx-10.15-x86_64.tar.gz (21.6 kB view hashes)

Uploaded Source

Built Distribution

fortifyapi-2.1-py3.7.egg (23.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page