You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,10 @@ This tool was designed to be used for host name enumeration via SSL certificates
10
10
Usage of ./certgraph: [OPTION]... HOST...
11
11
-depth uint
12
12
maximum BFS depth to go (default 20)
13
+
-json
14
+
print the graph as json
15
+
-list
16
+
only print the domains found and not the entire graph
13
17
-parallel uint
14
18
number of certificates to retrieve in parallel (default 10)
15
19
-port uint
@@ -46,3 +50,19 @@ max-dev-www.eff.org 3 Good AC3933B1B95BA5254F43ADBE5E3E38E539C74456
46
50
```
47
51
The above output represents the adjacency list for the graph for the root domain `eff.org`. The adjacency list is in the form:
48
52
`Node Depth Status Cert-Fingerprint [Edge1 Edge2 ... EdgeN]`
53
+
54
+
55
+
## [Web UI](https://lanrat.github.io/certgraph/)
56
+
57
+
A web UI is provided in the docs folder and is accessable at the github pages url [https://lanrat.github.io/certgraph/](https://lanrat.github.io/certgraph/).
58
+
59
+
The web UI takes the putput provided with teh `-json` flag.
60
+
The JSON graph can be sent to the web interface as an uploaded file, remote URL, or as the query string using the data variable.
0 commit comments