org.owasp.jbrofuzz3.message.FuzzRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbrofuzz Show documentation
Show all versions of jbrofuzz Show documentation
JBroFuzz is a stateless web application fuzzer for requests
being made over HTTP and/or HTTPS. Its purpose is to provide a single,
portable application that offers stable web protocol fuzzing capabilities.
As a tool, it emerged from the needs of penetration testing.
package org.owasp.jbrofuzz3.message;
import java.util.ArrayList;
import org.owasp.jbrofuzz.core.Fuzzer;
public class FuzzRequest extends Request {
public FuzzRequest(String message) {
super(message);
}
public FuzzRequest(String message, ArrayList fuzzPoints) {
super(message);
}
public String getRequest(FuzzList playList) {
return " ";
}
}