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/circleci/build/github/fortifyadmin/fortifyapi/master?logo=CircleCI

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-3.1.26.tar.gz (31.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fortifyapi-3.1.26-py3-none-any.whl (24.4 kB view details)

Uploaded Python 3

File details

Details for the file fortifyapi-3.1.26.tar.gz.

File metadata

  • Download URL: fortifyapi-3.1.26.tar.gz
  • Upload date:
  • Size: 31.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.12

File hashes

Hashes for fortifyapi-3.1.26.tar.gz
Algorithm Hash digest
SHA256 b3f96216c2bffe76756455f070716294957eada47e2ed086ece52d496fd6c3d9
MD5 d864588e409f74330823c9123f0be4b5
BLAKE2b-256 a9e4c7de187eb183c4f7b9a4ebd04c41482fda774a93069963e671aa268e0407

See more details on using hashes here.

File details

Details for the file fortifyapi-3.1.26-py3-none-any.whl.

File metadata

  • Download URL: fortifyapi-3.1.26-py3-none-any.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.12

File hashes

Hashes for fortifyapi-3.1.26-py3-none-any.whl
Algorithm Hash digest
SHA256 6d2e1287cc8a74518158e43404ff6dd72155dc46e54a4abfc84cdd46081de3cb
MD5 494dfb293050a43bc0f0f0ed3cfa6b86
BLAKE2b-256 b4ebecbebfb80bebbc4a2d3f1d1363b6b00dbc8e87d93eb6bc18c4fe1be13f6d

See more details on using hashes here.

Supported by

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