You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import ProPlanNotice from '@site/src/components/ProPlanNotice.mdx';
9
+
10
+
<ProPlanNotice />
11
+
```
12
+
13
+
[Brakeman](https://brakemanscanner.org/) is a static analysis tool which checks Ruby on Rails applications for security vulnerabilities. It scans your application's code for potential security issues and provides detailed reports about any vulnerabilities it finds.
14
+
15
+
## Supported Files
16
+
17
+
Brakeman will run on files with the following extensions:
18
+
19
+
-`Gemfile`
20
+
-`*.rb`
21
+
-`*.erb`
22
+
23
+
## Features
24
+
25
+
Brakeman can detect many critical vulnerabilities such as:
26
+
27
+
- SQL injection
28
+
- Cross-site scripting (XSS)
29
+
- Mass assignment
30
+
- Remote code execution
31
+
- And many more security vulnerabilities
32
+
- Out of date package versions
33
+
- Etc
34
+
35
+
## Links
36
+
37
+
-[Brakeman Official Website](https://brakemanscanner.org/)
import ProPlanNotice from '@site/src/components/ProPlanNotice.mdx';
9
+
10
+
<ProPlanNotice />
11
+
```
12
+
13
+
[Clippy](https://github.com/rust-lang/rust-clippy) is a collection of lints to catch common mistakes and improve your Rust code. It is the official linter for the Rust programming language.
14
+
15
+
## Supported Files
16
+
17
+
Clippy will run on files with the following extensions:
18
+
19
+
-`*.rs`
20
+
21
+
## Configuration
22
+
23
+
Clippy supports the following configuration files:
24
+
25
+
-`clippy.toml`
26
+
-`.clippy.toml`
27
+
28
+
:::note
29
+
30
+
Clippy does not require configuration to run. If no configuration file is found, it will use default settings.
31
+
32
+
A Cargo.toml is required.
33
+
34
+
:::
35
+
36
+
## Features
37
+
38
+
Clippy can detect many code quality issues such as:
0 commit comments