vamshikr / java-cli

A Java command line client for the SWAMP

Home Page:https://www.mir-swamp.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SWAMP Java CLI

Build Status

1. Introduction

The SWAMP Java CLI is a Java library and a command line interface that provides many common operation on a SWAMP instance. These operations include getting the list of projects, packages, versions of packages, assessments, tools and platforms. Creating packages, uploading new versions of a package, configuring and start an assessment, checking the status of an assessment, and downloading SCARF results.

2. Installation and Network Settings

From https://github.com/mirswamp/java-cli/releases page, download the latest java-cli-X.Y.Z.zip archive, where X.Y.Z stands for the latest release version number.

Extract/Unarchive the java-cli-X.Y.Z.zip file. This extracts all the files into java-cli-X.Y.Z directory. The executable files are in the bin directory and the main jar file is in the lib For rest of this document we will use 1.5.0 as the reference CLI version and Linux as the reference OS.

Note
Pre-requisites for running the Java CLI is Java-7 or above.

On Posix compatible systems run the following command from the java-cli-X.Y.Z directory:

./bin/swamp

On Windows systems run the following command from the java-cli-X.Y.Z directory:

.\bin\swamp.bat

Users can also run the jar file directory by running the following command from the java-cli-X.Y.Z directory:

java -jar lib/java-cli-1.5.0-with-dependencies.jar

If any of the above command is successful, the program display sub-commands available:

------------------------------------------------------------------------
Usage: <program> <sub-command> <options>
------------------------------------------------------------------------
<sub-command> must be one of the following:
	login
	logout
	packages OR package
	assessments OR assess
	results
	projects OR project
	tools OR tool
	platforms OR platform
	status
	user
------------------------------------------------------------------------
For information on the <options> for a <sub-command> execute:
	<program> <sub-command> --help or <program> <sub-command> -H
------------------------------------------------------------------------
For version: <program> --version or <program> -V
For help: <program> --help or <program> -H
------------------------------------------------------------------------

2.1. Using CLI with Self-signed SSL/TLS Certificates

SiB instances may have self-signed SSL/TLS certificates. Java’s security model by default does not allow communicating with a web-service that has a self-signed SSL/TLS certificate. To overcome this restriction, the web-service’s self-signed SSL/TLS certificate has to be added a java keystore on the machine that is running the CLI. The following are the instructions on how to do it:

  1. Go to SiB from the web-browser and download the SiB self-signed certificate by following these instruction here: https://www.thesslstore.com/blog/how-to-view-ssl-certificate-details-in-chrome-56/

  2. Run the following commands to add the self-signed certificate to a user’s custom keystore:

  1. Make a copy of the cacerts file in $JAVA_HOME/jre/lib/security/ directory to a local directory:

       cp $JAVA_HOME/jre/lib/security $PWD
  2. Add the certificate to the keystore (Assuming here that the self-signed certificate is stored on the desktop as www.sib-swamp.org.cer)

       sudo keytool -importcert -alias sib-name -file ~/Desktop/www.sib-swamp.org.cer -keystore $PWD/cacerts

To check if CLI works with your SiB instance, run login sub-command, see section Login Sub-Command

2.2. Using CLI with an HTTP Proxy

Connecting to SWAMP via a http proxy server is supported via standard environment variables, java system properties or options to login sub-command.

2.2.1. Using environment variables http_proxy or https_proxy

In your environment, setup the environment variables http_proxy or https_proxy in the format http[s]_proxy=http[s]://[<username>:<passoword>]@<proxy_host>[:<proxy_port>]

Example 1:
% export http_proxy=http://squid.cs.wisc.edu:3128
% ./bin/swamp login --filepath ./scripts/resources/userinfo.properties
Example 2:
% export http_proxy=http://user1:password1@squid.cs.wisc.edu:3128
% ./bin/swamp login --filepath ./scripts/resources/userinfo.properties
Example 3:
% export https_proxy=https://user1:password1@squid.cs.wisc.edu:3128
% ./bin/swamp login --filepath ./scripts/resources/userinfo.properties

2.2.2. Using CLI with an HTTP proxy with java system properties:

