public InvalidMacSpoofAttackIpv4Attack(Target t1, Target t2, AttackType attackType)
     : base(attackType)
 {
     invalidMac = PhysicalAddress.Parse("FA-BA-DA-FA-BA-DA".ToUpper());
     this.t1 = t1;
     this.t2 = t2;
 }
Exemple #2
0
 public DoSSLAACAttack(Target t1, AttackType attackType)
     : base(attackType)
 {
     this.t1 = t1;
 }
Exemple #3
0
 public MitmAttack(Target t1, Target t2, AttackType attackType)
     : base(attackType)
 {
     this.t1 = t1;
     this.t2 = t2;
 }