gitextract_ho9kmbdo/ ├── CiscoAnyConnect/ │ ├── App.config │ ├── CiscoAnyConnect.csproj │ ├── CiscoAnyConnect.csproj.user │ ├── CiscoAnyConnect.sln │ ├── CustomErrorBox.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Form2.Designer.cs │ ├── Form2.cs │ ├── Form2.resx │ ├── Program.cs │ └── Properties/ │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── KeePass/ │ ├── App.config │ ├── CustomMessageBox.cs │ ├── CustomMessageBox.resx │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── KeePass.csproj │ ├── KeePass.sln │ ├── Program.cs │ └── Properties/ │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── LastPass/ │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Form2.Designer.cs │ ├── Form2.cs │ ├── Form2.resx │ ├── Form3.resx │ ├── LastPass.csproj │ ├── LastPass.sln │ ├── Program.cs │ └── Properties/ │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── OpenVPN/ │ ├── App.config │ ├── LoginForm.cs │ ├── LoginForm.resx │ ├── OpenVPN.csproj │ ├── OpenVPN.sln │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SplashForm.cs │ └── SplashForm.resx ├── README.md ├── WindowsSecurity/ │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WindowsSecurity.csproj │ └── WindowsSecurity.sln └── wpfRunner.cs