Pass the following java properties to the java-cli’s login sub-command:

  1. http.proxyHost

  2. http.proxyPort

  3. http.proxyUser

  4. http.proxyPassword

Example 1:
% ./bin/swamp login --filepath ./scripts/resources/userinfo.properties -Dhttp.proxyHost=squid.cs.wisc.edu -Dhttp.proxyPort=3128
Example 2:
% ./bin/swamp login --filepath ./scripts/resources/userinfo.properties -Dhttp.proxyHost=squid.cs.wisc.edu -Dhttp.proxyPort=3128 -Dhttp.proxyUser=user1 -Dhttp.proxyPassword=password1

2.2.3. Using CLI via a HTTPs proxy with java system properties:

Pass the following java properties to the java-cli’s login sub-command: . https.proxyHost . https.proxyPort . https.proxyUser . https.proxyPassword

Example 1:
% ./bin/swamp  login --filepath ./scripts/resources/userinfo.properties -Dhttps.proxyHost=squid.cs.wisc.edu -Dhttps.proxyPort=3128
Example 2:
% ./bin/swamp  login --filepath ./scripts/resources/userinfo.properties -Dhttps.proxyHost=squid.cs.wisc.edu -Dhttps.proxyPort=3128 -Dhttps.proxyUser=user1 -Dhttps.proxyPassword=password1

3. Using the CLI

SWAMP Java CLI provides sub-commands to perform various operations on SWAMP. A sub-command is the first argument to the CLI program. Each sub-command has its own set of options and arguments. Java CLI supports the following sub-commands

Sub-Command Description

login

Login into SWAMP

logout

Logout of SWAMP

packages

Upload a package to SWAMP, list the uploaded packages

tools

Get the list of tools

assess

Assess an already uploaded package with SWAMP tools

platforms

Get the list of supported platforms

projects

Get the list of projects the user is associated of

status

Get the status of an assessment

results

Download SCARF results

user

Information about the current user

To get help on each of the sub-command in the above list run ./bin/swamp <sub-command> --help or ./bin/swamp <sub-command> --H.

3.1. Login Sub-Command

login sub-command is used to login into SWAMP. The login sub-command supports the following options:

Option Value

--swamp-host <SWAMP_HOST>

URL for SWAMP host. default is https://www.mir-swamp.org

--keystore <KEYSTORE>

Custom keystore (that has SSL/TLS certificate for SiB) file path

--proxy <PROXY>

URL for http proxy, format: http[s]://<username>:<passoword>@<proxy_host>:<proxy_port>

--filepath <CREDENTIALS_FILEPATH>

Properties file containing username, password, proxy settings, keystore file path

--console

Lets SWAMP user type username and password on the terminal

--quiet

Does not show the login status message

The properties file provided to the option --filepath must have the following as key value pairs:

username=<swamp-username>
password=<swamp-password>
Note
To login to SWAMP via java-cli or any other SWAMP plugins, we recommend using SWAMP application passwords instead of your SWAMP username and password. Please see Application Passwords section.

The properties file provided to the option --filepath can also have the following additional key value pairs:

proxy=http[s]://[<username>:<passoword>]@<proxy_host>[:<proxy_port>]
keystore=<keystore-filepath>

If the login is successful, the following output is displayed on the console, with a command exit status 0.

Login successful

Once logged in, a SWAMP session is valid for 48 hours.

3.1.1. Application Passwords

We recommend using SWAMP application passwords (instead of your SWAMP username and password) to access SWAMP via java-cli or other SWAMP plugins. If you use a github or any other third party identity provider to access SWAMP then you may not have SWAMP username and password.

