Exemplo n.º 1
0
 internal static void StartImportBurpLog(Object BurpLogFile)
 {
     try
     {
         StreamReader SR = new StreamReader(BurpLogFile.ToString());
         ReadBurpMessages(SR);
         SR.Close();
     }
     catch (Exception Exp)
     {
         IronUI.CloseImportForm();
         MessageBox.Show("Unable to import log - " + Exp.Message);
         return;
     }
     IronUI.SetUIVisibility(true);
     IronUI.CloseImportForm();
 }