Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Prabhu Subramanian committed Jan 25, 2023
1 parent 07421b7 commit efc0108
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/shiftleft-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow integrates Scan with GitHub's code scanning feature
# Scan is a free open-source security tool for modern DevOps teams
# Visit https://appthreat.io/en/latest/integrations/github-actions/ for help
# Visit https://appthreat.com/en/latest/integrations/github-actions/ for help
name: Scan

# This section configures the trigger for the workflow. Feel free to customize depending on your convention
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Introduction

Visit [https://appthreat.io](https://appthreat.io) to access the latest Scan documentation.
Visit [https://appthreat.com](https://appthreat.com) to access the latest Scan documentation.
3 changes: 0 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

![scan-logo](images/scan-light.png)

!!! WARNING
Scan is now in maintenance mode. If you've just come across this project, then probably best to look at any alternatives. Read more [here](https://github.com/ShiftLeftSecurity/sast-scan/issues/352).

Scan (skæn) is an [open-source](https://github.com/ShiftLeftSecurity/sast-scan) security audit tool for modern DevOps teams. With an integrated multi-scanner based design, Scan can detect various kinds of security flaws in your application and infrastructure code in a single fast scan without the need for any _remote server_. The kind of flaws detected are:

* [x] Credentials Scanning to detect accidental secret leaks
Expand Down
2 changes: 1 addition & 1 deletion docs/secure-development/go.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ import (
"net/http"
)

var url string = "https://www.appthreat.io"
var url string = "https://www.appthreat.com"

func main() {

Expand Down
4 changes: 2 additions & 2 deletions docs/secure-development/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ Although the title of this guideline calls out HTTPS, verifying the identity of

```python
import requests
requests.get('https://www.appthreat.io/', verify=False)
requests.get('https://www.appthreat.com/', verify=False)
```

The example above uses `verify=False` to bypass the check of the certificate received against those in the CA trust store.
Expand All @@ -334,7 +334,7 @@ It is important to note that modules such as httplib within the Python standard

```python
import requests
requests.get('https://www.appthreat.io/', verify=CONF.ca_file)
requests.get('https://www.appthreat.com/', verify=CONF.ca_file)
```

The example above uses the variable CONF.ca_file to store the location of the CA trust store, which is used to confirm that the certificate received is from a trusted authority.
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
site_name: AppThreat docs
site_url: https://appthreat.io/en/latest/
site_url: https://appthreat.com/en/latest/
site_author: Team AppThreat
site_description: >-
AppThreat is a free open-source security audit tool for modern DevOps teams. With an integrated multi-scanner based design, Scan can detect various kinds of security flaws in your application and infrastructure code in a single fast scan without the need for any remote server! The product supports a range of integration options: from scanning every push via a git hook to scanning every build and pull-request in the CI/CD pipelines.
Expand Down

0 comments on commit efc0108

Please sign in to comment.