-
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.
CTI/FAQ: Add documentation on how being tagged as False Positive
- Loading branch information
1 parent
30b5144
commit d60dc62
Showing
4 changed files
with
90 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,31 @@ 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 marked as a false positive in the CrowdSec Threat Intelligence, you need to publicly share all the IP addresses and ranges you own. | ||
|
||
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 | ||
--- | ||
|
||
import UnixWindowsK8sTabs from "../../src/components/UnixWindowsK8sTabs" | ||
|
||
## 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 marked as a false positive in the CrowdSec Threat Intelligence, you need to publicly share all the IP addresses and ranges you own. | ||
|
||
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