Skip to content

Commit 8aeabe9

Browse files
authored
Merge pull request #116 from joernio/gabe/integrate-typos
Tidy up `/integrate`
2 parents aa22a68 + 6a9888c commit 8aeabe9

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

docs.joern.io/content/installation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ weight: 20
1212

1313
Pre-built binaries of the joern-cli are available at:
1414

15-
https://github.com/ShiftLeftSecurity/joern/releases/
15+
https://github.com/joernio/joern/releases/
1616

1717
To install the latest release, simply execute the following
1818

@@ -109,3 +109,4 @@ joern> importCpg("linux-full.odb")
109109
...
110110
res1: Option[Cpg] = Some(value = Cpg (Graph [47542978 nodes]))
111111
```
112+

main/content/automate.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ url: "automate"
88
## Get Joern
99

1010
{{< highlight html >}}
11-
$ curl -L https://github.com/ShiftLeftSecurity/joern/releases/latest/download/joern-install.sh | sudo bash
11+
$ curl -L https://github.com/joernio/joern/releases/latest/download/joern-install.sh | sudo bash
1212
{{< /highlight >}}
1313

1414
## Run ```joern-scan```
@@ -71,4 +71,5 @@ To bundle up this query and add it to our C Scanner, we add some bells and whist
7171
)
7272
{{< /highlight >}}
7373

74-
There are many such scanners for common as well as precise cases modelled as bundles of Joern queries. They all are part of the automated ```joern-scan```
74+
There are many such scanners for common as well as precise cases modelled as bundles of Joern queries. They all are part of the automated ```joern-scan```
75+

main/content/integrate.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ title: "Integrate Joern in your project. REST APIs are there for you 🤝"
33
layout: "blog"
44
url: "integrate"
55
---
6-
So you have your own DIY code anlaysis tool with a swanky UI, but you also fell in love with Joern? We understand that!
6+
So, you have your own DIY code analysis tool with a swanky UI, but you also fell in love with Joern? We understand that!
77

88
## Get Joern
99
{{< highlight html >}}
10-
$ curl -L https://github.com/ShiftLeftSecurity/joern/releases/latest/download/joern-install.sh | sudo bash
10+
$ curl -L https://github.com/joernio/joern/releases/latest/download/joern-install.sh | sudo bash
1111
{{< /highlight >}}
1212

13-
## Start Joern Server
13+
## Start the Joern Server
1414
{{< highlight html >}}
1515
$ joern --server
1616
{{< /highlight >}}
17-
Yep, its that esay!
17+
Yep! It's that easy!
1818

19-
## Integrate queries in your code
19+
## Integrate queries into your code
2020

21-
Lets get the python CPG Query Language client library so we can test some integrations with Python. Don't worry, we jave a JS integration also for your glorious hipster JS UIs!
21+
Let's get the Python CPG Query Language client library so we can test some integrations with Python. Don't worry. We also have a JavaScript integration for your gloriously hipster JS UI!
2222
{{< highlight html >}}
2323
$ pip install cpgqls-client
2424
{{< /highlight >}}
@@ -33,10 +33,11 @@ query = import_code_query("/home/suchakra/Projects/test.jar", "test-app")
3333
result = client.execute(query)
3434
print(result['stdout'])
3535

36-
# execute a simple CPGQuery to list all methods in the code
36+
# execute a simple CPG query to list all methods in the code
3737
query = "cpg.method.name.l"
3838
result = client.execute(query)
3939
print(result)
4040
{{< /highlight >}}
4141

42-
Thats it! For additional info, go look at some [docs](https://docs.joern.io/server/) or get a closer look at the Python client library [here](https://github.com/joernio/cpgqls-client-python) 👈
42+
That's it! For additional information, check out the [Server documentation](https://docs.joern.io/server/) or get a closer look at the [Python client library](https://github.com/joernio/cpgqls-client-python) 👈
43+

main/content/query.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ url: "query"
88

99
## Get Joern
1010
{{< highlight html >}}
11-
$ curl -L https://github.com/ShiftLeftSecurity/joern/releases/latest/download/joern-install.sh | sudo bash
11+
$ curl -L https://github.com/joernio/joern/releases/latest/download/joern-install.sh | sudo bash
1212
{{< /highlight >}}
1313

1414
## Fire up Joern Shell 🔥
@@ -91,4 +91,5 @@ Nice! We found the call site. We can now try to find where its located in code
9191
joern>
9292
{{< /highlight >}}
9393

94-
For more queries, head over to https://queries.joern.io
94+
For more queries, head over to https://queries.joern.io
95+

0 commit comments

Comments
 (0)