forked from DNNCommunity/DNN.SecurityAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
View.ascx.cs
262 lines (232 loc) · 8.34 KB
/
View.ascx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using DNN.Modules.SecurityAnalyzer.Components;
using DotNetNuke.Common;
using DotNetNuke.Common.Utilities;
using DotNetNuke.Data;
using DotNetNuke.Entities.Users;
using DotNetNuke.Services.Exceptions;
using DotNetNuke.Services.Localization;
using DotNetNuke.UI.Skins;
using DotNetNuke.UI.Skins.Controls;
namespace DNN.Modules.SecurityAnalyzer
{
public partial class View : SecurityAnalyzerModuleBase
{
protected ArrayList Users { get; set; }
protected void Page_Load(object sender, EventArgs e)
{
if (!UserInfo.IsSuperUser)
{
Response.Redirect(Globals.NavigateURL("Access Denied"), true);
}
try
{
cmdSearch.Click += cmdSearch_Click;
cmdModifiedFiles.Click += cmdModifiedFiles_Click;
}
catch (Exception exc) //Module failed to load
{
Exceptions.ProcessModuleLoadException(this, exc);
}
if (!Page.IsPostBack)
{
Utility.CleanUpInstallerFiles();
GetAuditResults();
GetSuperUsers();
GetModifiedSettings();
//SetMinimalModifiedFilesGrid();
}
}
private void GetAuditResults()
{
var audit = new AuditChecks();
Localization.LocalizeDataGrid(ref dgResults, LocalResourceFile);
dgResults.DataSource = audit.DoChecks();
dgResults.DataBind();
}
private void cmdSearch_Click(object sender, EventArgs e)
{
var scriptTimeout = Server.ScriptTimeout;
try
{
Server.ScriptTimeout = int.MaxValue;
pnlDatabaseresults.Visible = true;
pnlFileresults.Visible = true;
var foundinfiles = Utility.SearchFiles(txtSearchTerm.Text);
IEnumerable<string> files = foundinfiles as IList<string> ?? foundinfiles.ToList();
if (files.Any() == false)
{
lblfileresults.Text = Localization.GetString("NoFileResults");
}
else
{
var results = files.Aggregate("", (current, filename) => current + filename + "<br/>");
lblfileresults.Text = results;
}
lbldatabaseresults.Text = Utility.SearchDatabase(txtSearchTerm.Text);
}
finally
{
Server.ScriptTimeout = scriptTimeout;
}
}
private void SetMinimalModifiedFilesGrid()
{
dgModifiedFiles.DataSource = new List<FileInfo>
{
new FileInfo(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "web.config")),
new FileInfo(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "default.aspx"))
};
dgModifiedFiles.DataBind();
}
private void cmdModifiedFiles_Click(object sender, EventArgs e)
{
var scriptTimeout = Server.ScriptTimeout;
try
{
Server.ScriptTimeout = 600; // 10 minutes
Localization.LocalizeDataGrid(ref dgModifiedExecutableFiles, LocalResourceFile);
dgModifiedExecutableFiles.DataSource = Utility.GetLastModifiedExecutableFiles();
dgModifiedExecutableFiles.DataBind();
Localization.LocalizeDataGrid(ref dgModifiedFiles, LocalResourceFile);
dgModifiedFiles.DataSource = Utility.GetLastModifiedFiles();
dgModifiedFiles.DataBind();
}
catch (Exception)
{
SetMinimalModifiedFilesGrid();
}
finally
{
Server.ScriptTimeout = scriptTimeout;
}
}
public string GetSeverityImageUrl(int severity)
{
switch (severity)
{
case (int) SeverityEnum.Pass:
return ResolveUrl("~/images/green-ok.gif");
case (int) SeverityEnum.Warning:
return ResolveUrl("~/images/yellow-warning.gif");
case (int) SeverityEnum.Failure:
return ResolveUrl("~/images/red-error.gif");
}
return ResolveUrl("~/images/icon_help_32px.gif");
}
public string DisplayResult(int severity, string successText, string failureTest)
{
switch (severity)
{
case (int) SeverityEnum.Pass:
return successText;
default:
return failureTest;
}
}
public string DisplayFriendlyName(string reason)
{
return reason;
}
public string DisplayNotes(IList<String> notes)
{
try
{
if (notes != null)
{
if (notes.Count == 0)
{
return "N/A";
}
return notes.Aggregate(string.Empty, (current, note) => current + note + "<br/>");
}
}
catch (Exception)
{
throw;
}
return "N/A";
}
public string DisplayEmail(string email)
{
var displayEmail = Null.NullString;
try
{
if (email != null)
{
displayEmail = HtmlUtils.FormatEmail(email, false);
}
}
catch (Exception exc) //Module failed to load
{
Exceptions.ProcessModuleLoadException(this, exc);
}
return displayEmail;
}
public string GetFilePath(string filePath)
{
var path = Regex.Replace(filePath, Regex.Escape(Globals.ApplicationMapPath), string.Empty, RegexOptions.IgnoreCase);
return path.TrimStart('\\');
}
public string DisplayDate(DateTime userDate)
{
var date = Null.NullString;
try
{
date = !Null.IsNull(userDate) ? userDate.ToString(CultureInfo.InvariantCulture) : "";
}
catch (Exception exc) //Module failed to load
{
Exceptions.ProcessModuleLoadException(this, exc);
}
return date;
}
private void GetSuperUsers()
{
var totalRecords = 0;
Users = UserController.GetUsers(-1, dgUsers.CurrentPageIndex, dgUsers.PageSize,
ref totalRecords, true, true);
Localization.LocalizeDataGrid(ref dgUsers, LocalResourceFile);
dgUsers.DataSource = Users;
dgUsers.DataBind();
}
private void GetModifiedSettings()
{
try
{
var reader = DataProvider.Instance().ExecuteReader("SecurityAnalyzer_GetModifiedSettings");
if (reader != null)
{
var tables = new List<DataTable>();
do
{
var table = new DataTable { Locale = CultureInfo.CurrentCulture };
table.Load(reader);
tables.Add(table);
}
while (!reader.IsClosed); // table.Load automatically moves to the next result and closes the reader once there are no more
dgPortalSettings.DataSource = tables[0];
dgPortalSettings.DataBind();
dgHostSettings.DataSource = tables[1];
dgHostSettings.DataBind();
dgTabSettings.DataSource = tables[2];
dgTabSettings.DataBind();
dgModuleSettings.DataSource = tables[3];
dgModuleSettings.DataBind();
}
}
catch (Exception ex)
{
Skin.AddModuleMessage(this, ex.Message, ModuleMessage.ModuleMessageType.RedError);
throw;
}
}
}
}