public ShareVisualizationForm(ConversationsForm convForm)
        {
            InitializeComponent();

            this.convForm = convForm;

            config = ConfigManager.GetContext("SubmitVisualizationForm");

            if (config.HasSetting("Name"))
                nameTextBox.Text = (string) config["Name"];

            UpdateControls();
        }
Beispiel #2
0
        public static ConfigContext GetContext(string name)
        {
            ConfigContext ctx;

            if (contexts.ContainsKey(name))
            {
                ctx = contexts[name];
            }
            else
            {
                ctx            = new ConfigContext(name);
                contexts[name] = ctx;
            }

            return(ctx);
        }
Beispiel #3
0
        public static ConfigContext GetContext(string name)
        {
            ConfigContext ctx;

            if (contexts.ContainsKey(name))
            {
                ctx = contexts[name];
            }
            else
            {
                ctx = new ConfigContext(name);
                contexts[name] = ctx;
            }

            return ctx;
        }
Beispiel #4
0
        public MainForm()
        {
            InitializeComponent();

            config = ConfigManager.GetContext("MainForm");

            colorPool = new ColorPool();

            listener = new AgentListener();
            receivedHandler = new AgentListener.ElementsReceivedHandler(listener_ElementsReceived);
            listener.MessageElementsReceived += receivedHandler;
            stoppedHandler = new AgentListener.StoppedHandler(listener_Stopped);
            listener.Stopped += stoppedHandler;

            tblMessages = dataSet.Tables["messages"];

            debugForm = new DebugForm();
            injectForm = new InjectForm();
            swForm = new SoftwallForm();

            packetParser = new PacketParser(debugForm);
            packetParser.PacketDescriptionReceived += new PacketParser.PacketDescriptionReceivedHandler(packetParser_PacketDescriptionReceived);

            dumpDisplayMode = DisplayMode.HEX;

            findTypeComboBox.SelectedIndex = 0;

            ClearState();
            LoadSettings();
            ApplyFilters();
        }