Package org.owasp.jbrofuzz.core

Examples of org.owasp.jbrofuzz.core.Database


   * @param point1
   * @param point2
   */
  public void addFuzzer(final String fuzzerId, String[] encoders, final int point1, final int point2) {

    final Database cDatabase = getFrame().getJBroFuzz().getDatabase();

    if(cDatabase.containsPrototype(fuzzerId)) {

      final String type = cDatabase.getType(fuzzerId);

      mFuzzTableModel.addRow(
          fuzzerId, 
          type, 
          fuzzerId, 
View Full Code Here


            "The file selected is not a valid .jbrf file",
            " JBroFuzz - Open ", JOptionPane.WARNING_MESSAGE);
        return;
      }

      final Database updateDB = new Database(path);
      mWindow.getJBroFuzz().setDatabase(updateDB);
      mWindow.getPanelPayloads().updateFuzzers();
     
      // Finally save as a preference the directory location
      final String parentDir = file.getParent();
View Full Code Here

   * should not be altered.
   * </p>
   */
  public JBroFuzz() {

    mDatabase = new Database();
    mHandler = new FileHandler();

    mFormat = new JBroFuzzFormat();
    mWindow = new JBroFuzzWindow(this);
    // JBroFuzzWindow.createAndShowGUI(mWindow);
View Full Code Here

TOP

Related Classes of org.owasp.jbrofuzz.core.Database

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.