Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/CIRCL/bgp-ranking

BGP ranking is a free software to calculate the security ranking of Internet Service Provider (ASN).
https://github.com/CIRCL/bgp-ranking

Last synced: about 1 month ago
JSON representation

BGP ranking is a free software to calculate the security ranking of Internet Service Provider (ASN).

Awesome Lists containing this project

README

        

# BGP AS / ISP Security Ranking

For an Internet Service Provider, AS numbers are a logical representation of
the other ISP peering or communicating with his autonomous system. ISP customers
are using the capacity of the Internet Service Provider to reach Internet
services over other AS. Some of those communications can be malicious (e.g. due
to malware activities on an end-user equipments) and hosted at specific AS location.

In order to provide an improved security view on those AS numbers, a trust ranking
scheme will be implemented based on existing dataset of compromised systems,
malware C&C IP and existing datasets of the ISPs.

The official website of the project is: https://github.com/CIRCL/bgp-ranking/

There is a public BGP Ranking at http://bgpranking.circl.lu/

BGP Ranking is free software licensed under the GNU Affero General Public License

BGP Ranking is a software to rank AS numbers based on malicious activities.

# Data access

## Database 5 (contains all raw data):

```python
|sources -> set(sources)
||asns -> set(asns)
||asn_details -> set(|)
||| -> set(|)

-> set(ipblock) # The bloc can be ipv4 or ipv6
# WARNING: some of the entries are timestamp, this is
# a bug in old data and should be discarded
| -> hash(: )
```

## Database 6 (contains rankings):

```python
|amount_asns -> value(nb_asns_day) # from all the ASNs known by RIPE for a day
|||rankv4 -> value(rank)
|||rankv4|details -> zset((, ) )
# WARNING: some of the entries are timestamp, this is
# a bug in old data and should be discarded
|||rankv6 -> value(rank) # Not used
|||rankv6|details -> zset((, ) ) # Not used
# WARNING: some of the entries are timestamp, this is
# a bug in old data and should be discarded

||clean_set

```