mirror of https://github.com/MISP/misp-modules
chg: Updated documentation for the recently updated bgpranking module
parent
3101e5bc26
commit
589a0a0321
|
@ -22,7 +22,7 @@ For more information: [Extending MISP with Python modules](https://www.misp-proj
|
|||
* [AssemblyLine submit](misp_modules/modules/expansion/assemblyline_submit.py) - an expansion module to submit samples and urls to AssemblyLine.
|
||||
* [AssemblyLine query](misp_modules/modules/expansion/assemblyline_query.py) - an expansion module to query AssemblyLine and parse the full submission report.
|
||||
* [Backscatter.io](misp_modules/modules/expansion/backscatter_io.py) - a hover and expansion module to expand an IP address with mass-scanning observations.
|
||||
* [BGP Ranking](misp_modules/modules/expansion/bgpranking.py) - a hover and expansion module to expand an AS number with the ASN description, its history, and position in BGP Ranking.
|
||||
* [BGP Ranking](misp_modules/modules/expansion/bgpranking.py) - a hover and expansion module to expand an AS number with the ASN description and its ranking and position in BGP Ranking.
|
||||
* [RansomcoinDB check](misp_modules/modules/expansion/ransomcoindb.py) - An expansion hover module to query the [ransomcoinDB](https://ransomcoindb.concinnity-risks.com): it contains mapping between BTC addresses and malware hashes. Enrich MISP by querying for BTC -> hash or hash -> BTC addresses.
|
||||
* [BTC scam check](misp_modules/modules/expansion/btc_scam_check.py) - An expansion hover module to instantly check if a BTC address has been abused.
|
||||
* [BTC transactions](misp_modules/modules/expansion/btc_steroids.py) - An expansion hover module to get a blockchain balance and the transactions from a BTC address in MISP.
|
||||
|
|
|
@ -108,13 +108,13 @@ Query backscatter.io (https://backscatter.io/).
|
|||
|
||||
Query BGP Ranking (https://bgpranking-ng.circl.lu/).
|
||||
- **features**:
|
||||
>The module takes an AS number attribute as input and displays its description and history, and position in BGP Ranking.
|
||||
>The module takes an AS number attribute as input and displays its description as well as its ranking position in BGP Ranking for a given day.
|
||||
>
|
||||
>
|
||||
- **input**:
|
||||
>Autonomous system number.
|
||||
- **output**:
|
||||
>Text containing a description of the ASN, its history, and the position in BGP Ranking.
|
||||
>An asn object with its related bgp-ranking object.
|
||||
- **references**:
|
||||
>https://github.com/D4-project/BGP-Ranking/
|
||||
- **requirements**:
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"description": "Query BGP Ranking (https://bgpranking-ng.circl.lu/).",
|
||||
"requirements": ["pybgpranking python library"],
|
||||
"features": "The module takes an AS number attribute as input and displays its description and history, and position in BGP Ranking.\n\n",
|
||||
"features": "The module takes an AS number attribute as input and displays its description as well as its ranking position in BGP Ranking for a given day.\n\n",
|
||||
"references": ["https://github.com/D4-project/BGP-Ranking/"],
|
||||
"input": "Autonomous system number.",
|
||||
"output": "Text containing a description of the ASN, its history, and the position in BGP Ranking."
|
||||
"output": "An asn object with its related bgp-ranking object."
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue