Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
ab1c727
Add tests
dariusf Nov 22, 2019
073d21c
Update README
RepoScanAutomation Oct 15, 2024
b13730f
Update README
RepoScanAutomation Oct 15, 2024
70a39d8
Update README
RepoScanAutomation Oct 18, 2024
091764a
Update README
RepoScanAutomation Oct 27, 2024
9256073
Update README
RepoScanAutomation Oct 27, 2024
a90914c
Update README
RepoScanAutomation Oct 27, 2024
e34818b
Update README
RepoScanAutomation Oct 27, 2024
d11ece3
Update README
RepoScanAutomation Oct 27, 2024
80c72e0
Update README
RepoScanAutomation Oct 27, 2024
a801dda
Update README
RepoScanAutomation Oct 27, 2024
678a1e0
Update README
RepoScanAutomation Oct 27, 2024
aeaa166
Update README
RepoScanAutomation Oct 27, 2024
66df53f
Update README
RepoScanAutomation Oct 27, 2024
32a418b
Update README
RepoScanAutomation Oct 27, 2024
f3ea152
Update README
RepoScanAutomation Oct 27, 2024
17f53b6
Update README
RepoScanAutomation Oct 27, 2024
be52e8b
Update README
RepoScanAutomation Oct 27, 2024
dbfce4a
Update README
RepoScanAutomation Oct 27, 2024
15beb4c
Update README
RepoScanAutomation Oct 27, 2024
193a84a
Update README
RepoScanAutomation Oct 27, 2024
16948d7
Update README
RepoScanAutomation Oct 27, 2024
b58cdf8
Update README
RepoScanAutomation Oct 27, 2024
cde69b7
Update README
RepoScanAutomation Oct 27, 2024
dabfca6
Update README
RepoScanAutomation Oct 27, 2024
5e48813
Update README
RepoScanAutomation Oct 27, 2024
129aea3
Update README
RepoScanAutomation Oct 27, 2024
4b7988a
Update README
RepoScanAutomation Oct 27, 2024
50c6b47
Update README
RepoScanAutomation Oct 27, 2024
9cd7116
Update README
RepoScanAutomation Oct 27, 2024
e1ec6c8
Update README
RepoScanAutomation Oct 27, 2024
7fd005a
Update README
RepoScanAutomation Oct 27, 2024
87c6995
Update README
RepoScanAutomation Oct 27, 2024
331af7d
Update README
RepoScanAutomation Oct 27, 2024
372edf0
Update README
RepoScanAutomation Oct 27, 2024
f1a967f
Update README
RepoScanAutomation Oct 27, 2024
cbc0cb4
Update README
RepoScanAutomation Oct 28, 2024
d9db036
Update README
RepoScanAutomation Oct 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1 @@
# [:] Example Node Project

An example node project to demonstrate [srcclr](https://www.srcclr.com) scans.

## Try me!

```
brew tap srcclr/srcclr
brew install srcclr
srcclr activate
srcclr scan --url https://github.com/srcclr/example-javascript
```
Updated README Content
14 changes: 13 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
console.log('hello world');

function vulnerable() {
console.log('do something dubious');
return 1;
}

function utility() {
return vulnerable();
}

module.exports = {
utility
};
Loading