Skip to content

Commit 1803a2d

Browse files
add description text area and remove some attributes
1 parent 70fad25 commit 1803a2d

File tree

3 files changed

+50
-14
lines changed

3 files changed

+50
-14
lines changed

jadx-gui/src/main/java/jadx/gui/taintdoc/TaintAnalysisFinding.java

+14-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ public class TaintAnalysisFinding {
1313
private MarkedLocation source;
1414
private MarkedLocation sink;
1515
private ArrayList<MarkedLocation> intermediateFlows;
16+
private String description;
17+
1618
private Map<String, Boolean> attributes;
17-
private final String creationDate;
1819

1920
public TaintAnalysisFinding(){
2021
intermediateFlows = new ArrayList<MarkedLocation>();
2122
attributes = new TreeMap<>();
22-
creationDate = new SimpleDateFormat(" (HH:mm:ss)").format(new Date());
2323
}
2424

2525
public void removeSource(){
@@ -65,6 +65,11 @@ public void setSink(MarkedLocation sink){
6565
this.sink = sink;
6666
}
6767

68+
public void setDescription(String description)
69+
{
70+
assert (this.description==null);
71+
this.description=description;
72+
}
6873
public void addIntermediateFlow(MarkedLocation intermediate){
6974
assert(!intermediateFlows.contains(intermediate));
7075
intermediateFlows.add(intermediate);
@@ -102,8 +107,8 @@ public void showAllHighlights(){
102107
@Override
103108
public String toString(){
104109
if(source == null)
105-
return "<no source>" + creationDate;
106-
return source.toString() + creationDate;
110+
return "<no source>";
111+
return source.toString();
107112
}
108113

109114
public void setAttribute(String key, boolean value){
@@ -113,4 +118,9 @@ public void setAttribute(String key, boolean value){
113118
public Map<String, Boolean> getAttributes(){
114119
return attributes;
115120
}
121+
122+
public String getDescription()
123+
{
124+
return this.description;
125+
}
116126
}

jadx-gui/src/main/java/jadx/gui/taintdoc/TaintAnalysisReport.java

+9-10
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
public class TaintAnalysisReport {
2727
private static transient TaintAnalysisReport instance;
2828
private String fileName;
29-
private String day;
3029
private ArrayList<TaintAnalysisFinding> findings;
3130
private transient TaintAnalysisFinding currentFinding;
3231
private transient int currentFindingIndex;
@@ -44,7 +43,6 @@ private TaintAnalysisReport(){
4443
sinkColor = new Color(0x1b, 0x89, 0x7f);
4544
intermediateColor = new Color(0xe4, 0xd9, 0x73);
4645
currentFindingIndex = -1;
47-
day = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));
4846
reportDialog = new ReportDialog();
4947
reportDialog.setVisible(true);
5048
}
@@ -60,22 +58,14 @@ private static HashMap<String, String> createFindingAttributesJsonKeyToDisplayNa
6058
HashMap<String, String> result = new HashMap<>();
6159
result.put("intraProcedural", "Intra-procedural");
6260
result.put("interProcedural", "Inter-procedural");
63-
result.put("fieldSensitive", "Field-sensitive");
64-
result.put("flowSensitive", "Flow-sensitive");
65-
result.put("contextSensitive", "Context-sensitive");
66-
result.put("objectSensitive", "Object-sensitive");
67-
result.put("pathSensitive", "Path-sensitive");
6861
result.put("staticField", "Static Field");
6962
result.put("array", "Array");
7063
result.put("reflection", "Reflection");
7164
result.put("exception", "Exception");
72-
result.put("implicitflows", "Implicit Flows");
7365
result.put("threading", "Threading");
74-
result.put("lifecycle", "Lifecycle");
7566
result.put("callbacks", "Callbacks");
7667
result.put("interComponentCommunication", "Inter-Component Communication");
7768
result.put("interAppCommunication", "Inter-App Communication");
78-
result.put("emulatorDetection", "Emulator Detection");
7969
result.put("collections", "Collections");
8070
result.put("partialFlow", "Partial Flow");
8171
return result;
@@ -167,13 +157,15 @@ public void selectCurrentFinding(int index, boolean updateReportDialog){
167157
reportDialog.updateMarkedIntermediates(currentFinding.getIntermediateFlows());
168158
reportDialog.updateMarkedSink(currentFinding.getSink());
169159
reportDialog.updateAttributes(currentFinding.getAttributes());
160+
reportDialog.updateDescription(currentFinding.getDescription());
170161
}
171162
else{
172163
reportDialog.updateFindings(findings);
173164
reportDialog.updateMarkedSource(null);
174165
reportDialog.updateMarkedIntermediates(null);
175166
reportDialog.updateMarkedSink(null);
176167
reportDialog.updateAttributes(null);
168+
reportDialog.updateDescription(null);
177169
}
178170
}
179171

@@ -186,6 +178,9 @@ public void previousFinding(boolean updateReportDialog){
186178
}
187179

188180
public void createAndSwitchToNewFinding(){
181+
String description= this.reportDialog.getDescription();
182+
if(currentFinding!=null)
183+
currentFinding.setDescription(description);
189184
TaintAnalysisFinding finding = new TaintAnalysisFinding();
190185
currentFindingIndex = findings.size();
191186
findings.add(findings.size(), finding);
@@ -216,6 +211,9 @@ public void setFileName(String filename){
216211
}
217212

218213
public void serializeToJson(){
214+
String description= this.reportDialog.getDescription();
215+
if(currentFinding!=null)
216+
currentFinding.setDescription(description);
219217
String json = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting().create().toJson(this);
220218
JFileChooser fileChooser = new JFileChooser();
221219
fileChooser.setAcceptAllFileFilterUsed(false);
@@ -303,4 +301,5 @@ public void setAttributeOfCurrent(String key, boolean value){
303301
if(currentFinding != null)
304302
currentFinding.setAttribute(key, value);
305303
}
304+
306305
}

jadx-gui/src/main/java/jadx/gui/ui/ReportDialog.java

+27
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public class ReportDialog extends JDialog {
1818
private final DefaultListModel<String> intermediatesListModel;
1919
private Map<String, JCheckBox> findingAttributesCheckboxMap;
2020
private Map<JCheckBox, String> findingCheckboxAttributesMap;
21+
private final JTextArea description;
2122

2223
public ReportDialog(){
2324
findingComboBox = new JComboBox<>();
@@ -27,6 +28,7 @@ public ReportDialog(){
2728
intermediatesListModel = new DefaultListModel<>();
2829
findingAttributesCheckboxMap = new TreeMap<>();
2930
findingCheckboxAttributesMap = new HashMap<>();
31+
description = new JTextArea();
3032
initCheckboxMap();
3133
initUI();
3234
}
@@ -107,6 +109,13 @@ public void mouseClicked(MouseEvent e) {
107109
markedSinkText.setPreferredSize(new Dimension(480, 20));
108110
markedSinkText.setEditable(false);
109111
markedSinkText.setFocusable(false);
112+
description.setEditable(true);
113+
description.setLineWrap(true);
114+
description.setWrapStyleWord(true);
115+
JScrollPane areaScrollPane = new JScrollPane(description);
116+
areaScrollPane.setVerticalScrollBarPolicy(
117+
JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
118+
areaScrollPane.setPreferredSize(new Dimension(480, 80));
110119

111120
JScrollPane listScroller = new JScrollPane(markedIntermediatesList);
112121
listScroller.setPreferredSize(new Dimension(480, 420));
@@ -124,6 +133,8 @@ public void mouseClicked(MouseEvent e) {
124133
centerPanel.add(new JLabel("Intermediates: "), constraints);
125134
constraints.gridy = 3;
126135
centerPanel.add(new JLabel("Sink: "), constraints);
136+
constraints.gridy = 4;
137+
centerPanel.add(new JLabel("Description: "),constraints);
127138

128139
constraints.gridx = 1;
129140
constraints.gridy = 0;
@@ -134,6 +145,8 @@ public void mouseClicked(MouseEvent e) {
134145
centerPanel.add(listScroller, constraints);
135146
constraints.gridy = 3;
136147
centerPanel.add(markedSinkText, constraints);
148+
constraints.gridy=4;
149+
centerPanel.add(areaScrollPane,constraints);
137150

138151
constraints.gridy = 0;
139152
constraints.gridx = 2;
@@ -185,6 +198,15 @@ public void updateMarkedSink(MarkedLocation sink){
185198
markedSinkText.setCaretPosition(0);
186199
}
187200

201+
public void updateDescription(String des)
202+
{
203+
if(description!=null)
204+
description.setText(des);
205+
else
206+
description.setText("");
207+
description.setCaretPosition(0);
208+
}
209+
188210
public void selectCurrentFinding(int index){
189211
findingComboBox.setSelectedIndex(index);
190212
}
@@ -201,4 +223,9 @@ public void updateAttributes(Map<String, Boolean> attributes){
201223
findingAttributesCheckboxMap.get(key).setSelected(false);
202224
}
203225
}
226+
227+
public String getDescription()
228+
{
229+
return this.description.getText();
230+
}
204231
}

0 commit comments

Comments
 (0)