Advertisement
FlyFar

botnet.dpr

Jun 7th, 2023
980
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.29 KB | Cybersecurity | 1 0
  1.    program botnet;
  2.  
  3.    uses
  4.      Forms,
  5.      Unit1 in 'Unit1.pas' {Form1},
  6.      Unit2 in 'Unit2.pas' {Form2};
  7.  
  8.    {$R *.res}
  9.  
  10.    begin
  11.      Application.Initialize;
  12.      Application.CreateForm(TForm1, Form1);
  13.      Application.CreateForm(TForm2, Form2);
  14.      Application.Run;
  15.    end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement