Skip to content

Commit d82e29f

Browse files
Merge pull request #1 from TomLefley/main
README updates
2 parents 84494dc + 744a182 commit d82e29f

File tree

2 files changed

+85
-3
lines changed

2 files changed

+85
-3
lines changed

.github/workflows/build.yml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
6+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
7+
8+
name: Java CI with Gradle
9+
10+
on:
11+
push:
12+
branches: [ "main" ]
13+
pull_request:
14+
branches: [ "main" ]
15+
16+
jobs:
17+
build:
18+
19+
runs-on: ubuntu-latest
20+
permissions:
21+
contents: read
22+
23+
steps:
24+
- uses: actions/checkout@v4
25+
- name: Set up JDK 21
26+
uses: actions/setup-java@v4
27+
with:
28+
java-version: '21'
29+
distribution: 'temurin'
30+
31+
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
32+
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
33+
- name: Setup Gradle
34+
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
35+
36+
- name: Build with Gradle Wrapper
37+
run: ./gradlew build
38+
39+
# NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html).
40+
# If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version.
41+
#
42+
# - name: Setup Gradle
43+
# uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
44+
# with:
45+
# gradle-version: '8.9'
46+
#
47+
# - name: Build with Gradle 8.9
48+
# run: gradle build
49+
50+
dependency-submission:
51+
52+
runs-on: ubuntu-latest
53+
permissions:
54+
contents: write
55+
56+
steps:
57+
- uses: actions/checkout@v4
58+
- name: Set up JDK 21
59+
uses: actions/setup-java@v4
60+
with:
61+
java-version: '21'
62+
distribution: 'temurin'
63+
64+
# Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies.
65+
# See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md
66+
- name: Generate and submit dependency graph
67+
uses: gradle/actions/dependency-submission@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,32 @@
11
# ReportLM – AI-Powered Reporting for Burp Suite
22

3-
**ReportLM** is a Burp Suite extension that leverages [Burp AI](https://portswigger.net/burp/documentation/desktop/extensions/using-ai-extensions) to generate custom reports from issues identified by Burp Scanner. This tool streamlines the reporting process, allowing users to curate issues, apply custom specifications, and generate comprehensive reports with AI assistance.
3+
**ReportLM** is a Burp Suite extension that enhances the reporting process by leveraging **[Burp AI](https://portswigger.net/burp/documentation/desktop/extensions/using-ai-extensions)** to generate custom reports from issues identified by **Burp Scanner**. This tool allows users to **curate findings, define report specifications, and produce comprehensive, AI-assisted reports** tailored to their needs.
4+
5+
By integrating **Burp AI**, **ReportLM** enables a high degree of customisation, allowing reports to be adapted to different audiences or requirements. Users can adjust tone, technical depth, and language to suit the reader’s **experience level, role, or preferred format**. This flexibility makes it easier to generate reports that are clear, relevant, and aligned with specific use cases.
6+
7+
---
8+
9+
## 💡 How It Works
10+
11+
1. **Issue Processing** – ReportLM extracts issue details, background, and remediation information from Burp Scanner.
12+
2. **Customisation Options** – Users can specify custom requirements, such as tone, audience, format, or language preferences.
13+
3. **AI-Powered Generation** – The gathered data is sent to Burp AI, which generates the report.
14+
- Depending on the generation mode, the report will be returned all at once or section by section.
15+
4. **Post-Processing** – Once the report is generated:
16+
- If generated in sections, the details are combined into a final, complete report.
17+
- Evidence (e.g., request/response pairs) is then attached if enabled.
18+
5. **Transparency & Logging** – All data sent to Burp AI can be traced using the logging settings for visibility and peace of mind.
419

520
## 🔧 Usage
621

7-
1. **Add Issues** – Right-click on any issue and select "Add to ReportLM."
22+
1. **Add Issues** – Right-click on any issue and select "ReportLM", "Add to report".
823
2. **Review & Edit** – Check the report table and remove any unwanted issues.
924
3. **Customize** – Enter any specific details required for the report.
1025
4. **Generate** – Click the "Generate" button and let Burp AI create a detailed report for you.
1126

1227
## 📥 Installation
1328

14-
1. Install **ReportLM** via the Burp Suite **BApp Store** (if available) or manually from the [Releases](https://github.com/TomLefley/report-lm/releases).
29+
1. Install **ReportLM** via the Burp Suite **[BApp Store](https://portswigger.com/bappstore/c29264074acc4aacb5b424e6a033ba5d)** (if available) or manually from the [Releases](https://github.com/TomLefley/report-lm/releases).
1530
2. Ensure AI is enabled for the extension in Burp Suite settings.
1631

1732
## 🤝 Contributing

0 commit comments

Comments
 (0)