77const scannerRepos = [
88 {
99 name : 'Amass' ,
10- url : 'https://github.com/secureCodeBox/scanner-infrastructure- amass' ,
10+ directory : 'scanners/ amass'
1111 } ,
1212 {
13- name : 'Arachni ' ,
14- url : 'https://github.com/secureCodeBox/scanner-webapplication-arachni' ,
13+ name : 'kube-hunter ' ,
14+ directory : 'scanners/kube-hunter'
1515 } ,
1616 {
1717 name : 'Nikto' ,
18- url : 'https://github.com/secureCodeBox/scanner-webserver- nikto' ,
18+ directory : 'scanners/ nikto'
1919 } ,
2020 {
2121 name : 'Nmap' ,
22- url : 'https://github.com/secureCodeBox/scanner-infrastructure- nmap' ,
22+ directory : 'scanners/ nmap'
2323 } ,
2424 {
2525 name : 'SSH' ,
26- url : 'https://github.com/secureCodeBox/scanner-infrastructure-ssh' ,
26+ directory : 'scanners/ssh_scan'
2727 } ,
2828 {
2929 name : 'SSLyze' ,
30- url : 'https://github.com/secureCodeBox/scanner-infrastructure- sslyze' ,
30+ directory : 'scanners/ sslyze'
3131 } ,
3232 {
33- name : 'Zap ' ,
34- url : 'https://github.com/secureCodeBox/scanner-webapplication-zap' ,
33+ name : 'Trivy ' ,
34+ directory : 'scanners/trivy'
3535 } ,
3636 {
3737 name : 'WPScan' ,
38- url : 'https://github.com/secureCodeBox/scanner-cms- wpscan' ,
38+ directory : 'scanners/ wpscan'
3939 } ,
4040 {
41- name : 'Ncrack ' ,
42- url : 'https://github.com/secureCodeBox/scanner-infrastructure-ncrack' ,
43- } ,
41+ name : 'ZAP ' ,
42+ directory : 'scanners/zap'
43+ }
4444] ;
4545
4646module . exports = {
@@ -59,14 +59,14 @@ module.exports = {
5959 name : 'Get Started' ,
6060 external : true ,
6161 // link: '/getStarted',
62- link : 'https://github.com/secureCodeBox/secureCodeBox' ,
62+ link : 'https://github.com/secureCodeBox/secureCodeBox-v2-alpha ' ,
6363 } ,
6464 {
6565 name : 'Docs' ,
6666 external : true ,
6767 // link: '/docs',
6868 link :
69- 'https://github.com/secureCodeBox/secureCodeBox/tree /master/docs/index.md' ,
69+ 'https://github.com/secureCodeBox/secureCodeBox-v2-alpha/blob /master/docs/index.md' ,
7070 } ,
7171 {
7272 name : 'Integrations' ,
@@ -133,14 +133,14 @@ module.exports = {
133133 name : 'images' ,
134134 } ,
135135 } ,
136- ...scannerRepos . map ( ( { name, url } ) => {
136+ ...scannerRepos . map ( ( { name, directory } ) => {
137137 return {
138138 resolve : `gatsby-source-git` ,
139139 options : {
140140 name : name ,
141- remote : url ,
141+ remote : `https://github.com/secureCodeBox/secureCodeBox-v2-alpha` ,
142142 branch : `master` ,
143- patterns : `README.md` ,
143+ patterns : `${ directory } / README.md` ,
144144 } ,
145145 } ;
146146 } ) ,
0 commit comments