Projects STRLCPY LoggerPlusPlus Commits 7b57f9ac
🤬
  • ■ ■ ■ ■
    .github/workflows/codeql.yml
    skipped 32 lines
    33 33   uses: actions/setup-java@v2
    34 34   with:
    35 35   distribution: adopt
    36  - java-version: '15'
     36 + java-version: '17'
    37 37   
    38 38   # Initializes the CodeQL tools for scanning.
    39 39   - name: Initialize CodeQL
    skipped 31 lines
  • ■ ■ ■ ■ ■
    build.gradle
    skipped 5 lines
    6 6  sourceCompatibility = JavaVersion.VERSION_17
    7 7  targetCompatibility = JavaVersion.VERSION_17
    8 8   
    9  - 
    10 9  repositories {
    11 10   mavenCentral()
    12 11   maven {
    skipped 8 lines
    21 20   implementation 'org.elasticsearch.client:elasticsearch-rest-high-level-client:7.15.2'
    22 21   implementation 'org.apache.httpcomponents:httpclient:4.5.13'
    23 22   implementation 'org.apache.commons:commons-text:1.10.0'
    24  - 
    25 23   implementation 'org.apache.logging.log4j:log4j-core:2.19.0'
    26  - testCompileOnly files("${System.properties['user.home']}/BurpSuitePro/burpsuite_pro.jar")
     24 + 
     25 + testRuntimeOnly files("${System.properties['user.home']}/BurpSuitePro/burpsuite_pro.jar")
    27 26  }
    28 27   
    29 28  jar {
    skipped 16 lines
  • ■ ■ ■ ■ ■
    src/test/java/Test.java
     1 +import java.lang.reflect.Method;
     2 + 
    1 3  public class Test {
    2 4   public static void main(String[] args) {
    3  - burp.StartBurp.main(args);
     5 + try {
     6 + Method main = Class.forName("burp.StartBurp").getMethod("main", String[].class);
     7 + main.invoke(null, (Object) args);
     8 + }catch (Exception e){
     9 + System.err.println("Cannot start burp. Check the burp jar is correctly included in the classpath.");
     10 + }
    4 11   }
    5 12  }
    6 13   
Please wait...
Page is in error, reload to recover