Tabnine Logo
TriggerParamGuesser
Code IndexAdd Tabnine to your IDE (free)

How to use
TriggerParamGuesser
in
burp

Best Java code snippets using burp.TriggerParamGuesser (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

Most used methods

  • <init>

Popular in Java

  • Reactive rest calls using spring rest template
  • getSystemService (Context)
  • getSharedPreferences (Context)
  • getResourceAsStream (ClassLoader)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • JTextField (javax.swing)
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top Sublime Text 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