Home directory for Malawi's wwwroot
Duncan Ewan
2021-02-19 3e758c29e0fde36fc088efcfc88f9a3014432b64
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
Êþº¾-`
SourceFileHE:\cf10_final\cfusion\wwwroot\CFIDE\administrator\security\pstrength.cfmcfpstrength2ecfm862478168coldfusion/runtime/CFPage<init>()V 
    bindPageVariablesD(Lcoldfusion/runtime/VariableScope;Lcoldfusion/runtime/LocalScope;)V coldfusion/runtime/CfJspPage
 PASSWORD_STRONGLcoldfusion/runtime/Variable;bindPageVariabler(Ljava/lang/String;Lcoldfusion/runtime/VariableScope;Lcoldfusion/runtime/LocalScope;)Lcoldfusion/runtime/Variable; 
     PASSWORD_VERY_WEAK     PASSWORD_MEDIUM      PASSWORD_UNSAFE" "    $PASSWORD_VERY_STRONG& &    (PASSWORD_TOO_SHORT* *    , PASSWORD_WEAK. .    0com.macromedia.SourceModTime58Bi¸ pageContext#Lcoldfusion/runtime/NeoPageContext; 56    7getOut()Ljavax/servlet/jsp/JspWriter; 9:javax/servlet/jsp/JspContext<
=;parentLjavax/servlet/jsp/tagext/Tag; ?@    Acom.adobe.coldfusion.*CbindImportPath(Ljava/lang/String;)V EF
G
I _whitespace%(Ljava/io/Writer;Ljava/lang/String;)V KL
M(class$coldfusion$tagext$lang$ImportedTagLjava/lang/Class;"coldfusion.tagext.lang.ImportedTagQforName%(Ljava/lang/String;)Ljava/lang/Class; STjava/lang/ClassV
WU OP    Y_initTagP(Ljava/lang/Class;ILjavax/servlet/jsp/tagext/Tag;)Ljavax/servlet/jsp/tagext/Tag; [\
]"coldfusion/tagext/lang/ImportedTag__setCurrentLineNo(I)V ab
cl10ne
../cftags/gadminisetName:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V kl
`m&coldfusion/runtime/AttributeCollectionojava/lang/Objectqidspassword_very_weakuvarw([Ljava/lang/Object;)V y
pzsetAttributecollection(Ljava/util/Map;)V |} coldfusion/tagext/lang/ModuleTag
€~    hasEndTag(Z)V ‚ƒcoldfusion/tagext/GenericTag…
†„
doStartTag()I ˆ‰
€Š    _pushBody_(Ljavax/servlet/jsp/tagext/BodyTag;ILjavax/servlet/jsp/JspWriter;)Ljavax/servlet/jsp/JspWriter; Œ
Ž    Very Weakwrite ’Fjava/io/Writer”
•“ doAfterBody —‰
€˜_popBody=(ILjavax/servlet/jsp/JspWriter;)Ljavax/servlet/jsp/JspWriter; š›
œdoEndTag ž‰#javax/servlet/jsp/tagext/TagSupport 
¡ŸdoCatch(Ljava/lang/Throwable;)V £¤
€¥    doFinally §
€¨ password_weakªWeak¬password_medium®Medium°password_strong²Strong´password_very_strong¶ Very Strong¸password_unsafeºUnsafe Password¼password_too_short¾    Too ShortÀ'
 
<script type="text/javascript">
/* jQuery Password Strength Plugin (pstrength) - A jQuery plugin to provide accessibility functions
 * Author: Tane Piper (digitalspaghetti@gmail.com) 
 * Website: http://digitalspaghetti.me.uk
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
 * This code uses a modified version of Steve Moitozo's algorithm (http://www.geekwisdom.com/dyn/passwdmeter)
 */
