Skip to content

Fides: A Trust Model for Collaborative Defense in Highly Adversarial Networks

License

Notifications You must be signed in to change notification settings

stratosphereips/fides

 
 

Repository files navigation

Fides: Trust Model for Collaborative Network Defence

This project is funded by NlNet NGI Zero Entrust

Most network defense systems only rely on evidence-based knowledge about past cyberattacks, known as threat intelligence. Firewalls and intrusion prevention systems rely on the shared threat intelligence generated by other systems to prevent attacks before is too late. Such threat intelligence is usually shared via centralized public and private blocklists, where a single centralized authority, hopefully, has complete control over what is published. Such centralized systems have many issues: single point of failure both technically and in trust, lack of flexibility on new data and providers, and manual trust in the providers.

To mitigate these problems, peer-to-peer networks can be used to share threat intelligence. However, because these networks are open to anyone, including malicious actors, and peers need to be able to determine who to trust and which data is better to discard.

Fides is a generic trust model fine-tuned for sharing security threat intelligence in highly adversarial global peer-to-peer networks of intrusion prevention agents. We design and build Fides taking into account the problems and limitations of previous state-of-the-art trust models, optimizing them for a broad spectrum of peer-to-peer networks where peers can join and leave at any time.

The direct contributions are the computational model of the trust model Fides, the reference implementation of the model in Python, the simulation framework for modeling peers' behavior in the network including the implementation of the framework and the implementation of the Fides module for reference intrusion prevention system.

How it works

Screenshot_20240423_171706

Fides evaluates the behavior of peers in the network, including their membership in pre-trusted organizations, and uses this knowledge to compute the trust. Fides continually assesses received data from the peers, and by weighting and comparing them with each other as well as with the existing knowledge, Fides is able to determine which peer provides better threat intelligence and which peers are more reliable. The received threat intelligence is always aggregated and weighted and then provided to the underlying intrusion prevention system. Among many results, our experiments show that in the worst possible scenario, when 75% of the network is completely controlled by malicious actors Fides is still able to provide the correct values of the threat intelligence data under the assumption that the other part of the network, the remaining 25%, are peers that are part of trusted organizations.

Repository

  • files is the implementation of the trust model
  • simulations are simulations used to evaluate the model
  • slips is the Slips module that uses Fides
  • tests are the unit tests that verify that Fides works
  • trust model design is the documentation of the design of fides trust model

How to

The project needs to use the same Python as Slips does, thus we use Python 3.8, use conda.yml to set up the project. See Makefile for setup.

Configuration

See fides.conf.yml that is used to parametrize the trust model.

Related work

About

Fides: A Trust Model for Collaborative Defense in Highly Adversarial Networks

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.6%
  • Makefile 0.4%