Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

brk: migrate from core #5213

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5bd41a1
initiated migration
aryangupta701 Jan 13, 2024
588975d
update gradle files to import break addon
aryangupta701 Jan 13, 2024
d2a4b6d
update gradle files to import break addon
aryangupta701 Jan 13, 2024
2dbb0f9
update gradle files to import break addon
aryangupta701 Jan 13, 2024
ea4848c
update gradle files to import break addon
aryangupta701 Jan 13, 2024
b9f37b5
fix build issue
aryangupta701 Jan 14, 2024
b85bde3
fix build issue
aryangupta701 Jan 14, 2024
d60761b
spotless apply
aryangupta701 Jan 14, 2024
0806a0a
update gradle.kts for websocket and plugnhack
aryangupta701 Jan 15, 2024
c9ab78b
update gradle.kts for websocket and plugnhack
aryangupta701 Jan 15, 2024
d57128e
remove plugnhack and websocket changes
aryangupta701 Jan 15, 2024
9cdbb2c
spotless apply
aryangupta701 Jan 15, 2024
ce80232
spotless apply
aryangupta701 Jan 15, 2024
3278af7
update help
aryangupta701 Jan 15, 2024
33ee681
migrate Messages.properties
aryangupta701 Feb 14, 2024
9d892e6
Merge branch 'zaproxy:main' into break-migration
aryangupta701 Feb 14, 2024
a0c9113
spotless apply
aryangupta701 Feb 14, 2024
b0b0b05
update help
aryangupta701 Feb 14, 2024
afdc09c
update plugNHack to use Brk addon
aryangupta701 Feb 15, 2024
20d4e31
emptry commit
aryangupta701 Feb 15, 2024
6bd584f
update plugNHack to use Brk addon
aryangupta701 Feb 15, 2024
a8dcbf9
update plugNHack to use Brk addon
aryangupta701 Feb 15, 2024
04f3dbb
revert plugnhack changes
aryangupta701 Feb 27, 2024
55c4428
set break options handler in core
aryangupta701 Mar 23, 2024
6f516db
Update addOns/brk/CHANGELOG.md
aryangupta701 Mar 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions addOns/brk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog
All notable changes to this add-on will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

## [0.1.0] - 2024-01-14
aryangupta701 marked this conversation as resolved.
Show resolved Hide resolved
13 changes: 13 additions & 0 deletions addOns/brk/brk.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
description = "Allows you to add breakpoints"

zapAddOn {
addOnName.set("brk")
manifest {
author.set("ZAP Dev Team")
url.set("https://www.zaproxy.org/docs/desktop/addons/brk/")
}
}

dependencies {
testImplementation(project(":testutils"))
}
2 changes: 2 additions & 0 deletions addOns/brk/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version=0.1.0
release=false
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* Zed Attack Proxy (ZAP) and its related class files.
*
* ZAP is an HTTP/HTTPS proxy for assessing web application security.
*
* Copyright 2012 The ZAP Development Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.zaproxy.addon.brk;

public abstract class AbstractBreakPointMessage implements BreakpointMessageInterface {

private boolean isEnabled = true;

@Override
public void setEnabled(boolean enabled) {
this.isEnabled = enabled;
}

@Override
public boolean isEnabled() {
return isEnabled;
}
}
Loading
Loading