Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
jenkinsci__perfecto-plugin_CVE-2020-2261_1-17 — Jenkins plugin for automated mobile app testing via Perfecto cloud, managing secure tunnel connections and app uploads within CI/CD pipelines. | Kitploit
Tools/GitHubGitHub/shoucheng3/jenkinsci__perfecto-plugin_cve-2020-2261_1-17
Mobile App PentestingAPI Security TestingCloud SecurityDevSecOps
GitHubshoucheng3/jenkinsci__perfecto-plugin_cve-2020-2261_1-17

jenkinsci__perfecto-plugin_CVE-2020-2261_1-17

Jenkins plugin for automated mobile app testing via Perfecto cloud, managing secure tunnel connections and app uploads within CI/CD pipelines.

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
41 year agoNot yet reviewed
Share

Perfecto Jenkins Plugin

Perfecto Jenkins Plugin provides the ability to auto-create/ re-use existing Perfecto Connect tunnel-id in build environment.

Table of Contents

  • Perfecto Jenkins Plugin
  • Table of Contents
    • Prerequisites
    • 1. Steps to Enable the plugin
      • Screenshots
        • Mac
        • Windows
      • Advanced Options
    • 2. Usage
      • Maven Sample
      • Gradle Sample
    • 3. Steps to Stop Perfecto Connect
    • Advanced Usage
      • Perfecto Connect Pipeline Sample
      • Upload app to perfecto

Prerequisites

  • Download Perfecto Connect client, extract to any folder.
  • Generate Perfecto Security Token (if not generated already)
  • Mac users should install Jenkins via brew.

1. Steps to Enable the plugin

  1. Click New Item in Jenkins home page.
  2. Enter Your preferred Item name.
  3. Select any project type except pipeline.
  4. Click OK.
  5. Select Perfecto Connect checkbox under Build Environment (Refer Screenshots section)
  6. Note: Get help from your Jenkins Administrator to create the below Perfecto credentials:
    a. Select Add option next to Credentials dropdown and select Jenkins.
    b. Select option: “Perfecto” under Kind dropdown in Add Credentials window.
    c. Provide Your Cloud Name, Username and Security Token and click on Add.


  1. Provide Perfecto Connect Path in Perfecto Connect Path text field.
    a. E.g.: - /Users/Mymac/Downloads
  2. Provide Perfecto Connect File Name in Perfecto Connect File Name text field.
    a. E.g.: - Mac – perfectoconnect
    b. E.g.: - Windows – perfectoconnect64.exe or perfectoconnect32.exe

Screenshots

Mac

Windows

Advanced Options

You can provide Advanced options such as Perfecto Connect Additional Parameters, Override Tunnel ID Name and Existing Tunnel ID.

  1. Additional Parameters
    a. Provide Perfecto Connect parameters such as bridgeproxyip, bridgeproxyport
    b. E.g.: - --bridgeproxyip=127.0.0.1 --bridgeproxyport=8888
  2. You can override Tunnel ID Environment Variable name in Override Tunnel ID Name in text field. (The default Jenkins Build Environment variable name is tunnelId)
  3. You can reuse already created Tunnel ID in Existing Tunnel ID text field.


2. Usage

Maven Sample

Gradle Sample

3. Steps to Stop Perfecto Connect

  1. Add a Post Build task under Post Build Action.
  2. Enter the below script under Script text field.


Advanced Usage

Perfecto Connect Pipeline Sample

  1. Create a new Pipeline and add the below code to pipeline script text field.
  2. Update cloudName, securityToken and perfectoConnectPath as applicable.
root@kitploit:~
import groovy.json.JsonSlurperClassic
import groovy.json.JsonSlurper
 
node {
String cloudName = "<<CLOUD NAME e.g. demo>>";
String securityToken = "<<SECURITY TOKEN>>";
String perfectoConnectPath = "/Users/myMac/Downloads/perfectoconnect";
    environment {
        tunnelId = ""
    }
    stage('perfectoconnect start'){
        if(cloudName.contains("<<")){
             error "Kindly update cloudName, securityToken and perfectoConnectPath"
        }
        String script = perfectoConnectPath + " start  -c " + cloudName + ".perfectomobile.com  -s " + securityToken;
        echo script;
        tunnelId = sh (script: script , returnStdout: true).trim()
        env.tunnelId = "${tunnelId}"
    }
    stage('script'){
        echo "Tunnel id: ${tunnelId}"
    }
    stage('perfectoconnect stop'){
        sh label: '', returnStdout: true, script: perfectoConnectPath + " stop"
    }
}

Upload app to perfecto

Follow this documentation to use curl and upload app to perfecto media repository.

Download Tool