menu_scan.php
40.8 KB
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
<?php
$sigUpdateTime = wfConfig::get('signatureUpdateTime');
?>
<div id="wfLiveTrafficOverlayAnchor"></div>
<div id="wfLiveTrafficDisabledMessage">
<h2>Live Updates Paused<br /><small>Click inside window to resume</small></h2>
</div>
<div class="wrap wordfence">
<div class="wf-container-fluid">
<?php
$nonce = filter_input(INPUT_GET, 'nonce', FILTER_SANITIZE_STRING);
if (!empty($promptForCredentials) && !empty($wpFilesystemActionCallback) && is_callable($wpFilesystemActionCallback)):
if (wp_verify_nonce($nonce, 'wp-ajax')) {
$relaxedOwnership = true;
$homePath = get_home_path();
if (!wordfence::requestFilesystemCredentials($filesystemCredentialsAdminURL, $homePath, $relaxedOwnership, true)) {
echo '</div>';
return;
}
call_user_func_array($wpFilesystemActionCallback,
!empty($wpFilesystemActionCallbackArgs) && is_array($wpFilesystemActionCallbackArgs) ? $wpFilesystemActionCallbackArgs : array());
} else {
printf("Security token has expired. Click <a href='%s'>here</a> to return to the scan page.", esc_url(network_admin_url('admin.php?page=WordfenceScan')));
}
?>
<?php else: ?>
<?php $pageTitle = "Wordfence Scan"; $helpLink="http://docs.wordfence.com/en/Wordfence_scanning"; $helpLabel="Learn more about scanning"; $options = array(array('t' => 'Scan', 'a' => 'scan'), array('t' => 'Scheduling', 'a' => 'scheduling'), array('t' => 'Options', 'a' => 'options')); include('pageTitle.php'); ?>
<div class="wf-row">
<?php
$rightRail = new wfView('marketing/rightrail');
echo $rightRail;
?>
<div class="<?php echo wfStyle::contentClasses(); ?>">
<div id="scan" class="wordfenceTopTab" data-title="Wordfence Scan">
<?php require('menu_scan_scan.php'); ?>
</div> <!-- end scan block -->
<div id="scheduling" class="wordfenceTopTab" data-title="Schedule when Wordfence Scans Occur">
<?php require('menu_scan_schedule.php'); ?>
</div> <!-- end scheduling block -->
<div id="options" class="wordfenceTopTab" data-title="Wordfence Scan Options">
<?php require('menu_scan_options.php'); ?>
</div> <!-- end options block -->
</div> <!-- end content block -->
</div> <!-- end row -->
<?php endif ?>
</div> <!-- end container -->
</div>
<script type="text/x-jquery-template" id="issueTmpl_configReadable">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr>
<th>URL:</th>
<td><a href="${data.url}" target="_blank">${data.url}</a></td>
<tr>
<th>Severity:</th>
<td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td>
</tr>
<tr>
<th>Status</th>
<td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignored{{/if}}
</td>
</tr>
</table>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
<strong>Tools:</strong>
{{if data.fileExists}}
<a target="_blank" href="${WFAD.makeViewFileLink(data.file)}">View the file</a>
{{/if}}
<a href="#" onclick="WFAD.hideFile('${id}', 'delete'); return false;">Hide this file in <em>.htaccess</em></a>
{{if data.canDelete}}
<a href="#" onclick="WFAD.deleteFile('${id}'); return false;">Delete this file (can't be undone).</a>
<p>
<label><input type="checkbox" class="wfdelCheckbox" value="${id}" /> Select for bulk delete</label>
</p>
{{/if}}
</div>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this issue</a>
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_publiclyAccessible">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr>
<th>URL:</th>
<td><a href="${data.url}" target="_blank">${data.url}</a></td>
<tr>
<th>Severity:</th>
<td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td>
</tr>
<tr>
<th>Status</th>
<td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignored{{/if}}
</td>
</tr>
</table>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
<strong>Tools:</strong>
{{if data.fileExists}}
<a target="_blank" href="${WFAD.makeViewFileLink(data.file)}">View the file</a>
{{/if}}
<a href="#" onclick="WFAD.hideFile('${id}', 'delete'); return false;">Hide this file in <em>.htaccess</em></a>
{{if data.canDelete}}
<a href="#" onclick="WFAD.deleteFile('${id}'); return false;">Delete this file (can't be undone).</a>
<p>
<label><input type="checkbox" class="wfdelCheckbox" value="${id}" /> Select for bulk delete</label>
</p>
{{/if}}
</div>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this issue</a>
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_wpscan_fullPathDiscl">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>URL:</th><td><a href="${data.url}" target="_blank">${data.url}</a></td>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignored{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if (status == 'new')}}
<strong>Resolve:</strong>
<?php if (!wfUtils::isNginx()): ?>
<a href="#" onclick="WFAD.fixFPD('${id}'); return false;">Fix this issue</a>
<?php endif ?>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this issue</a>
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
{{if (status == 'new')}}
<div class="wfIssueOptions">
<strong style="width: auto;">Manual Fix:</strong>
Set <code>display_errors</code> to <code>Off</code> in your php.ini file.
</div>
{{/if}}
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_wpscan_directoryList">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>URL:</th><td><a href="${data.url}" target="_blank">${data.url}</a></td>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignored{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if (status == 'new')}}
<strong>Resolve:</strong>
<?php if (!wfUtils::isNginx()): ?>
<a href="#" onclick="WFAD.disableDirectoryListing('${id}'); return false;">Fix this issue</a>
<?php endif ?>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this issue</a>
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
<?php if (!wfUtils::isNginx()): ?>
{{if (status == 'new')}}
<div class="wfIssueOptions">
<strong style="width: auto;">Manual Fix:</strong>
Add <code>Options -Indexes</code> to your .htaccess file.
</div>
{{/if}}
<?php endif ?>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_wfThemeUpgrade">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Theme Name:</th><td>${data.name}</td></tr>
<tr><th>Current Theme Version:</th><td>${data.version}</td></tr>
<tr><th>New Theme Version:</th><td>${data.newVersion}</td></tr>
<tr><th>Theme URL:</th><td><a href="${data.URL}" target="_blank">${data.URL}</a></td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignored{{/if}}
</td></tr>
</table>
</p>
{{if data.vulnerabilityPatched}}<p><strong>Update includes security-related fixes.</strong></p>{{/if}}
<p>
{{html longMsg}}
<a href="<?php echo get_admin_url() . 'update-core.php'; ?>">Click here to update now</a>.
</p>
<div class="wfIssueOptions">
{{if (status == 'new')}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this issue</a>
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_wfPluginUpgrade">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Plugin Name:</th><td>${data.Name}</td></tr>
{{if data.PluginURI}}<tr><th>Plugin Website:</th><td><a href="${data.PluginURI}" target="_blank">${data.PluginURI}</a></td></tr>{{/if}}
<tr><th>Changelog:</th><td><a href="${data.wpURL}/changelog" target="_blank">${data.wpURL}/changelog</a></td></tr>
<tr><th>Current Plugin Version:</th><td>${data.Version}</td></tr>
<tr><th>New Plugin Version:</th><td>${data.newVersion}</td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignored{{/if}}
</td></tr>
</table>
</p>
{{if data.vulnerabilityPatched}}<p><strong>Update includes security-related fixes.</strong></p>{{/if}}
<p>
{{html longMsg}}
<a href="<?php echo get_admin_url() . 'update-core.php'; ?>">Click here to update now</a>.
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this issue</a>
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_wfUpgrade">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Current WordPress Version:</th><td>${data.currentVersion}</td></tr>
<tr><th>New WordPress Version:</th><td>${data.newVersion}</td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignored{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
<a href="<?php echo get_admin_url() . 'update-core.php'; ?>">Click here to update now</a>.
</p>
<div class="wfIssueOptions">
{{if (status == 'new')}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this issue</a>
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_dnsChange">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Old DNS records:</th><td>${data.oldDNS}</td></tr>
<tr><th>New DNS records:</th><td>${data.newDNS}</td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignored{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if (status == 'new')}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I know about this change</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_badOption">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
{{if data.isMultisite}}
<tr><th>Multisite Blog ID:</th><td>${data.blog_id}</td></tr>
<tr><th>Multisite Blog Domain:</th><td>${data.domain}</td></tr>
<tr><th>Multisite Blog Path:</th><td>${data.path}</td></tr>
{{/if}}
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignoring all alerts related to this option{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if (status == 'new')}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore issues related to this option</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring issues related to this option</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_diskSpace">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Space remaining:</th><td>${data.spaceLeft}</td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignoring all disk space alerts{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if (status == 'new')}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore disk space alerts</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring disk space alerts</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_easyPassword">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Issue first detected:</th><td>${timeAgo} ago.</td></tr>
<tr><th>Login name:</th><td>${data.user_login}</td></tr>
<tr><th>User email:</th><td>${data.user_email}</td></tr>
<tr><th>Full name:</th><td>${data.first_name} ${data.last_name}</td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}Ignored until user changes password{{/if}}
{{if status == 'ignoreP' }}Ignoring this user's weak passwords{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
<strong>Tools:</strong>
<a target="_blank" href="${data.editUserLink}">Edit this user</a>
</div>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this weak password</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore all this user's weak passwords</a>
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_commentBadURL">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Author</th><td>${data.author}</td></tr>
<tr><th>Bad URL:</th><td><strong class="wfWarn">${data.badURL}</strong></td></tr>
<tr><th>Posted on:</th><td>${data.commentDate}</td></tr>
{{if data.isMultisite}}
<tr><th>Multisite Blog ID:</th><td>${data.blog_id}</td></tr>
<tr><th>Multisite Blog Domain:</th><td>${data.domain}</td></tr>
<tr><th>Multisite Blog Path:</th><td>${data.path}</td></tr>
{{/if}}
<tr><th>Severity:</th><td>Critical</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC' }}Ignored{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="WfIssueOptions">
<strong>Tools:</strong>
<a target="_blank" href="${data.editCommentLink}">Edit this ${data.type}</a>
</div>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this ${data.type}</a>
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this ${data.type}</a>
{{/if}}
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_postBadTitle">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Title:</th><td><strong class="wfWarn">${data.postTitle}</strong></td></tr>
<tr><th>Posted on:</th><td>${data.postDate}</td></tr>
{{if data.isMultisite}}
<tr><th>Multisite Blog ID:</th><td>${data.blog_id}</td></tr>
<tr><th>Multisite Blog Domain:</th><td>${data.domain}</td></tr>
<tr><th>Multisite Blog Path:</th><td>${data.path}</td></tr>
{{/if}}
<tr><th>Severity:</th><td>Critical</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}This bad title will be ignored in this ${data.type}.{{/if}}
{{if status == 'ignoreP' }}This post won't be scanned for bad titles.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
<strong>Tools:</strong>
<a target="_blank" href="${data.editPostLink}">Edit this ${data.type}</a>
</div>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this title in this ${data.type}</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore all dangerous titles in this ${data.type}</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_postBadURL">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
{{if data.isMultisite}}
<tr><th>Title:</th><td><a href="${data.permalink}" target="_blank">${data.postTitle}</a></td></tr>
{{else}}
<tr><th>Title:</th><td><a href="${data.permalink}" target="_blank">${data.postTitle}</a></td></tr>
{{/if}}
<tr><th>Bad URL:</th><td><strong class="wfWarn">${data.badURL}</strong></td></tr>
<tr><th>Posted on:</th><td>${data.postDate}</td></tr>
{{if data.isMultisite}}
<tr><th>Multisite Blog ID:</th><td>${data.blog_id}</td></tr>
<tr><th>Multisite Blog Domain:</th><td>${data.domain}</td></tr>
<tr><th>Multisite Blog Path:</th><td>${data.path}</td></tr>
{{/if}}
<tr><th>Severity:</th><td>Critical</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}This bad URL will be ignored in this ${data.type}.{{/if}}
{{if status == 'ignoreP' }}This post won't be scanned for bad URL's.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
<strong>Tools:</strong>
<a target="_blank" href="${data.editPostLink}">Edit this ${data.type}</a>
</div>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this bad URL in this ${data.type}</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore all bad URL's in this ${data.type}</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_file">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Filename:</th><td>${data.file}</td></tr>
{{if ((typeof data.badURL !== 'undefined') && data.badURL)}}
<tr><th>Bad URL:</th><td><strong class="wfWarn">${data.badURL}</strong></td></tr>
{{/if}}
<tr><th>File type:</th><td>{{if data.cType}}${WFAD.ucfirst(data.cType)}{{else}}Not a core, theme or plugin file.{{/if}}</td></tr>
<tr><th>Issue first detected:</th><td>${timeAgo} ago.</td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' }}Permanently ignoring this file{{/if}}
{{if status == 'ignoreC' }}Ignoring this file until it changes{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
<strong>Tools:</strong>
{{if data.fileExists}}
<a target="_blank" href="${WFAD.makeViewFileLink(data.file)}">View the file.</a>
{{/if}}
{{if data.canFix}}
<a href="#" onclick="WFAD.restoreFile('${id}'); return false;">Restore the original version of this file.</a>
{{/if}}
{{if data.canDelete}}
<a href="#" onclick="WFAD.deleteFile('${id}'); return false;">Delete this file (can't be undone).</a>
{{/if}}
{{if data.canDiff}}
<a href="${WFAD.makeDiffLink(data)}" target="_blank">See how the file has changed.</a>
{{/if}}
{{if data.canFix}}
<br /> <input type="checkbox" class="wfrepairCheckbox" value="${id}" /> Select for bulk repair
{{/if}}
{{if data.canDelete}}
<br /> <input type="checkbox" class="wfdelCheckbox" value="${id}" /> Select for bulk delete
{{/if}}
</div>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
{{if data.fileExists}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore until the file changes.</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Always ignore this file.</a>
{{else}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore missing file</a>
{{/if}}
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue.</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_coreUnknown">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Issue first detected:</th><td>${timeAgo} ago.</td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' }}Permanently ignoring this version{{/if}}
{{if status == 'ignoreC' }}Ignoring this version until it changes{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore until the version changes.</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Always ignore this version.</a>
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue.</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_database">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Option Name:</th><td>${data.option_name}</td></tr>
{{if ((typeof data.badURL !== 'undefined') && data.badURL)}}
<tr><th>Bad URL:</th><td><strong class="wfWarn">${data.badURL}</strong></td></tr>
{{/if}}
<tr><th>Issue first detected:</th><td>${timeAgo} ago.</td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreP' }}Permanently ignoring this option{{/if}}
{{if status == 'ignoreC' }}Ignoring this option until it changes{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
<strong>Tools:</strong>
{{if data.optionExists}}
<a target="_blank" href="${WFAD.makeViewOptionLink(data.option_name, data.site_id)}">View this option.</a>
{{/if}}
{{if data.canDelete}}
<a href="#" onclick="WFAD.deleteDatabaseOption('${id}'); return false;">Delete this option from the database (can't be undone).</a>
<br /> <input type="checkbox" class="wfdelCheckbox" value="${id}" /> Select for bulk delete
{{/if}}
</div>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
{{if data.optionExists}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore until the option changes.</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Always ignore this option.</a>
{{else}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore missing option.</a>
{{/if}}
{{/if}}
{{if status == 'ignoreC' || status == 'ignoreP'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue.</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_pubBadURLs">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}These bad URLs will be ignored until they change.{{/if}}
{{if status == 'ignoreP' }}These bad URLs will be permanently ignored.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore these URLs until they change.</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore these URLs permanently</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_pubDomainRedir">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}This redirect will be ignored until it changes.{{/if}}
{{if status == 'ignoreP' }}This redirect is permanently ignored.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreC'); return false;">Ignore this redirect until it changes</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore any redirect like this permanently</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_heartbleed">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}This redirect will be ignored until it changes.{{/if}}
{{if status == 'ignoreP' }}This redirect is permanently ignored.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore this problem</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_checkSpamIP">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}This redirect will be ignored until it changes.{{/if}}
{{if status == 'ignoreP' }}This redirect is permanently ignored.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore this problem</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_checkGSB">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
{{if ((typeof data.badURL !== 'undefined') && data.badURL)}}
<tr><th>Bad URL:</th><td><strong class="wfWarn">${data.badURL}</strong></td></tr>
{{/if}}
<tr><th>Issue first detected:</th><td>${timeAgo} ago.</td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}This issue will be ignored until it changes.{{/if}}
{{if status == 'ignoreP' }}This issue is permanently ignored.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore this problem</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_checkHowGetIPs">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Issue first detected:</th><td>${timeAgo} ago.</td></tr>
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}This issue will be ignored until it changes.{{/if}}
{{if status == 'ignoreP' }}This issue is permanently ignored.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
{{if ((typeof data.recommendation !== 'undefined') && data.recommendation)}}
<a href="#" onclick="WFAD.useRecommendedHowGetIPs('${id}'); return false;">Use recommended value</a>
{{/if}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore this problem</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_spamvertizeCheck">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}This redirect will be ignored until it changes.{{/if}}
{{if status == 'ignoreP' }}This redirect is permanently ignored.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore this problem</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_suspiciousAdminUsers">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}This issue will be ignored until it changes.{{/if}}
{{if status == 'ignoreP' }}This issue is permanently ignored.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.deleteAdminUser('${id}'); return false;">Delete this user</a>
<a href="#" onclick="WFAD.revokeAdminUser('${id}'); return false;">Revoke all capabilities from this user</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore this problem</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="issueTmpl_timelimit">
<div>
<div class="wfIssue">
<h2>${shortMsg}</h2>
<p>
<table border="0" class="wfIssue" cellspacing="0" cellpadding="0">
<tr><th>Severity:</th><td>{{if severity == '1'}}Critical{{else}}Warning{{/if}}</td></tr>
<tr><th>Status</th><td>
{{if status == 'new' }}New{{/if}}
{{if status == 'ignoreC' }}This issue will be ignored until it changes.{{/if}}
{{if status == 'ignoreP' }}This issue is permanently ignored.{{/if}}
</td></tr>
</table>
</p>
<p>
{{html longMsg}}
</p>
<div class="wfIssueOptions">
{{if status == 'new'}}
<strong>Resolve:</strong>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">I have fixed this issue</a>
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'ignoreP'); return false;">Ignore this problem</a>
{{/if}}
{{if status == 'ignoreP' || status == 'ignoreC'}}
<a href="#" onclick="WFAD.updateIssueStatus('${id}', 'delete'); return false;">Stop ignoring this issue</a>
{{/if}}
</div>
</div>
</div>
</script>
<script type="text/x-jquery-template" id="wfNoScanYetTmpl">
<div>
<table class="wfSummaryParent" cellpadding="0" cellspacing="0">
<tr><th class="wfHead">Your first scan is starting now</th></tr>
<tr><td>
<table class="wfSC1" cellpadding="0" cellspacing="0">
<tr><td>
Your first Wordfence scan should be automatically starting now
and you will see the scan details in the "Activity Log" above in a few seconds.
</td></tr>
<tr><td>
<div class="wordfenceScanButton"><button type="button" id="wfStartScanButton2" class="wfStartScanButton button-primary">Start a Wordfence Scan</button></div>
</td></tr>
</table>
</td>
</tr></table>
</div>
</script>
<script type="text/x-jquery-template" id="wfTourScan">
<div>
<h3>How to use Wordfence</h3>
<strong><p>Start with a Scan</p></strong>
<p>
Using Wordfence is simple. Start by doing a scan.
Once the scan is complete, a list of issues will appear at the bottom of this page. Work through each issue one at a time. If you know an
issue is not a security problem, simply choose to ignore it. When you click "ignore" it will be moved to the list of ignored issues.
</p>
<strong><p>Use the tools we provide</p></strong>
<p>
You'll notice that with each issue we provide tools to help you repair problems you may find. For example, if a core file has been modified
you can view how it has been changed, view the whole file or repair the file. If we find a back-door a hacker has left behind, we give
you the option to delete the file. Using these tools is an essential part of the diagnostic and cleaning process if you have been hacked.
</p>
<p>
Repair each security problem that you find. You may have to fix a weak password that we detected, upgrade a theme or plugin, delete a comment that
contains an unsafe URL and so on. Once you're done, start another scan and your site should come back with no security issues.
</p>
<strong><p>Regular scheduled scans keep your site safe</p></strong>
<p>
Once you've done your initial scan and cleanup, Wordfence will automatically scan your site once a day.
If you would like to scan your site more frequently or control when Wordfence does a scan, upgrade to the
paid version of Wordfence which includes other features like country blocking.
</p>
</div>
</script>