(ActionEvent arg0)
| 57 | menuRepeater = new JMenuItem("Send to Repeater"); |
| 58 | menuRepeater.addActionListener(new ActionListener(){ |
| 59 | public void actionPerformed(ActionEvent arg0) { |
| 60 | // BurpExtender.helpers. |
| 61 | IRequestInfo requestInfo = BurpExtender.helpers.analyzeRequest(hackvertorInput.getText().getBytes()); |
| 62 | BurpExtender.stdout.println(requestInfo); |
| 63 | // c_sendToRepeater(ihttpreqresp); |
| 64 | try { |
| 65 | c_sendToRepeater(requestInfo, hackvertorInput.getText().getBytes()); |
| 66 | }catch (Exception e){ |
| 67 | BurpExtender.stdout.println(e.getMessage()); |
| 68 | } |
| 69 | // BurpExtender.stdout.println(hackvertorInput.getText()); |
| 70 | |
| 71 | } |
| 72 | }); |
| 73 | menu.add(menuRepeater); |
| 74 |
nothing calls this directly
no test coverage detected