Tabnine Logo
TriggerParamGuesser.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
burp.TriggerParamGuesser
constructor

Best Java code snippets using burp.TriggerParamGuesser.<init> (Showing top 2 results out of 315)

origin: PortSwigger/param-miner

probeButton.addActionListener(new TriggerParamGuesser(reqs, false, IParameter.PARAM_URL, paramGrabber, taskEngine));
options.add(probeButton);
cookieProbeButton.addActionListener(new TriggerParamGuesser(reqs, false, IParameter.PARAM_COOKIE, paramGrabber, taskEngine));
options.add(cookieProbeButton);
headerProbeButton.addActionListener(new TriggerParamGuesser(reqs, false, Utilities.PARAM_HEADER, paramGrabber, taskEngine));
options.add(headerProbeButton);
  if (Utilities.countMatches(resp, Utilities.helpers.stringToBytes("%253c%2561%2560%2527%2522%2524%257b%257b%255c")) > 0) {
    JMenuItem backendProbeButton = new JMenuItem("*Identify backend parameters*");
    backendProbeButton.addActionListener(new TriggerParamGuesser(reqs, true, IParameter.PARAM_URL, paramGrabber, taskEngine));
    options.add(backendProbeButton);
      postProbeButton.addActionListener(new TriggerParamGuesser(reqs, false, type, paramGrabber, taskEngine));
      options.add(postProbeButton);
origin: PortSwigger/backslash-powered-scanner

  @Override
  public List<JMenuItem> createMenuItems(IContextMenuInvocation invocation) {
    List<JMenuItem> options = new ArrayList<>();
    if (invocation == null || invocation.getSelectedMessages() == null || invocation.getSelectedMessages().length == 0) {
      return options;
    }
    IHttpRequestResponse req = invocation.getSelectedMessages()[0];
    byte[] resp = req.getRequest();
    if (resp == null) {
      return options;
    }
    if (Utilities.countMatches(resp, Utilities.helpers.stringToBytes("%253c%2561%2560%2527%2522%2524%257b%257b%255c")) > 0) {
      JMenuItem probeButton = new JMenuItem("*Identify backend parameters*");
      probeButton.addActionListener(new TriggerParamGuesser(req));
      options.add(probeButton);
    }
    return options;
  }
}
burpTriggerParamGuesser<init>

Popular methods of TriggerParamGuesser

    Popular in Java

    • Reactive rest calls using spring rest template
    • findViewById (Activity)
    • getContentResolver (Context)
    • getApplicationContext (Context)
    • Component (java.awt)
      A component is an object having a graphical representation that can be displayed on the screen and t
    • Rectangle (java.awt)
      A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
    • FileInputStream (java.io)
      An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
    • TimerTask (java.util)
      The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
    • JCheckBox (javax.swing)
    • Response (javax.ws.rs.core)
      Defines the contract between a returned instance and the runtime when an application needs to provid
    • Top PhpStorm plugins
    Tabnine Logo
    • Products

      Search for Java codeSearch for JavaScript code
    • IDE Plugins

      IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Tabnine for your IDE now