-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #631 from crowdsecurity/add_how_to_be_fp_doc
CTI/FAQ: Add documentation on how being tagged as False Positive
- Loading branch information
Showing
4 changed files
with
92 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,11 @@ title: False Positives | |
sidebar_position: 7 | ||
--- | ||
|
||
import TableRender from '@site/src/components/tableRender'; | ||
import GithubIconRender from '@site/src/components/githubIconRender'; | ||
import TableRender from "@site/src/components/tableRender" | ||
import GithubIconRender from "@site/src/components/githubIconRender" | ||
|
||
export const fpURL = "https://hub-cdn.crowdsec.net/master/taxonomy/false_positives.json"; | ||
export const fpURL = | ||
"https://hub-cdn.crowdsec.net/master/taxonomy/false_positives.json" | ||
export const columns = [ | ||
{ | ||
header: "Name", | ||
|
@@ -17,10 +18,33 @@ export const columns = [ | |
header: "Description", | ||
accessorKey: "description", | ||
}, | ||
]; | ||
] | ||
|
||
<GithubIconRender url={fpURL}></GithubIconRender> | ||
|
||
|
||
<TableRender columns={columns} url={fpURL}></TableRender> | ||
|
||
## How to Get Tagged as a False Positive | ||
|
||
To be able to be classified as a false positive, you need a proper technical justification of why your IP might be misclassified as a threat. This part is to be reviewed and validated by crowdsec. | ||
|
||
You also need public documentation stating the IP, ranges, and/or reverse DNS associated with the assets in question. This data must be machine-readable (no HTML, no PDF, etc.). | ||
|
||
Once your IP addresses are publicly available and accessible via HTTPS, you can contact [email protected]. Please include the URL of your IPs and ranges. | ||
|
||
The CrowdSec team will do their best to update the CTI with false positive information, so your IPs are flagged correctly. | ||
|
||
Here are some examples of providers who share their IPs and ranges: | ||
|
||
- [Bing](https://www.bing.com/toolbox/bingbot.json) | ||
- [Google Bot](https://developers.google.com/search/apis/ipranges/googlebot.json) | ||
- [Cloudfront](https://d7uri8nf7uskq.cloudfront.net/tools/list-cloudfront-ips) | ||
- [Fastly](https://api.fastly.com/public-ip-list) | ||
|
||
:::note | ||
|
||
You don’t need to follow a specific format for the exposed list, but it’s recommended to keep the same format over time. Otherwise, the false positive enrichment may stop working. | ||
|
||
It’s best to use CSV or JSON for the list format. | ||
|
||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: Troubleshooting CTI | ||
id: cti | ||
--- | ||
|
||
## Community support | ||
|
||
Please try to resolve your issue by reading [the documentation](../cti_api/intro). If you're unable to find a solution, don't hesitate to seek assistance in: | ||
|
||
- [Discourse](https://discourse.crowdsec.net/) | ||
- [Discord](https://discord.gg/crowdsec) | ||
|
||
## False Positive | ||
|
||
### How to Get Tagged as a False Positive | ||
|
||
To be able to be classified as a false positive, you need a proper technical justification of why your IP might be misclassified as a threat. This part is to be reviewed and validated by crowdsec. | ||
|
||
You also need public documentation stating the IP, ranges, and/or reverse DNS associated with the assets in question. This data must be machine-readable (no HTML, no PDF, etc.). | ||
|
||
Once your IP addresses are publicly available and accessible via HTTPS, you can contact [email protected]. Please include the URL of your IPs and ranges. | ||
|
||
The CrowdSec team will do their best to update the CTI with false positive information, so your IPs are flagged correctly. | ||
|
||
Here are some examples of providers who share their IPs and ranges: | ||
|
||
- [Bing](https://www.bing.com/toolbox/bingbot.json) | ||
- [Google Bot](https://developers.google.com/search/apis/ipranges/googlebot.json) | ||
- [Cloudfront](https://d7uri8nf7uskq.cloudfront.net/tools/list-cloudfront-ips) | ||
- [Fastly](https://api.fastly.com/public-ip-list) | ||
|
||
:::note | ||
|
||
You don’t need to follow a specific format for the exposed list, but it’s recommended to keep the same format over time. Otherwise, the false positive enrichment may stop working. | ||
|
||
It’s best to use CSV or JSON for the list format. | ||
|
||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters