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

Bump net.portswigger.burp.extensions:montoya-api from 2023.9 to 2023.12.1 #113

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<dependency>
<groupId>net.portswigger.burp.extensions</groupId>
<artifactId>montoya-api</artifactId>
<version>2023.9</version>
<version>2023.12.1</version>
</dependency>

<dependency>
Expand Down
25 changes: 25 additions & 0 deletions src/main/java/burp/objects/CstcByteArray.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package burp.objects;

import java.util.Iterator;
import java.util.regex.Pattern;

import burp.api.montoya.core.ByteArray;
import burp.api.montoya.core.Range;
Expand Down Expand Up @@ -207,4 +208,28 @@ public ByteArray withAppended(ByteArray byteArray) {
throw new UnsupportedOperationException("Unimplemented method 'withAppended'");
}

@Override
public int indexOf(Pattern pattern) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'indexOf'");
}

@Override
public int indexOf(Pattern pattern, int startIndexInclusive, int endIndexExclusive) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'indexOf'");
}

@Override
public int countMatches(Pattern pattern) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'countMatches'");
}

@Override
public int countMatches(Pattern pattern, int startIndexInclusive, int endIndexExclusive) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'countMatches'");
}

}
Loading