To get an username and an application password, do the following:

  1. Login to SWAMP via web interface and go to My Account page (https://www.mir-swamp.org/#my-account).

  2. Select My Profile tab

    1. Copy the value with Username label in the My Profile tab. This is the username that you must use to login via java-cli or other SWAMP plugins.

  3. Select Application Passwords tab.

    1. Create a new password by clicking on the Add New Password button. This is the password that you must use to login via java-cli or other SWAMP plugins.

3.2. Logout Sub-Command

logout sub-command is used to logout of SWAMP. The logout sub-command supports the following additional options:

Option Value

--quiet

Does not show the logout status message

If the logout is successful, the following output is displayed on the console, with a command exit status 0.

Logout successful

3.3. Packages Sub-Command

packages sub-command can be used for the following:

  1. Upload a package to SWAMP

  2. List supported package types

  3. List user packages

  4. Delete user packages

3.3.1. Upload a package to SWAMP

To upload a package, use --upload option with the packages sub-command. The packages sub-command with --upload option supports the following additional options:

Option Value

--pkg-archive <PACKAGE_ARCHIVE_FILEPATH>

Path to the archive of the package. This option is required

--pkg-conf <PACKAGE_CONF_FILEPATH>

Path to package.conf file for the package. This option is required

--new-pkg

Flag/Option to specify if this should be a new package instead of a package version. If a package with the same name already exist, CLI adds this package as a package version. --new-pkg flag overrides it and stores it as a new package.

--os-deps '<platform=dependency1 dependency2 …​>'

OS package dependencies specified as key=value format. Use this option multiple times to specify dependency for multiple SWAMP platforms.

--project <PROJECT>

Name or UUID of the project that this package must be added to. default is MyProject

--project-uuid <PROJECT_UUID>

UUID of the project that this package must be added to. This option is deprecated, use --project if needed.

--quiet

With this flag, the sub-command prints only the Package UUID with no formatting.

Example:

./bin/swamp package --upload --pkg-archive /home//swamp/api-dev/java-cli/scripts/resources/test_packages/railsgoat-9052b4fcf0/railsgoat-9052b4fcf0.zip -pkg-conf /home//swamp/api-dev/java-cli/scripts/resources/test_packages/railsgoat-9052b4fcf0/package.conf --os-deps 'ubuntu-16.04-64=libsqlite3-dev libmysqlclient-dev' --new-pkg

If the above command is successful, the output will be:

Package Version UUID
d5821bf0-5719-4e33-a49c-f31a912eaa15

3.3.2. Show Supported Package Types

To display the types of software packages supported by SWAMP, --types option is used with the package sub-command.

Example:

./bin/swamp package --types

Example output from the above command:

Type
Android .apk
Android Java Source Code
C/C++
Java 7 Bytecode
Java 7 Source Code
Java 8 Bytecode
Java 8 Source Code
Python2
Python3
Ruby
Ruby Padrino
Ruby Sinatra
Ruby on Rails
Web Scripting

3.3.3. List User Packages

To list packages uploaded by a user, use --list option with the package sub-command.

The package sub-command with the --list option accepts the following additional options:

Option Value

--pkg-type <PACKAGE_TYPE>

Only show packages of this package type

--project <PROJECT>

Only show packages in this Project (Name or UUID)

--project-uuid <PROJECT_UUID>

Show packages that are part of the project with this UUID only. This option is deprecated, use --project if needed.

--quiet

Do not print Headers, Description, Type

--verbose

Print UUIDs also

Example:

./bin/swamp packages --list --project MyProject

Example output from the above command:

Package                   Description                              Type                      Version
webgoat-lessons           No Description Available                                     Java 8 Source Code        7.1
swamp-java-api                                                     Java 8 Source Code        dc2c04b
swamp-gradle-example      No Description Available                 Java 7 Source Code        1.0
shapes                    No Description Available                                     Java 7 Source Code        1.0
scarf-io                  No Description Available                                     Java 8 Source Code        1.0
lighttpd                  No Description Available                 C/C++                     1.4.45
lighttpd                  No Description Available                                     C/C++                     1.4.45
lighttpd                  No Description Available                                     C/C++                     1.4.45-2018032210
lighttpd                  No Description Available                                     C/C++                     1.4.45-2018032311
lighttpd                  No Description Available                                     C/C++                     1.4.45-2018032201
lighttpd                  No Description Available                                     C/C++                     1.4.45-2018032203
airavata883c3f4           No Description Available                                     Java 8 Source Code        1.0
WebGoat-Lessons           No Description Available                                     Java 8 Source Code        1.0

3.3.4. Delete User Packages

To delete one or more packages, use --delete option with the package sub-command.

package sub-command with --delete sub-command requires the following additional options:

Option Value

--package <PACKAGE1> <PACKAGE2> …​

Delete packages with these names or UUIDs. Accepts multiple names or UUIDs

--project <PROJECT>

Delete packages in this project. if --packages option is not specified, deletes all the packages in the project

--pkg-uuid <PKG_UUID1> <PKG_UUID2> …​

UUIDs of packages that must be deleted. This option is deprecated, use --package if needed.

--project-uuid <PROJECT_UUID>

Project UUID for the packages. This is optional. This option is deprecated, use --project if needed.

'--quiet'

Do not print anything

Example:

% ./bin/swamp packages --delete -project MyProject --package webgoat-lessons
Deleted 'Name: webgoat-lessons, Version: 7.1'

3.4. Tools Sub-Command

tools sub-command is used for the following:

  1. Get a list of all the tools that the user has access to in SWAMP

  2. Given a tool name, get the platform UUID

3.4.1. Get Tool List

To get a list of all the tools that the user has access to in SWAMP, use --list option with the tools sub-command. This command displays list of tools, with versions available and supported package types.

tools sub-command with --list option accepts the following additional option:

Option Value

--quiet

Only prints the names of the tools

--verbose

Also prints UUIDs

Example:

./bin/swamp tools --list

Example output of the above command:

Tool                          Version Supported Package Types
JSHint                          2.9.4 ["Web Scripting"]
Synopsys Static Analysis (Coverity)         2017.07 ["C/C++"]
HTML Tidy                       5.2.0 ["Web Scripting"]
Parasoft C/C++test             10.3.3 ["C/C++"]
Parasoft C/C++test           9.6.1.91 ["C/C++"]
Parasoft Jtest                 10.3.3 ["Java 7 Source Code","Android Java Source Code","Java 8 Source Code"]
Parasoft Jtest                  9.6.0 ["Java 7 Source Code","Android Java Source Code","Java 8 Source Code"]
Clang Static Analyzer             3.8 ["C/C++"]
Clang Static Analyzer             3.7 ["C/C++"]
Clang Static Analyzer             3.3 ["C/C++"]
error-prone                    2.0.21 ["Java 7 Source Code","Android Java Source Code","Java 8 Source Code"]
error-prone                    2.0.15 ["Java 7 Source Code","Android Java Source Code","Java 8 Source Code"]
error-prone                     2.0.9 ["Java 7 Source Code","Android Java Source Code","Java 8 Source Code"]
error-prone                     1.1.1 ["Java 7 Source Code","Android Java Source Code","Java 8 Source Code"]
Dawn                            1.6.7 ["Ruby Sinatra","Ruby on Rails","Ruby Padrino"]
Dawn                            1.3.5 ["Ruby Sinatra","Ruby on Rails","Ruby Padrino"]
RuboCop                          0.47 ["Ruby","Ruby Sinatra","Ruby on Rails","Ruby Padrino"]
RuboCop                          0.33 ["Ruby","Ruby Sinatra","Ruby on Rails","Ruby Padrino"]
RuboCop                          0.31 ["Ruby","Ruby Sinatra","Ruby on Rails","Ruby Padrino"]
PHPMD                           2.5.0 ["Web Scripting"]

3.4.2. Get Tool UUID

To get a tool’s UUID, use --uuid option with the tools sub-command. tools sub-command with --uuid option requires the following additional option:

Option Value

--name <TOOL_NAME>

Name of the tool to get the UUID for

Example:

./bin/swamp tools --uuid --name PMD

Example output of the above command:

163f2b01-156e-11e3-a239-001a4a81450b

3.5. Assessments Sub-Command

assessments sub-command is used for the following:

  1. Perform assessments in SWAMP

  2. List assessments

3.5.1. Perform assessments in SWAMP

To perform an assessment, use --run option with the assessments sub-command.

The assessments sub-command with the --run option supports the following additional options:

Option Value

`--package <PACKAGE_NAME> `

Name of the package to be assessed. By default uses the latest version. For a particular version of a package, use <PACKAGE_NAME>::<VERSION>. This option is required

--tool <TOOL1> <TOOL2> …​

Name of the tool to be assessed with. By default uses the latest version. For a particular version of a tool, use <TOOL_NAME>::<VERSION>. This option accepts multiple tool names. This option is required

--platform <PLATFORM1> <PLATFORM2> …​

Platform to be assessed on. This option accepts multiple platform names.

--pkg-uuid <PKG_VERSION_UUID>

UUID of the version of a package that must be assessed. This option is deprecated, use --package option

--project-uuid <PROJECT_UUID>

Project that the package is part of. This option is deprecated.

--platform-uuid <PLATFORM_UUID1> PLATFORM_UUID2> …​

UUIDs of the platforms that assessments must be performed on. This is optional and is only valid for C/C++ assessments. This option is deprecated, use --platform option.

--tool-uuid <TOOL_UUID1> <TOOL_UUID2> …​

UUIDs of the tools that must be used for assessments. This option is deprecated, use --tool option.

--quiet

Does not print headers

Example:

./bin/swamp assessments --run --package swamp-gradle-example --tool error-prone

Example output of the above command:

Assessment UUIDs
d14aa1f9-d0f1-48b6-adb4-088ac0e1ffee

Example with a particular package version and tool version:

./bin/swamp assessments --run --package swamp-gradle-example::1.0 --tool error-prone::1.1.1

Example with a particular package version and tool version:

./bin/swamp assessments --run --package swamp-gradle-example::1.0 --tool error-prone::1.1.1

Example with a particular package version and multiple tools:

./bin/swamp assessments --run --package swamp-gradle-example::1.0 --tool error-prone::1.1.1 spotbugs PMD

Example with a package, multiple tools, and multiple platforms:

./bin/swamp assessments --run --package lighttpd --tool cppcheck "Clang Static Analyzer" --platform centos-7-64  debian-8-64  fedora-24-64 ubuntu-16.04-64

3.5.2. List Assessments

To list assessments created, use --list with the assessments sub-command. The assessments sub-command with the --run option supports the following additional options:

Option Value

--project <PROJECT>

Only show assessments in this Project.

--package <PACKAGE>

Only show assessments for this Package

--platform <PLATFORM>

Only show assessments on this Platform

--tool <TOOL>

Only show assessments with this Tool

--quiet

Do not print Headers

--verbose

Print UUIDs also

Example:

./bin/swamp assessments -L --tool SpotBugs

Example output for the above command

Package                                  Tool                           Platform
TestPerm::2018-03-29-12 			             SpotBugs::latest                ubuntu-16.04-64
java-cli::2018-03-29-12             			 SpotBugs::latest                ubuntu-16.04-64
scarf-io::2018-03-29-11			             SpotBugs::latest                ubuntu-16.04-64
scarf-io2::2018-03-29-11			             SpotBugs::latest                ubuntu-16.04-64
scarf-io2::2018-03-27-15			             SpotBugs::latest                ubuntu-16.04-64
java-cli::2018-03-27-15			             SpotBugs::latest                ubuntu-16.04-64

3.6. Results Sub-Command

To download SCARF results of an assessment run or show list of assessment runs, use results sub-command.

3.6.1. List Assessment Runs

To list assessment runs, use --list with the results sub-command. The results sub-command with the --list option supports the following additional options:

Option Value

--project <PROJECT>

Only show assessment runs in this Project

--package <PACKAGE>

Only show assessment runs for this Package

--platform <PLATFORM>

Only show assessment runs ran on this Platform

--tool <TOOL>

Only show assessment runs with this Tool

--verbose

Print UUIDs also

Example:

./bin/swamp results --list

Example output for the above command:

Package                                  Tool                           Platform             Date                 Status                  Results
lighttpd::1.4.45                          Clang Static Analyzer::3.8      centos-7-64          04/23/2018 10:07     Finished                      4
lighttpd::1.4.45                          Clang Static Analyzer::3.8      debian-8-64          04/23/2018 10:07     Finished                      4
lighttpd::1.4.45                          Clang Static Analyzer::3.8      fedora-24-64         04/23/2018 10:07     Finished                      4
lighttpd::1.4.45                          Clang Static Analyzer::3.8      ubuntu-16.04-64      04/23/2018 10:07     Finished                      4
lighttpd::1.4.45                          cppcheck::1.75                  centos-7-64          04/23/2018 10:07     Finished                    209
lighttpd::1.4.45                          cppcheck::1.75                  debian-8-64          04/23/2018 10:07     Finished                    209
lighttpd::1.4.45                          cppcheck::1.75                  fedora-24-64         04/23/2018 10:07     Finished                    209
lighttpd::1.4.45                          cppcheck::1.75                  ubuntu-16.04-64      04/23/2018 10:07     Finished                    209
lighttpd::1.4.45                          Clang Static Analyzer::3.8      centos-7-64          04/23/2018 07:31     Finished                      4
lighttpd::1.4.45                          Clang Static Analyzer::3.8      debian-8-64          04/23/2018 07:31     Finished                      4
lighttpd::1.4.45                          Clang Static Analyzer::3.8      fedora-24-64         04/23/2018 07:31     Finished                      4
lighttpd::1.4.45                          Clang Static Analyzer::3.8      ubuntu-16.04-64      04/23/2018 07:31     Finished                      4
lighttpd::1.4.45                          cppcheck::1.75                  centos-7-64          04/23/2018 07:31     Finished                    209
lighttpd::1.4.45                          cppcheck::1.75                  debian-8-64          04/23/2018 07:31     Finished                    209
lighttpd::1.4.45                          cppcheck::1.75                  fedora-24-64         04/23/2018 07:31     Finished                    209
lighttpd::1.4.45                          cppcheck::1.75                  ubuntu-16.04-64      04/23/2018 07:31     Finished                    209
swamp-gradle-example::1.0                 SpotBugs::3.1.0                 ubuntu-16.04-64      04/23/2018 07:22     Finished                     13
swamp-gradle-example::1.0                 PMD::5.8.1                      ubuntu-16.04-64      04/23/2018 07:22     Finished                     33
swamp-gradle-example::1.0                 error-prone::1.1.1              ubuntu-16.04-64      04/23/2018 07:22     Finished                      0
swamp-gradle-example::1.0                 error-prone::1.1.1              ubuntu-16.04-64      04/23/2018 07:17     Finished                      0
swamp-gradle-example::1.0                 error-prone::1.1.1              ubuntu-16.04-64      04/23/2018 07:17     Finished                      0
swamp-gradle-example::1.0                 error-prone::2.0.21             ubuntu-16.04-64      04/23/2018 07:15     Finished                      1

3.6.2. Download SCARF Results

To download SCARF results use --download option with the results sub-command. The results sub-command with the --download option supports the following additional options:

Option Value

--filepath <SCARF_FILEPATH>

File path to write SCARF Results into

--package <PACKAGE>

Download results for this package name

--tool <TOOL>

Download results for this tool

--platform <PLATFORM>

Download results for this platform

--results-uuid <RESULTS_UUID>

Assessment Results UUID

--project-uuid <PROJECT_UUID>

Project UUID of a project. This option is deprecated.

--quiet

Do not print Headers

SCARF results downloaded from the assessment run will be stored into <SCARF_FILEPATH>.

Example 1:
./bin/swamp results --download --results-uuid f4856ee8-b402-11e7-92c3-001a4a814413 --filepath $PWD/scarf-results.xml
Example 2:
./bin/swamp results --download  --package swamp-gradle-example::1.0 --tool SpotBugs::3.2.0  --platform  ubuntu-16.04-64

3.7. Projects Sub-Command

projects sub-command must be used for the following:

  1. Get the list of all the SWAMP projects the user is part of.

  2. Given a project name, get the project UUID.

3.7.1. Get Project List

To get a list of all the projects that user of part of, use --list option with the projects sub-command.

The projects sub-command with --list option supports the following additional options.

Option Value

--quiet

Do not print Headers, and Description, Date Added attributes

--verbose

Print UUIDs also

Example:

./bin/swamp projects --list

Example for the output of the above command:

Project                   Description                              Date Added
new-project               for experiment only                      01/22/2015 04:02
UW SWAMP Java Software    Some of the software written for SWAMP, want to check how SWAMP works. 02/03/2014 11:52
UW Mobile                 UW Mobile                                06/23/2015 06:39
NICS                      NICS software assessments                11/17/2015 05:57
MyProject                 Starter project for running assessments. 02/23/2015 15:51
4plugins                  Project to test plugins                  06/22/2017 09:38

3.7.2. Get Project UUID

To get UUID of a project, use --uuid option with the projects sub-command.

projects sub-command with --uuid option requires the following additional options:

Option Value

--name <PROJECT_NAME>

Name of the project to get the UUID for

Example:

./bin/swamp projects --uuid --name 4plugins

Example for the output of the above command:

df2e7c15-4d28-4224-b25c-c2570bd91156

3.8. SWAMP Platforms Information

platform sub-command is used for the following:

  1. Get a list of all the platforms supported by the SWAMP.

  2. Given a platform name, get the platform UUID.

3.8.1. Get Platforms List

To get a list of all the platforms that user of part of, use --list option with the platforms sub-command.

The platforms sub-command with --list option supports the following additional options.

Option Value

--quiet

Do not print Headers

--verbose

Print UUIDs also

Example:

./bin/swamp platforms --list

Example for the output of the above command:

Platform
android-ubuntu-12.04-64
centos-6-32
centos-6-64
centos-7-64
debian-7-64
debian-8-64
fedora-18-64
fedora-19-64
fedora-20-64
fedora-21-64
fedora-22-64
fedora-23-64
fedora-24-64
scientific-6-32
scientific-6-64
scientific-7-64
ubuntu-10.04-64
ubuntu-12.04-64
ubuntu-14.04-64
ubuntu-16.04-64

3.8.2. Get Platform UUID

To get UUID of a platform, use --uuid option with the platforms sub-command.

platforms sub-command with --uuid option requires the following additional options:

Option Value

--name <PLATFORM_NAME>

Name of the platform to get the UUID for

Example:

./bin/swamp platforms --uuid --name ubuntu-16.04-64

Example for the output of the above command:

03b18efe-7c41-11e6-88bc-001a4a81450b

3.9. Status Sub-Command

To get the status of an assessment run, status sub-command is used with the following options:

Option Value

--assess-uuid <ASSESS_UUID>

UUID of the assessment run

--project-uuid <PROJECT_UUID>

Project UUID of the assessment . This option is deprecated

The output of the above sub-command will display (SUCCESS|FAILURE|INPROGRESS). Incase of SUCCESS, the number of weaknesses and results-uuid will also be displayed on the console.

Example:

./bin/swamp status --assess-uuid 96e6e4e0-efce-4216-bff9-b20b30ca2e83 --project-uuid df2e7c15-4d28-4224-b25c-c2570bd91156

Example output of the above command:

SUCCESS, 33, f4856ee8-b402-11e7-92c3-001a4a814413

3.10. Exit Codes

In case of errors or exceptions the Java CLI program returns the following exit codes:

Exit Code Description

0

No errors

1

Incorrect command line options

2

Command line parser error

3

Invalid UUID of a Tool, Project, Package, Assessment

4

Incompatible tuple, example: Using Java tool on a C/C++ package

5

User session expired

6

User session restore error

7

User session save error

8

No default platform

9

Invalid Name of a Tool, Project, Package, Platform

10

Conflicting (Package, Tool, Project, Platform) Tuple

20+

HTTP exception

4. Building from Sources

Clone https://github.com/mirswamp/java-cli.git, and run the following commands to build java-cli:

cd java-cli
mvn package -DskipTests

Run java -jar ./target/java-cli-X.Y.Z-jar-with-dependencies.jar command.

5. Automated Test Suite

To run the automated test suite, do the following:

username=<swamp-username>
password=<swamp-password>
project=<swamp-user-project-uuid>
hostname=<swamp-hostname> # Optional, default is mir-swamp.org
  • run .scripts/test.sh script.

About

A Java command line client for the SWAMP

https://www.mir-swamp.org/

License:Apache License 2.0


Languages

Language:Java 88.8%Language:Python 9.5%Language:Shell 1.7%