MCPcopy Create free account
hub / github.com/bit4woo/ReSign / getParaFromTable

Method getParaFromTable

src/burp/BurpExtender.java:734–749  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

732 }
733
734 public Map<String, String> getParaFromTable(){
735 Map<String, String> tableParas = new LinkedHashMap<String, String>();
736 for (int i=0; i<table.getRowCount();i++){
737 //System.out.println(table.getRowCount());
738 String key = table.getValueAt(i, 0).toString();
739 //System.out.println(key);
740 String value = table.getValueAt(i, 1).toString();
741 //System.out.println(value);
742
743 if (!key.equals(getSignPara())){
744 tableParas.put(key, value);
745 }
746 }
747 System.out.println(tableParas);
748 return tableParas;
749 }
750
751 public String getHost(IRequestInfo analyzeRequest){
752 List<String> headers = analyzeRequest.getHeaders();

Callers 2

actionPerformedMethod · 0.95

Calls 1

getSignParaMethod · 0.95

Tested by

no test coverage detected