@@ -100,6 +100,41 @@ function endScript() {
100
100
$ fh = fopen (__DIR__ . '/deploy.lock ' , 'w ' );
101
101
fclose ($ fh );
102
102
103
+ // Check if IP is allowed
104
+ if (defined ('IP_ALLOW ' ) && count (unserialize (IP_ALLOW ))) {
105
+ $ allow = false ;
106
+ foreach (unserialize (IP_ALLOW ) as $ ip_allow ) {
107
+ if (strpos ($ ip_allow , '/ ' ) === false ) {
108
+ // Single IP
109
+ if (inet_pton ($ _SERVER ['REMOTE_ADDR ' ]) == inet_pton ($ ip_allow )) {
110
+ $ allow = true ;
111
+ break ;
112
+ }
113
+ }
114
+ else {
115
+ // IP range
116
+ list ($ subnet , $ bits ) = explode ('/ ' , $ ip_allow );
117
+ // Convert subnet to binary string of $bits length
118
+ $ subnet = unpack ('H* ' , inet_pton ($ subnet ));
119
+ foreach ($ subnet as $ i => $ h ) $ subnet [$ i ] = base_convert ($ h , 16 , 2 );
120
+ $ subnet = substr (implode ('' , $ subnet ), 0 , $ bits );
121
+ // Convert remote IP to binary string of $bits length
122
+ $ ip = unpack ('H* ' , inet_pton ($ _SERVER ['REMOTE_ADDR ' ]));
123
+ foreach ($ ip as $ i => $ h ) $ ip [$ i ] = base_convert ($ h , 16 , 2 );
124
+ $ ip = substr (implode ('' , $ ip ), 0 , $ bits );
125
+ if ($ subnet == $ ip ) {
126
+ $ allow = true ;
127
+ break ;
128
+ }
129
+ }
130
+ }
131
+ if (!$ allow ) {
132
+ errorPage ('<h2>Access Denied</h2> ' );
133
+ endScript ();
134
+ die ();
135
+ }
136
+ }
137
+
103
138
// If there's authorization error
104
139
if (!isset ($ _GET ['t ' ]) || $ _GET ['t ' ] !== ACCESS_TOKEN || DISABLED === true ) {
105
140
errorPage ('<h2>Access Denied</h2> ' );
0 commit comments