Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannah-PortSwigger committed Oct 2, 2020
2 parents 83b6477 + 2df1636 commit 8427d92
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 1 deletion.
1 change: 1 addition & 0 deletions BappDescription.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@


<p>* If you need more power, I invite you to try the new <b>Burp Bounty Pro</b>, which gives you more power and automation during your manual pentests.</p>

12 changes: 12 additions & 0 deletions BappManifest.bmf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Uuid: 618f0b2489564607825e93eeed8b9e0a
ExtensionType: 1
Name: Burp Bounty, Scan Check Builder
RepoName: scan-check-builder
ScreenVersion: 3.2
SerialVersion: 21
MinPlatformVersion: 0
ProOnly: True
Author: Eduardo Garcia
ShortDescription: Extend the Burp active and passive scanner by creating custom scan checks with an intuitive graphical interface.
EntryPoint: build/libs/scan-check-builder-all.jar
BuildCommand: gradle fatJar
27 changes: 27 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
apply plugin: 'java'

repositories {
mavenCentral()
}

dependencies {
compile 'net.portswigger.burp.extender:burp-extender-api:1.7.13'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
}

targetCompatibility = '1.8'
sourceCompatibility = '1.8'

sourceSets {
main {
java {
srcDir 'src'
}
}
}

task fatJar(type: Jar) {
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = 'scan-check-builder'
2 changes: 1 addition & 1 deletion src/BurpBountyExtension.java
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ public int consolidateDuplicateIssues(IScanIssue existingIssue, IScanIssue newIs

@Override
public String getTabCaption() {
return "Burp Bounty";
return "Scan Check Builder";
}

@Override
Expand Down

0 comments on commit 8427d92

Please sign in to comment.