rpl-attacks icon indicating copy to clipboard operation
rpl-attacks copied to clipboard

Black hole and decrease rank attacks

Open azeemjahangir opened this issue 3 years ago • 8 comments

I need Black hole and version number of attacks code in c file

azeemjahangir avatar Jul 06 '21 08:07 azeemjahangir

Hi @azeemjahangir

TLDR ; this source code is made at runtime while compiling a simulation. It can either be retrieved during this operation or regenerated by reproducing the operations from the building-blocks manually.

While making a campaign of simulations (e.g. the demo campaign) or a single simulation, the ContikiRPL library is modified based on the selected building-blocks (using the available operations, e.g. pattern replacement). The malicious mote is then compiled from its C file, therefore using the modified ContikiRPL library and afterwards immediately removed. So, if you want to get the modified code, you can simply manually reproduce the modifying operations from the building-blocks or interrupt the simulation while it is being made, before the process removes the temporary sources of the modified ContikiRPL library.

dhondta avatar Jul 06 '21 09:07 dhondta

Can any have decrease rank and blackhole in file so i can have an idea for implementation

azeemjahangir avatar Jul 23 '21 07:07 azeemjahangir

Please read the documentation about building blocks. This will help you understand what you are searching for.

Decreased Rank Building Block

Here are the transformations (from the building blocks) for the decreased-rank building block :

{
    "RPL_CONF_MIN_HOPRANKINC": 0,
    "rpl-private.h": [
      ["#define RPL_MAX_RANKINC             (7 * RPL_MIN_HOPRANKINC)", "#define RPL_MAX_RANKINC 0"],
      ["#define INFINITE_RANK                   0xffff", "#define INFINITE_RANK 256"]
    ],
    "rpl-timers.c": ["rpl_recalculate_ranks();", null]
}

This means :

Blackhole Attack

As it can be seen in the demo campaign, the blackhole attack is the combination of the decreased-rank building block (see above) and a drop-messages one that does not exist yet (you can propose a PR, if relevant :-) ).

dhondta avatar Jul 23 '21 09:07 dhondta

This codes might be helpful for you. Blackhole-and D-Attacks.zip

Johnbucky avatar Jul 23 '21 20:07 Johnbucky

Hi there, I realize I forgot to respond. My apologies... Thank you very much ! Indeed, it could be of help, but I don't spend time anymore on this project, at least for the time being as I'm too busy with other matters. Did you mind integrating it into the framework ?

dhondta avatar Dec 03 '21 18:12 dhondta

This codes might be helpful for you. Blackhole-and D-Attacks.zip

Any read me file or instructions for this code?

Laileet avatar Nov 28 '22 19:11 Laileet