org.owasp.jbrofuzz.fuzz.ui.FuzzerRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbrofuzz-encoder Show documentation
Show all versions of jbrofuzz-encoder 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.
/**
* JbroFuzz 2.5
*
* JBroFuzz - A stateless network protocol fuzzer for web applications.
*
* Copyright (C) 2007 - 2010 [email protected]
*
* This file is part of JBroFuzz.
*
* JBroFuzz is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JBroFuzz is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with JBroFuzz. If not, see .
* Alternatively, write to the Free Software Foundation, Inc., 51
* Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Verbatim copying and distribution of this entire program file is
* permitted in any medium without royalty provided this notice
* is preserved.
*
*/
package org.owasp.jbrofuzz.fuzz.ui;
/**
* Class for representing individual row data types
* of the fuzzer table on the right hand side of the
* Fuzzing panel.
*
* @author [email protected]
* @version 2.0
* @since 1.8
*/
class FuzzerRow {
// The fuzzer name, e.g. LDAP Injection
private String name;
// The fuzzer id, e.g. LDP-INJ
private String id;
// The fuzzer entry start point
private int start;
// The fuzzer end point
private int end;
/**
* The main constructor for each Fuzzer Row.
*
* @param id The fuzzer id e.g. LDP-INJ
* @param start The fuzzer start point
* @param end The fuzzer end point
*/
protected FuzzerRow(String id,int start, int end) {
this.id = id;
this.start = start;
this.end = end;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the start
*/
public int getStartPoint() {
return start;
}
/**
* @param start the start to set
*/
public void setStartPoint(int start) {
this.start = start;
}
/**
* @return the end
*/
public int getEndPoint() {
return end;
}
/**
* @param end the end to set
*/
public void setEndPoint(int end) {
this.end = end;
}
}