Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Fix rate limit for IPv6 | 336d34f7eaac356688ba5c251f027aff947ce9e4 | Catalin(ux) M. BOIE | 2022-02-09 14:39:28 |
Forgot to remove a function after moving it | b6fd0700cf5dde953acb0d4584a48cb404a69ab2 | Catalin(ux) M. BOIE | 2021-11-17 19:27:04 |
Prepare correctly for rgfs (missed some places) | 38d255af17a72fd9f92a8c37d4fddc8f2caf023b | Catalin(ux) M. BOIE | 2021-11-17 18:05:01 |
TODO/cosmetic | d4968bc1d9c8bbe3c4aba2479f3694a7a3863d0f | Catalin(ux) M. BOIE | 2021-11-17 18:04:36 |
More debug help | 74f45188bffd7630d0c08648433749a3ef23c9af | Catalin(ux) M. BOIE | 2021-11-15 17:34:58 |
worker: Fixed a stupid bug leading to wrong distro upgrade command | d9bc215557cd9a6f30dbc90434dc3aba46e39979 | Catalin(ux) M. BOIE | 2021-11-14 16:16:43 |
Silence an 'unpack' exception when we do not have enough bytes. | add562b15d94501a0585001db526b241c251b6e6 | Catalin(ux) M. BOIE | 2021-11-14 11:25:01 |
Run struct and fixes under the same lock | d046942317c73351473a18eb833318aec3f4d907 | Catalin(ux) M. BOIE | 2021-11-14 08:18:05 |
spec file small updates | 7aef02df6ed5f6ce4d39cd2a926a79bcdc1a3c5a | Catalin(ux) M. BOIE | 2021-11-14 06:33:35 |
Typo | b0087441b4d637c7bf6ed64b6c243ad2ec8f1493 | Catalin(ux) M. BOIE | 2021-11-14 06:15:00 |
spec: Added 'Replaces: rocketgit' to easy upgrade, fixed fixfiles | c380f40fe86ddf70b99030a6f0be93d91137b909 | Catalin(ux) M. BOIE | 2021-11-14 06:14:25 |
Fixed non debug case of rg_debug_html | 523f6784671e5f810b8435ad66ad21ea548219d8 | Catalin(ux) M. BOIE | 2021-11-14 05:58:37 |
Fix rate limit types | 0de3ee35d0d0e46521d64a596232765fb5d618a3 | Catalin(ux) M. BOIE | 2021-11-14 05:58:03 |
commented request_slowlog_timeout | 505877b567807e11f25695de58725f316f10043e | Catalin(ux) M. BOIE | 2021-11-13 17:32:46 |
systemctl git.socket rethinking | 3c71e58760f6abc69db661098840c277d4fc13fb | Catalin(ux) M. BOIE | 2021-11-13 17:25:52 |
PHP FALSE verus NULL correction | 42f8bc560a0ec2203f0974e203e6c33ec26aa983 | Catalin(ux) M. BOIE | 2021-11-13 16:31:33 |
.spec: some minor corrections | 70c3a23f507d57c729e0d710ec99060e0e88c238 | Catalin(ux) M. BOIE | 2021-11-13 16:22:11 |
Rework locking for struct update | da8c09e15e485563d9573de3aff2a7ad999d2527 | Catalin(ux) M. BOIE | 2021-11-13 16:15:45 |
gpg: specify rsa 4096 instead of default because it does not work on f34 | eccdc02a82ce87f426eebc995988f907d914a3c7 | Catalin(ux) M. BOIE | 2021-11-13 16:15:15 |
Cosmetic | 0b0a9f2d1922d4d28052c6b1fbe737cc4302ce73 | Catalin(ux) M. BOIE | 2021-11-13 16:14:37 |
File debian/control renamed from debian/control.in (similarity 100%) |
File debian/copyright renamed from debian/copyright.in (similarity 100%) |
File debian/rules renamed from debian/rules.in (similarity 100%) |
File inc/ratelimit.inc.php changed (mode: 100644) (index 8b1b86d..aa332f8) | |||
... | ... | function rg_rate_limit($db) | |
26 | 26 | ||
27 | 27 | $now = time(); | $now = time(); |
28 | 28 | ||
29 | $ip = str_replace(':', '_', rg_ip()); // escape IPv6 | ||
30 | $row = rg_cache_get('ratelimit::' . $ip); | ||
29 | $ip = rg_ip(); | ||
30 | $eip = str_replace(':', '_', $ip); // escape IPv6 | ||
31 | $row = rg_cache_get('ratelimit::' . $eip); | ||
31 | 32 | if ($row !== FALSE) | if ($row !== FALSE) |
32 | 33 | rg_log_debug('from cache: row=' . rg_array2string($row)); | rg_log_debug('from cache: row=' . rg_array2string($row)); |
33 | 34 | if (($row === FALSE) || ($row['start'] + $period < $now)) { | if (($row === FALSE) || ($row['start'] + $period < $now)) { |
34 | $params = array('t' => time() - $period, 'ip' => $ip); | ||
35 | $params = array('t' => $now - $period, 'ip' => $ip); | ||
35 | 36 | $sql = 'SELECT MIN(itime) AS start, COUNT(1) AS count' | $sql = 'SELECT MIN(itime) AS start, COUNT(1) AS count' |
36 | 37 | . ' FROM conns' | . ' FROM conns' |
37 | 38 | . ' WHERE itime >= @@t@@' | . ' WHERE itime >= @@t@@' |
... | ... | function rg_rate_limit($db) | |
53 | 54 | break; | break; |
54 | 55 | } | } |
55 | 56 | ||
56 | rg_cache_set('ratelimit::' . $ip, $row, RG_SOCKET_NO_WAIT); | ||
57 | rg_cache_set('ratelimit::' . $eip, $row, RG_SOCKET_NO_WAIT); | ||
57 | 58 | ||
58 | rg_log('IP is not over limit (count=' . $row['count'] . '/' . $limit . ')'); | ||
59 | rg_log_debug('IP is not over limit (count=' . $row['count'] . '/' . $limit . ')'); | ||
59 | 60 | $ret = $limit - $row['count']; | $ret = $limit - $row['count']; |
60 | 61 | } while (0); | } while (0); |
61 | 62 |
File root/themes/default/user/pkg/deb/pkg_list/footer.html copied from file root/themes/default/doc/demo/toc/nodata.html (similarity 100%) |
File root/themes/default/user/pkg/deb/pkg_list/header.html copied from file root/themes/default/doc/demo/toc/nodata.html (similarity 100%) |
File root/themes/default/user/pkg/deb/pkg_list/line.html copied from file root/themes/default/doc/demo/toc/nodata.html (similarity 100%) |
File root/themes/default/user/pkg/deb/pkg_list/nodata.html copied from file root/themes/default/doc/demo/toc/nodata.html (similarity 100%) |
File root/themes/default/user/pkg/deb/src_pkg_list/footer.html copied from file root/themes/default/doc/demo/toc/nodata.html (similarity 100%) |
File root/themes/default/user/pkg/deb/src_pkg_list/header.html copied from file root/themes/default/doc/demo/toc/nodata.html (similarity 100%) |
File root/themes/default/user/pkg/deb/src_pkg_list/nodata.html copied from file root/themes/default/doc/demo/toc/nodata.html (similarity 100%) |
File root/themes/default/user/pkg/rpm/priv_download.html renamed from root/themes/default/user/pkg/redhat/priv_download.html (similarity 100%) |
File root/themes/default/user/pkg/rpm/pub_download.html renamed from root/themes/default/user/pkg/redhat/pub_download.html (similarity 100%) |