(function($){
    $.extend($.fn, {
        pstrength : function(options) {
            var options = $.extend({
                verdects:    ["Â$class$coldfusion$tagext$io$OutputTagcoldfusion.tagext.io.OutputTagÅ ÄP    Çcoldfusion/tagext/io/OutputTagÉ
ʊ_autoscalarize1(Lcoldfusion/runtime/Variable;)Ljava/lang/Object; ÌÍ
Î_String&(Ljava/lang/Object;)Ljava/lang/String; ÐÑcoldfusion/runtime/CastÓ
ÔÒ
ʘcoldfusion/tagext/QueryLoop×
؟
Ø¥
ʨ","ÜÒ"],
                colors:     ["#f00","#c06", "#f60","#3c0","#3f0"],
                scores:     [10,15,30,40],
                common:        ["password","sex","god","123456","123","liverpool","letmein","qwerty","monkey"],
                minchar:    6
            },options);        
            return this.each(function(){
                var infoarea = $(this).attr('id');
                $(this).after('<div class="pstrength-info" id="' + infoarea + '_text"></div>');
                $(this).after('<div class="pstrength-bar" id="' + infoarea + '_bar" style="border: 1px solid white; font-size: 1px; height: 2px; width: 0px;"></div>');
                $(this).keyup(function(){                
                    $.fn.runPassword($(this).val(), infoarea, options);
                });
            });
        },
        runPassword : function (password, infoarea, options){
            // Check password
            nPerc = $.fn.checkPassword(password, options);
            // Get controls
            var ctlBar = "#" + infoarea + "_bar"; 
            var ctlText = "#" + infoarea + "_text";        
            // Color and text
            if (nPerc == -200) {
                strColor = '#f00';
                strText = 'Þ€';
                $(ctlBar).css({width: "0%"});
            }        
            else if (nPerc < 0 && nPerc > -199) {
                strColor = '#ccc';
                strText = 'à l';
                $(ctlBar).css({width: "1%"});
            }
            else if(nPerc <= options.scores[0])
            {
                   strColor = options.colors[0];
                strText = options.verdects[0];
                $(ctlBar).css({width: "1%"});
            }
            else if (nPerc > options.scores[0] && nPerc <= options.scores[1])
            {
                   strColor = options.colors[1];
                strText = options.verdects[1];
                $(ctlBar).css({width: "25%"});
            }
            else if (nPerc > options.scores[1] && nPerc <= options.scores[2])
            {
                   strColor = options.colors[2];
                strText = options.verdects[2];
                $(ctlBar).css({width: "50%"});
            }
            else if (nPerc > options.scores[2] && nPerc <= options.scores[3])
            {
                   strColor = options.colors[3];
                strText = options.verdects[3];
                $(ctlBar).css({width: "75%"});
            }
            else
            {
                   strColor = options.colors[4];
                strText = options.verdects[4];
                $(ctlBar).css({width: "99%"});
            }
            $(ctlBar).css({backgroundColor: strColor});
            $(ctlText).html("<span style='color: " + strColor + ";'>" + strText + "</span>");
        },
        checkPassword : function(password, options)
        {
            var intScore = 0;
            var strVerdict = options.verdects[0];    
            // PASSWORD LENGTH
            if (password.length < options.minchar)                         // Password too short
            {
                intScore = (intScore - 100)
            }
            else if (password.length >= options.minchar && password.length <= (options.minchar + 2)) // Password Short
            {
                intScore = (intScore + 6)
            }
            else if (password.length >= (options.minchar + 3) && password.length <= (options.minchar + 4))// Password Medium
            {
                intScore = (intScore + 12)
            }
            else if (password.length >= (options.minchar + 5))                    // Password Large
            {
                intScore = (intScore + 18)
            }
            if (password.match(/[a-z]/))                              // [verified] at least one lower case letter
            {
                intScore = (intScore + 1)
            }
            if (password.match(/[A-Z]/))                              // [verified] at least one upper case letter
            {
                intScore = (intScore + 5)
            }
            // NUMBERS
            if (password.match(/\d+/))                                 // [verified] at least one number
            {
                intScore = (intScore + 5)
            }
            if (password.match(/(.*[0-9].*[0-9].*[0-9])/))             // [verified] at least three numbers
            {
                intScore = (intScore + 7)
            }
            // SPECIAL CHAR
            if (password.match(/.[!,@,#,$,%,^,&,*,?,_,~]/))            // [verified] at least one special character
            {
                intScore = (intScore + 5)
            }
            // [verified] at least two special characters
            if (password.match(/(.*[!,@,#,$,%,^,&,*,?,_,~].*[!,@,#,$,%,^,&,*,?,_,~])/))
            {
                intScore = (intScore + 7)
            }
            // COMBOS
            if (password.match(/([a-z].*[A-Z])|([A-Z].*[a-z])/))        // [verified] both upper and lower case
            {
                intScore = (intScore + 2)
            }
            if (password.match(/([a-zA-Z])/) && password.match(/([0-9])/)) // [verified] both letters and numbers
            {
                intScore = (intScore + 3)
            }
             // [verified] letters, numbers, and special characters
            if (password.match(/([a-zA-Z0-9].*[!,@,#,$,%,^,&,*,?,_,~])|([!,@,#,$,%,^,&,*,?,_,~].*[a-zA-Z0-9])/))
            {
                intScore = (intScore + 3)
            }
            for (var i=0; i < options.common.length; i++) {
                if (password.toLowerCase() == options.common[i]) {
                    intScore = -200;
                }
            }
            return intScore;
        }
    });
})(jQuery);
</script>âmetaDataLjava/lang/Object; äå    æthisLcfpstrength2ecfm862478168;LocalVariableTableCode<clinit>varscope"Lcoldfusion/runtime/VariableScope;locscopeLcoldfusion/runtime/LocalScope; getMetadata()Ljava/lang/Object;runPageoutLjavax/servlet/jsp/JspWriter;valuemodule0$Lcoldfusion/tagext/lang/ImportedTag;mode0It6Ljava/lang/Throwable;t7t8t9t10t11module1mode1t14t15t16t17t18t19module2mode2t22t23t24t25t26t27module3mode3t30t31t32t33t34t35module4mode4t38t39t40t41t42t43module5mode5t46t47t48t49t50t51module6mode6t54t55t56t57t58t59output7 Lcoldfusion/tagext/io/OutputTag;mode7t62t63t64t65output8mode8t68t69t70t71output9mode9t74t75t76t77output10mode10t80t81t82t83output11mode11t86t87t88t89output12mode12t92t93t94t95output13mode13t98t99t100t101LineNumberTablejava/lang/Throwable^1
"&*.OPÄPäåë#*·
±ê èéìë=R¸X³ZƸX³È»pY½r·{³ç±ê èé ë[*+,·**+,¶µ**+,¶µ**+,¶µ!**#+,¶µ%**'+,¶µ)**++,¶µ-**/+,¶µ1±ê [èé[íî[ïðñòë"²ç°ê èéóòëÛfç*´8¶>L*´BN*D¶H*+J¶N*+J¶N*²Z-¶^À`:*¶dfhj¶n»pY½rYtSYvSYxSYvS·{¶¶‡¶‹Y6™5*+¶L+‘¶–¶™šÿõ¨§:¨¿:*+¶L©¶¢  :¨#°¨§#:        ¶¦¨§:
¨
¿: ¶©© *+J¶N*²Z-¶^À`: *¶d fhj¶n »pY½rYtSY«SYxSY«S·{¶ ¶‡ ¶‹Y6 ™5*  +¶L+­¶– ¶™šÿõ¨§:¨¿:* +¶L© ¶¢  :¨#°¨§#: ¶¦¨§:¨¿: ¶©©*+J¶N*²Z-¶^À`:*¶dfhj¶n»pY½rYtSY¯SYxSY¯S·{¶¶‡¶‹Y6™5*+¶L+±¶–¶™šÿõ¨§:¨¿:*+¶L©¶¢  :¨#°¨§#:¶¦¨§:¨¿:¶©©*+J¶N*²Z-¶^À`:*¶dfhj¶n»pY½rYtSY³SYxSY³S·{¶¶‡¶‹Y6™5*+¶L+µ¶–¶™šÿõ¨§:¨¿:*+¶L©¶¢  : ¨# °¨§#:!!¶¦¨§:"¨"¿:#¶©©#*+J¶N*²Z-¶^À`:$*¶d$fhj¶n$»pY½rYtSY·SYxSY·S·{¶$¶‡$¶‹Y6%™5*$%+¶L+¹¶–$¶™šÿõ¨§:&¨&¿:'*%+¶L©'$¶¢  :(¨#(°¨§#:)$)¶¦¨§:*¨*¿:+$¶©©+*+J¶N*²Z-¶^À`:,*¶d,fhj¶n,»pY½rYtSY»SYxSY»S·{¶,¶‡,¶‹Y6-™5*,-+¶L+½¶–,¶™šÿõ¨§:.¨.¿:/*-+¶L©/,¶¢  :0¨#0°¨§#:1,1¶¦¨§:2¨2¿:3,¶©©3*+J¶N*²Z-¶^À`:4*    ¶d4fhj¶n4»pY½rYtSY¿SYxSY¿S·{¶4¶‡4¶‹Y65™5*45+¶L+Á¶–4¶™šÿõ¨§:6¨6¿:7*5+¶L©74¶¢  :8¨#8°¨§#:949¶¦¨§::¨:¿:;4¶©©;+ö–*²È-¶^ÀÊ:<*¶d<¶‡<¶ËY6=™+**´¶Ï¸Õ¶–<¶Öšÿì<¶Ù  :>¨#>°¨§#:?<?¶Ú¨§:@¨@¿:A<¶Û©A+ݶ–*²È-¶^ÀÊ:B*¶dB¶‡B¶ËY6C™+**´1¶Ï¸Õ¶–B¶ÖšÿìB¶Ù  :D¨#D°¨§#:EBE¶Ú¨§:F¨F¿:GB¶Û©G+ݶ–*²È    -¶^ÀÊ:H*¶dH¶‡H¶ËY6I™+**´!¶Ï¸Õ¶–H¶ÖšÿìH¶Ù  :J¨#J°¨§#:KHK¶Ú¨§:L¨L¿:MH¶Û©M+ݶ–*²È
-¶^ÀÊ:N*¶dN¶‡N¶ËY6O™+**´¶Ï¸Õ¶–N¶ÖšÿìN¶Ù  :P¨#P°¨§#:QNQ¶Ú¨§:R¨R¿:SN¶Û©S+ݶ–*²È -¶^ÀÊ:T*¶dT¶‡T¶ËY6U™+**´)¶Ï¸Õ¶–T¶ÖšÿìT¶Ù  :V¨#V°¨§#:WTW¶Ú¨§:X¨X¿:YT¶Û©Y+ß¶–*²È -¶^ÀÊ:Z*.¶dZ¶‡Z¶ËY6[™+**´%¶Ï¸Õ¶–Z¶ÖšÿìZ¶Ù  :\¨#\°¨§#:]Z]¶Ú¨§:^¨^¿:_Z¶Û©_+ᶖ*²È -¶^ÀÊ:`*3¶d`¶‡`¶ËY6a™+**´-¶Ï¸Õ¶–`¶Öšÿì`¶Ù  :b¨#b°¨§#:c`c¶Ú¨§:d¨d¿:e`¶Û©e+㶖°bu“_“˜“_j³¿_¹¼¿_j³Î_¹¼Î_¿ËÎ_ÎÓÎ_:UX_X]X_/x„_~„_/x“_~“_„“_“˜“_ÿ_"_ô=I_CFI_ô=X_CFX_IUX_X]X_Åàã_ãèã_º_     _º_     __#_‹¦©_©®©_€ÉÕ_ÏÒÕ_€Éä_ÏÒä_Õáä_äéä_Qlo_oto_F›_•˜›_Fª_•˜ª_›§ª_ª¯ª_36_6;6_ Vb_\_b_ Vq_\_q_bnq_qvq_£ÑÝ_×ÚÝ_£Ñì_×Úì_Ýéì_ìñì_LX_RUX_Lg_RUg_Xdg_glg_™ÇÓ_ÍÐÓ_™Çâ_ÍÐâ_Óßâ_âçâ_BN_HKN_B]_HK]_NZ]_]b]_½É_ÃÆÉ_½Ø_ÃÆØ_ÉÕØ_ØÝØ_
8D_>AD_
8S_>AS_DPS_SXS_…³¿_¹¼¿_…³Î_¹¼Î_¿ËÎ_ÎÓÎ_êþfçèéçôõçöåç?@ç÷øçùúçûüçýåçþåçÿü    çü
çå çø çú çüçåçåçüçüç    åç
øç úç üç åçåçüçüçåçøçúçüçåçå çü!çü"çå#çø$çú%çü&çå'çå(çü)ç ü*ç!å+ç"ø,ç#ú-ç$ü.ç%å/ç&å0ç'ü1ç(ü2ç)å3ç*ø4ç+ú5ç,ü6ç-å7ç.å8ç/ü9ç0ü:ç1å;ç23<ç4ú=ç5å>ç6ü?ç7ü@ç8åAç93Bç:úCç;åDç<üEç=üFç>åGç?3Hç@úIçAåJçBüKçCüLçDåMçE3NçFúOçGåPçHüQçIüRçJåSçK3TçLúUçMåVçNüWçOüXçPåYçQ3ZçRú[çSå\çTü]çUü^çVå_çW3`çXúaçYåbçZücç[üdç\åe]Î3Q[! æÛå«¡«pgq6-7üô    þ        ¯¯®ˆ**)¥¥¤~  ù››št...ï.‘3‘33j323