Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
first add for vulns
Browse files Browse the repository at this point in the history
  • Loading branch information
fadepetun committed Dec 5, 2023
1 parent bbe67c8 commit b1feb48
Show file tree
Hide file tree
Showing 576 changed files with 34,464 additions and 21 deletions.
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 120
tab_width = 4

[{*.bash,*.sh,*.zsh}]
indent_size = 2
tab_width = 2

[{*.yaml,*.yml}]
indent_size = 2
18 changes: 18 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
env: {
jest: true,
'cypress/globals': true,
browser: true,
commonjs: true,
es2021: true
},
extends: 'standard',
overrides: [
],
parserOptions: {
ecmaVersion: 'latest'
},
rules: {
},
plugins: ['cypress']
}
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
custom: ["https://owasp.org/donate/?reponame=www-project-wrongsecrets&title=OWASP+wrongsecrets", "https://www.icrc.org/en/donate/ukraine"]
github: OWASP
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/01_bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: 🐜 Bug report
about: If something isn't working 🔧
labels: bug
---

<!-- Note: not all sections may be necessary. Strip out what you don't need. -->

### Please describe your environment

At least:

- Operating System + version (and distro if linux):
- Software versions (Java, Terraform, etc)

### What is the expected behavior?

### What is the actual behavior?

### Please provide a reproducible path or test that demonstrates the bug.

### Other notes on how to reproduce the issue

### Please provide relevant logs

### Any possible solutions?

### If the bug is confirmed, would you be willing to submit a PR?

Yes / No _(Help can be provided if you need assistance submitting a PR)_
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/02_feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: 🚀 Feature request
about: If you have a feature request 💡
---

### Context

What are you trying to do and how would you want to do it differently? Is it something you currently you cannot do? Is this related to an issue/problem? Do you want support for a new platform?

### Alternatives

Can you achieve the same result doing it in an alternative way? Is the alternative considerable?

### Has the feature been requested before?

Please provide a link to the issue.

### If the feature request is approved, would you be willing to submit a PR?

Yes / No _(Help can be provided if you need assistance submitting a PR)_
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/03_challenge_idea.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: 🧩 Challenge idea
about: If you have a challenge idea 💡
labels: "New Challenge"
---

### Context

- What should the challenge scenario be like?
- What should the participant learn from completing the challenge?
- For what category would the challenge be? (e.g. Docker, K8s, binary)

### Did you encounter this in real life? Could you tell us more about the scenario?

**Don't break any NDAs 🙃**

### If the challenge request is approved, would you be willing to submit a PR?

Yes / No _(Help can be provided if you need assistance submitting a PR)_
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: OWASP Slack registration
url: https://owasp.org/slack/invite
about: Sign up for OWASP slack to contact us there
- name: WrongSecrets Slack Channel
url: https://owasp.slack.com/archives/C02KQ7D9XHR
about: Please ask questions here. Please also report security vulnerabilities here (`#project-wrongsecrets`). 🏥
50 changes: 50 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

# check our pom.xml
- package-ecosystem: "maven"
directory: "/"
open-pull-requests-limit: 10
schedule:
interval: "monthly"

# check our docker
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "monthly"

# check our npm in project
- package-ecosystem: "npm"
directory: "/js"
schedule:
interval: "monthly"

# check our npm for dev
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"

# Check our tf -aws
- package-ecosystem: "terraform"
directory: "/aws"
schedule:
interval: "monthly"

# Check our tf -azure
- package-ecosystem: "terraform"
directory: "/azure"
schedule:
interval: "monthly"

# Check our tf -gcp
- package-ecosystem: "terraform"
directory: "/gcp"
schedule:
interval: "monthly"
Loading

0 comments on commit b1feb48

Please sign in to comment.