123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- {
- devices:[
- {
- id:"Alice",
- image: "macbook",
- ports:1,
- x:0.25,
- y:0.2,
- player:true
- },
- {
- id:"Zombie 1",
- image: "macbook",
- ports:1,
- x:0.25,
- y:0.4,
- player:true
- },
- {
- id:"Zombie 2",
- image: "iphone-1",
- ports:1,
- x:0.25,
- y:0.6,
- player:true
- },
- {
- id:"Zombie 3",
- ports:1,
- x:0.25,
- y:0.8,
- player:true
- },
- {
- id:"Google",
- image: "server",
- ports:1,
- x:0.8,
- y:0.5,
- bufferWait:305
- },
- {
- id:"Google's Firewall",
- image: "router",
- ports:5,
- x:0.6,
- y:0.5,
- script: deviceScripts.firewall,
- rules:[
- {srcip:"Alice"}
- ]
- }
- ],
- links:[
- {
- src:"Alice", srcport:0,
- dst:"Google's Firewall", dstport:4
- },
- {
- src:"Zombie 1", srcport:0,
- dst:"Google's Firewall", dstport:1
- },
- {
- src:"Zombie 2", srcport:0,
- dst:"Google's Firewall", dstport:2
- },
- {
- src:"Zombie 3", srcport:0,
- dst:"Google's Firewall", dstport:3
- },
- {
- src:"Google", srcport:0,
- dst:"Google's Firewall", dstport:0
- }
- ],
- timeline:[
- {
- type:"packet",
- at:50,
- from:"Alice",
- times:20,
- payload:{
- network:{srcip:"Alice",dstip:"Google"}
- }
- }
- ],
- triggers:[
- {
- type:"packet",
- device:"Google",
- payload:{
- network:{srcip:"Zombie 1", dstip:"Google"}
- }
- },
- {
- type:"packet",
- device:"Google",
- payload:{
- network:{srcip:"Zombie 2", dstip:"Google"}
- }
- },
- {
- type:"packet",
- device:"Google",
- payload:{
- network:{srcip:"Zombie 3", dstip:"Google"}
- }
- },
- {
- type:"packet",
- device:"Google",
- times:60
- }
- ],
- nextLevel:10
- }
|