mirror of
https://github.com/adulau/MalwareClassifier.git
synced 2024-12-22 00:36:00 +00:00
Overview of the Redis data structures
This commit is contained in:
parent
bdbbeb45eb
commit
f08340aeff
2 changed files with 21 additions and 0 deletions
21
doc/redis-datastruct.dot
Normal file
21
doc/redis-datastruct.dot
Normal file
|
@ -0,0 +1,21 @@
|
|||
digraph g{
|
||||
a -> b
|
||||
a [label="processed",shape=box,fillcolor="white",style="filled"];
|
||||
b [label="{Malware MD5, Malware MD5, ...}",shape=box,fillcolor="palegreen",style="filled,rounded"];
|
||||
|
||||
c -> d
|
||||
c [label="type",shape=box,fillcolor="white",style="filled"];
|
||||
d [label="{http.user_agent, http.server, ...}",shape=box,fillcolor="palegreen",style="filled,rounded"];
|
||||
d -> g [dir=none];
|
||||
g [label="e:http.user_agent", shape=box];
|
||||
g -> h
|
||||
h [label="{Mozilla...., Mozilla/4.0..., Wget...,... }",shape=box,fillcolor="palegreen",style="filled,rounded"];
|
||||
h -> e [dir=none];
|
||||
e -> f
|
||||
e [label="v:MD5('Mozilla....')",shape=box,fillcolor="white",style="filled"];
|
||||
f [label="{Malware MD5, Malware MD5, ...}",shape=box,fillcolor="palegreen",style="filled,rounded"];
|
||||
|
||||
z [label="key", shape=box];
|
||||
y [label="set", shape=box, fillcolor="palegreen",style="filled,rounded"];
|
||||
|
||||
}
|
BIN
doc/redis-datastruct.png
Normal file
BIN
doc/redis-datastruct.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Loading…
Reference in a new issue