Home
last modified time | relevance | path

Searched refs:ip (Results 126 – 135 of 135) sorted by path

123456

/plugin/tokenbucketauth/
H A Daction.php92 $ip = $_SERVER['REMOTE_ADDR'];
103 if(array_key_exists($ip, $this->blocked))
108 $this->_do_disable_login($ip, $this->blocked[$ip]);
115 unset($this->blocked[$ip]);
119 $ts = $this->users_tracker[$ip];
146 $this->users_tracker[$ip] = $ts;
161 if(array_key_exists($ip, $this->blocked))
162 $this->_do_disable_login($ip, $this->blocked[$ip], true);
177 $ip = $_SERVER['REMOTE_ADDR'];
181 if(empty($this->users_tracker[$ip]))
[all …]
H A Dadmin.php52 $ip = array_shift(array_keys($_REQUEST['delip']));
91 if(isset($blocked[$ip]))
94 unset($blocked[$ip]);
112 if(isset($users_tracker[$ip]))
113 unset($users_tracker[$ip]);
151 foreach($bans as $ip => $block_timestamp)
156 $new_bans[$ip] = $block_timestamp;
174 foreach($bans as $ip => $block_timestamp)
176 $host = @gethostbyaddr($ip);
177 if($host === false || $host === $ip)
[all …]
/plugin/tools/
H A Daction.php97 $ip = dirname(__FILE__)."/img/";
124 if (file_exists($ip.$i)) {
125 list($w,$h) = @getimagesize($ip.$i);
/plugin/tplmod/
H A DREADME.md2 Modify template features based on acl, ip addresses, days of week.
/plugin/vote/
H A Dsyntax.php126 $ip = clientIP( true );
127 if ( isset( $vote_log['ips'] ) && in_array( $ip, $vote_log['ips'] ) ) {
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js44860 utils.ip(l, r, state.tmp, 0);
45017 exports.ip = function ip(inL, inR, out, off) {
/plugin/xlsx2dw/packages/xmltojson/
H A Dxmltojson.js600 …1',107);Mf(77,1,{},gp);_.cb=function hp(){return Fr(this.a)};_.db=function ip(){var a;a=Gr(this.a)… function
/plugin/yourip/
H A DREADME.md3 Shows the ip information of visitor
25 Adopted by Hella Breitkopf [https://unixwitch.de/ip](https://unixwitch.de/ip), 2019
H A Dplugin.info.txt6 desc Show the ip information of visitor
H A Dsyntax.php55 $ip = getenv ("REMOTE_ADDR");
57 if (substr_count($ip,":") > 1 && substr_count($ip,".") == 0)
69 $text .= sprintf( $this->getLang('ipv6_from'), $ip); // "IPv6 connection from $ip"
75 $text .= sprintf( $this->getLang('ipv4_from'), $ip); // "IPv4 connection from $ip"
85 $text .= sprintf( $this->getLang('ipv6_from'), $ip); // "IPv6 connection from $ip"
87 $text .= sprintf( $this->getLang('ipv4_from'), $ip); // "IPv4 connection from $ip"
95 $text .= "$ip" ;

123456