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 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353
|
cacti (1.2.24+ds1-1+deb12u5) bookworm-security; urgency=medium
* Non-maintainer upload by the Security Team.
* Fix CVE-2024-27082: Stored XSS vulnerability.
* Fix CVE-2024-43362: XSS (Cross-Site Scripting) Vulnerability.
The `fileurl` parameter is not properly sanitized when
saving external links in `links.php` . Morever, the said
fileurl is placed in some html code which is passed to
the `print` function in `link.php` and `index.php`,
finally leading to stored XSS
* Fix CVE-2024-43363: Remote Code Execution (RCE) by
log poisoning. An admin user can create a device with
a malicious hostname containing php code and repeat
the installation process to use a php file as the
cacti log file. After having the malicious hostname end
up in the logs (log poisoning), one can simply go to the
log file url to execute commands to achieve RCE.
* Fix CVE-2024-43364: Stored XSS (Cross-Site Scripting) Vulnerability.
The `title` parameter is not properly sanitized when
saving external links in links.php . Morever, the said
title parameter is stored in the database and reflected back
to user in index.php, finally leading to stored XSS.
* Fix CVE-2024-43365: Stored XSS (Cross-Site Scripting) Vulnerability.
The`consolenewsection` parameter is not properly sanitized
when saving external links in links.php . Morever, the said
consolenewsection parameter is stored in the database and
reflected back to user in `index.php`, finally leading
to stored XSS.
* Fix CVE-2024-45598: Local File Inclusion (LFI) Vulnerability
via Poller Standard Error Log Path.
An admin can change Poller Standard Error Log Path parameter in
either Installation Step 5 or in Configuration->Settings->Paths tab
to a local file inside the server. Then simply going to Logs tab and
selecting the name of the local file will show its content
on the web UI.
* Fix CVE-2024-54145: SQL Injection vulnerability when request
automation devices.
A SQL injection vulnerability in get_discovery_results function
of automation_devices.php.paramter networkconcat into
sql_wherewithout Sufficient filtration.
* Fix CVE-2025-22604: Authenticated RCE via multi-line SNMP responses
Due to a flaw in multi-line SNMP result parser, authenticated users
can inject malformed OIDs in the response. When processed by
ss_net_snmp_disk_io() or ss_net_snmp_disk_bytes(), a part of each
OID will be used as a key in an array that is used as part of a
system command, causing a command execution vulnerability.
* Fix CVE-2025-24367: Arbitrary File Creation leading to RCE
An authenticated Cacti user can abuse graph creation and graph
template functionality to create arbitrary PHP scripts in the
web root of the application, leading to remote code
execution on the server.
* Fix CVE-2025-24368: SQL Injection vulnerability when using
tree rules through Automation API
Some of the data stored in automation_tree_rules.php is not
thoroughly checked and is used to concatenate the SQL statement in
build_rule_item_filter() function from lib/api_automation.php ,*
finally resulting in SQL injection.
-- Bastien Roucariès <rouca@debian.org> Sun, 09 Feb 2025 14:36:48 +0000
cacti (1.2.24+ds1-1+deb12u4) bookworm; urgency=medium
* Non-maintainer upload by the LTS Security Team.
* Add SALSA-CI.
* Backport autopkgtest from trixie.
-- Bastien Roucariès <rouca@debian.org> Sat, 24 Aug 2024 14:04:49 +0000
cacti (1.2.24+ds1-1+deb12u3) bookworm; urgency=medium
* Non-maintainer upload by the LTS Security Team.
* Fix CVE-2024-25641: RCE vulnerability when importing packages
An arbitrary file write vulnerability, exploitable through the
"Package Import" feature, allows authenticated users having
the "Import Templates" permission to execute arbitrary PHP
code on the web server (RCE).
* Fix CVE-2024-29894: XSS vulnerability when using JavaScript
based messaging API.
raise_message_javascript from lib/functions.php now uses purify.js
to fix CVE-2023-50250 (among others).
However it still generates the code out of unescaped
PHP variables $title and $header.
If those variables contain single quotes, they can be used
to inject JavaScript code.
* Fix CVE-2024-31443. XSS vulnerability when managing data queries
Some of the data stored in form_save() function in data_queries.php
is not thoroughly checked and is used to concatenate the
HTML statement in grow_right_pane_tree() function from lib/html.php,
finally resulting in XSS.
* Fix CVE-2024-31444: XSS vulnerability when reading tree rules with
Automation API.
Some of the data stored in automation_tree_rules_form_save() function
in automation_tree_rules.php is not thoroughly checked and is used
to concatenate the HTML statement in form_confirm() function from
lib/html.php , finally resulting in XSS.
* Fix CVE-2024-31445: SQL injection vulnerability
A SQL injection vulnerability in `automation_get_new_graphs_sql`
function of `api_automation.php` allows authenticated users to exploit
these SQL injection vulnerabilities to perform privilege escalation
and remote code execution. In `api_automation.php` line 856, the
`get_request_var('filter')` is being concatenated into the SQL
statement without any sanitization. In `api_automation.php` line 717,
The filter of `'filter'` is `FILTER_DEFAULT`, which means there is no
filter for it
* Fix CVE-2024-31458: SQL injection vulnerability
Some of the data stored in `form_save()` function in
`graph_template_inputs.php` is not thoroughly checked and is used to
concatenate the SQL statement in
`draw_nontemplated_fields_graph_item()` function from
`lib/html_form_templates.php` , finally resulting in SQL injection
* Fix CVE-2024-31459: Remote code execution
There is a file inclusion issue in the lib/plugin.php file.
Combined with SQL injection vulnerabilities, RCE can be implemented.
* Fix CVE-2024-31460: SQL code injection
Some of the data stored in `automation_tree_rules.php` is not
thoroughly checked and is used to concatenate the SQL statement in
`create_all_header_nodes()` function from `lib/api_automation.php` ,
finally resulting in SQL injection. Using SQL based secondary
injection technology, attackers can modify the contents of the Cacti
database, and based on the modified content, it may be possible to
achieve further impact, such as arbitrary file reading, and even
remote code execution through arbitrary file writing
* Fix CVE-2024-34340: type juggling vulnerability
Cacti calls `compat_password_hash` when users set their
password. `compat_password_hash` use `password_hash` if there is it,
else use `md5`. When verifying password, it calls
`compat_password_verify`. In `compat_password_verify`,
`password_verify` is called if there is it, else use
`md5`. `password_verify` and `password_hash` are supported on PHP <
5.5.0, following PHP manual. The vulnerability is in
`compat_password_verify`. Md5-hashed user input is compared with
correct password in database by `$md5 == $hash`. It is a loose
comparison, not `===`.
-- Bastien Roucariès <rouca@debian.org> Sun, 11 Aug 2024 17:28:54 +0000
cacti (1.2.24+ds1-1+deb12u2) bookworm-security; urgency=high
[Sylvain Beucler]
* Non-maintainer upload by the LTS Security Team.
* Fix patch for CVE-2023-39360.
* Fix patch for CVE-2023-39513.
* Backport security patches: CVE-2023-49084, CVE-2023-49085,
CVE-2023-49086, CVE-2023-49088, CVE-2023-50250, CVE-2023-50569
(Closes: #1059254)
[Paul Gevers]
* Depends on node-dompurify and link purify.js instead of using upstream
vendored version
-- Sylvain Beucler <beuc@debian.org> Fri, 15 Mar 2024 10:53:35 +0100
cacti (1.2.24+ds1-1+deb12u1) bookworm-security; urgency=high
* Backport security patches from 1.2.25: CVE-2023-39357, CVE-2023-39358,
CVE-2023-39359, CVE-2023-39360, CVE-2023-39361, CVE-2023-39362,
CVE-2023-39364, CVE-2023-39365, CVE-2023-39366, CVE-2023-39510,
CVE-2023-39511, CVE-2023-39512, CVE-2023-39513, CVE-2023-39514,
CVE-2023-39515, CVE-2023-39516
-- Paul Gevers <elbrus@debian.org> Fri, 27 Oct 2023 22:23:02 +0200
cacti (1.2.24+ds1-1) unstable; urgency=medium
* New upstream version 1.2.24+ds1
* Refresh patches
-- Paul Gevers <elbrus@debian.org> Wed, 01 Mar 2023 22:06:58 +0100
cacti (1.2.23+ds1-2) unstable; urgency=medium
* d/rules: fix for new 'file' behavior (Closes: #1028764)
* Adapt for changes in php-phpmyadmin-motranslator (Closes: #1028141)
* d/rules: don't compress CHANGELOG symlink
* tests: several improvement + re-add my own old check-all-pages
-- Paul Gevers <elbrus@debian.org> Thu, 19 Jan 2023 10:30:29 +0100
cacti (1.2.23+ds1-1) unstable; urgency=medium
* New upstream version 1.2.23+ds1
* Refresh patches + drop patches from upstream
* Install all templates during first install instead of only the ones
from 2017
* Fix upstream issue #5127: importing templates fails
* Adapt check_all_pages testing to upstream changes by simplifying
Debian changes
* Fix ui-state-default color in classical theme (Closes: #972947)
* Drop apache2.2 support (only in oldoldoldstable by now)
* Drop debian/NEWS as it's old
* Update and add several lintian overrides
* Don't load external images in documentation to prevent privacy breach:
remove-external-images.patch
-- Paul Gevers <elbrus@debian.org> Thu, 05 Jan 2023 10:25:44 +0100
cacti (1.2.22+ds1-3) unstable; urgency=medium
[ Athos Ribeiro ]
* Update installing guides for NO_AUTO_CREATE_USER
[ Paul Gevers ]
* Add 7f0e16312dd5ce20f93744ef8b9c3b0f1ece2216.patch to fix
CVE-2022-46169 (Closes: #1025648)
* Update debian.php.dist for the fix above to incorporate the
configuration changes in the package defaults
-- Paul Gevers <elbrus@debian.org> Tue, 06 Dec 2022 22:16:33 +0100
cacti (1.2.22+ds1-2) unstable; urgency=medium
[ Debian Janitor ]
* Remove constraints unnecessary since buster (oldstable)
* Set upstream metadata fields: Bug-Database, Bug-Submit, Repository-Browse.
* Update standards version to 4.6.1, no changes needed.
* Remove empty maintainer scripts: cacti (preinst)
[ Paul Gevers ]
* Add 31bfd4b5c1d33af02911441111a430597b9f1021.patch to fix php8.2
deprecation warnings (Closes: #1022229)
-- Paul Gevers <elbrus@debian.org> Wed, 02 Nov 2022 21:24:38 +0100
cacti (1.2.22+ds1-1) unstable; urgency=medium
* New upstream version 1.2.22+ds1
* Update 07_cli-include-path.patch
-- Paul Gevers <elbrus@debian.org> Tue, 06 Sep 2022 21:53:38 +0200
cacti (1.2.21+ds1-1) unstable; urgency=medium
* New upstream version 1.2.21+ds1
* Refresh and update old patch stack
* Replace dependency on libjs-d3 by node-d3 (Closes: #913385)
* README.Debian: reorder paragraphs (Closes: #979176)
-- Paul Gevers <elbrus@debian.org> Thu, 14 Jul 2022 17:05:21 +0200
cacti (1.2.20+ds1-2) unstable; urgency=medium
* Revert "Replace dependency on libjs-d3 by node-d3" (Opens: #913385)
node-d3 isn't ready to replace libjs-d3 as it's not available on armel
(bugs filed)
-- Paul Gevers <elbrus@debian.org> Fri, 22 Apr 2022 20:45:58 +0200
cacti (1.2.20+ds1-1) unstable; urgency=medium
* New upstream version 1.2.20+ds1
CVE-2022-0730: Under certain ldap conditions, Cacti authentication can
be bypassed with certain credential types. (Closes: #1008693)
* d/copyright: update
* strip away and replace some of the new midwinter theme like we do for
other themes
* Refresh patches and drop those that are part of 1.2.20
* cacti.links: drop dejavu links as cacti now finds system fonts by
itself
* Replace dependency on libjs-d3 by node-d3 (Closes: #913385)
* Replace broken package (Upstream bug: #4685)
* Fix multiple issues with new cli scripts (detected by test suite
failure)
-- Paul Gevers <elbrus@debian.org> Thu, 14 Apr 2022 10:16:39 +0200
cacti (1.2.19+ds1-2) unstable; urgency=medium
* Support cacti on PHP8.1 by incorporating upstream patches
* Support the use of a csrf secret key out of the box
-- Paul Gevers <elbrus@debian.org> Sun, 19 Dec 2021 22:03:28 +0100
cacti (1.2.19+ds1-1) unstable; urgency=medium
* New upstream version 1.2.19+ds1
- billboard.js replaces c3.*
- Drop obsolete patches
- Update 07_cli-include-path.patch to cover new cli
* watch: update to scan github as the downloads page doesn't work
anymore
* Building documentation in .github fails, don't do that as it's not
needed anyways
* [tests] use upstreams version of check_all_pages, but adapted
* [tests] run upstream check_cli_version.sh test
-- Paul Gevers <elbrus@debian.org> Mon, 22 Nov 2021 20:30:48 +0100
cacti (1.2.16+ds1-2) unstable; urgency=medium
* Add 0001-Fixing-Issue-4022.patch (Closes: #979998)
- CVE-2020-35701: SQL injection via data_debug.php
* Add 0001-Fixing-Issue-4019.patch
There are a few places in the current code where an attacker, once
having gained access to the Cacti database through a SQL injection,
could modify data in tables to possibly expose an stored XSS bug in
Cacti.
-- Paul Gevers <elbrus@debian.org> Sun, 17 Jan 2021 21:26:01 +0100
cacti (1.2.16+ds1-1) unstable; urgency=medium
* New upstream release 1.2.16
-- Paul Gevers <elbrus@debian.org> Fri, 11 Dec 2020 21:54:47 +0100
cacti (1.2.15+ds1-2) unstable; urgency=medium
* Add upstream patch to fix autopkgtest failure:
643766b909d0824b08c2ab6c7a82ac0055a5d730.patch
-- Paul Gevers <elbrus@debian.org> Fri, 06 Nov 2020 20:32:36 +0100
cacti (1.2.15+ds1-1) unstable; urgency=medium
* New upstream version 1.2.15
* Update font-awesome-path.patch
-- Paul Gevers <elbrus@debian.org> Tue, 03 Nov 2020 21:57:12 +0100
cacti (1.2.14+ds1-1) unstable; urgency=medium
* New upstream version 1.2.14
-- Paul Gevers <elbrus@debian.org> Thu, 27 Aug 2020 10:55:38 +0200
cacti (1.2.13+ds1-2) unstable; urgency=medium
* Enable upstream CHANGELOG to be viewed
-- Paul Gevers <elbrus@debian.org> Fri, 31 Jul 2020 21:31:50 +0200
cacti (1.2.13+ds1-1) unstable; urgency=medium
* New upstream version 1.2.13
- refresh 07_cli-include-path.patch
-- Paul Gevers <elbrus@debian.org> Mon, 27 Jul 2020 21:39:25 +0200
cacti (1.2.12+ds1-1) unstable; urgency=medium
* New upstream version 1.2.12
* Bump libphp-phpmailer dependency
* Update debian.php.dist to match updated include/config.php
-- Paul Gevers <elbrus@debian.org> Thu, 07 May 2020 22:09:43 +0200
cacti (1.2.11+ds1-1) unstable; urgency=medium
* New upstream version 1.2.11
- Refresh patch
* Update debian.php.dist to match updated include/config.php
-- Paul Gevers <elbrus@debian.org> Tue, 07 Apr 2020 22:22:16 +0200
cacti (1.2.10+ds1-1) unstable; urgency=medium
* New upstream version 1.2.10
CVE-2020-8813 graph_realtime.php allows remote attackers to execute
arbitrary OS commands via shell metacharacters in a cookie, if a guest
user has the graph real-time privilege (Closes: 951832)
-- Paul Gevers <elbrus@debian.org> Sun, 08 Mar 2020 21:26:46 +0100
cacti (1.2.9+ds1-1) unstable; urgency=medium
* New upstream version 1.2.9+ds1
CVE-2020-7106 Remote Code Execution (by privileged users) via shell
metacharacters in the Performance Boost Debug Log field of
poller_automation.php. (Closes: #949996)
CVE-2020-7237 Stored XSS in data_sources.php,
color_templates_item.php, graphs.php, graph_items.php,
lib/api_automation.php, user_admin.php, and user_group_admin.php, as
demonstrated by the description parameter in data_sources.php (Closes:
#949997)
-- Paul Gevers <elbrus@debian.org> Thu, 13 Feb 2020 20:38:01 +0100
cacti (1.2.8+ds1-1) unstable; urgency=medium
* New upstream version 1.2.8+ds1
CVE-2019-17357 When viewing graphs, some input variables are not
properly checked (SQL injection possible) (Closes: #947374)
CVE-2019-17358 When deserializating data, ensure basic sanitization
has been performed (Closes: #947375)
-- Paul Gevers <elbrus@debian.org> Sat, 28 Dec 2019 17:44:58 +0100
cacti (1.2.7+ds1-1) unstable; urgency=medium
* New upstream version 1.2.7+ds1
CVE-2019-16723 Security issue allows to view all graphs (Closes:
#941036)
* Refresh and drop patches to match upstream
-- Paul Gevers <elbrus@debian.org> Sun, 06 Oct 2019 22:10:41 +0200
cacti (1.2.6+ds1-3) unstable; urgency=medium
* Add 0001-Resolving-Issue-2984.patch to fix CI error
-- Paul Gevers <elbrus@debian.org> Sat, 28 Sep 2019 10:49:29 +0200
cacti (1.2.6+ds1-2) unstable; urgency=medium
[ Paul Gevers]
* Fix autopkgtest regression with 0001-Resolving-Issue-2899.patch from
upstream
* Apache skipped the php section in apache.conf since PHP 7 (Closes:
#934898)
* Translations were broken since 1.2.4+ds1-1. Import upstream solution
enabling the use of php-phpmyadmin-motranslator.
[ Rafael David Tinoco ]
* Prepare sql commands for MySQL 8 (See: #933683)
-- Paul Gevers <elbrus@debian.org> Tue, 17 Sep 2019 20:31:04 +0200
cacti (1.2.6+ds1-1) unstable; urgency=medium
* New upstream release 1.2.6
- Refresh 07_cli-include-path.patch
* Remove obsolete link to phpgettext
-- Paul Gevers <elbrus@debian.org> Thu, 05 Sep 2019 17:47:08 +0200
cacti (1.2.4+ds1-2) unstable; urgency=medium
* tests: add new IMPORT messages to ignore filter
-- Paul Gevers <elbrus@debian.org> Mon, 15 Jul 2019 19:33:58 +0200
cacti (1.2.4+ds1-1) unstable; urgency=medium
* New upstream release 1.2.4
- Fixed upgrade script (Closes: #931702)
- Fixed snmp gauges (Closes: #930254)
* Depends i.s.o. Recommends on php-gmp (Closes: #930252)
* Drop dependency on php-php-gettext as it is optional for cacti and it's
going to be removed due to CVE-2016-6175
* Refresh patches
* Update d/debian.php.dist with changes in include/config.php
-- Paul Gevers <elbrus@debian.org> Sun, 14 Jul 2019 21:33:08 +0200
cacti (1.2.2+ds1-2) unstable; urgency=medium
* Add 0001-Resolving-Issue-2581.patch from upstream (Closes: #926700)
CVE-2019-11025: In clearFilter() in utilities.php no escaping occurs
before printing out the value of the SNMP community string (SNMP
Options) in the View poller cache, leading to XSS.
-- Paul Gevers <elbrus@debian.org> Tue, 09 Apr 2019 20:42:38 +0200
cacti (1.2.2+ds1-1) unstable; urgency=medium
* New upstream release 1.2.2
* tests: add one more exception for Ubuntu (Closes: #922437)
* Depend on fonts-fork-awesome instead of fonts-font-awesome (Closes:
#922779)
* Fix typo in debian.php.dist (Closes: #922651)
-- Paul Gevers <elbrus@debian.org> Tue, 26 Feb 2019 21:48:07 +0100
cacti (1.2.1+ds1-2) unstable; urgency=medium
* tests: add some items back that are seen on Ubuntu's setup
* Migrate from libjs-chartjs to libjs-chart.js due to bug #922288
-- Paul Gevers <elbrus@debian.org> Thu, 14 Feb 2019 10:19:02 +0100
cacti (1.2.1+ds1-1) unstable; urgency=medium
* New upstream release 1.2.1
- spikekiller is now a class (Closes: #916814)
* Upload to unstable
* Bump dependency on libphp-phpmailer
* Bump Standards (no changes)
* Declare R³: binary-targets (Thanks lintian)
-- Paul Gevers <elbrus@debian.org> Sun, 27 Jan 2019 21:22:59 +0100
cacti (1.2.0~beta4+ds1-1) experimental; urgency=medium
* New upstream release 1.2.0-beta4
* Refresh patches
* Disable internal log rotation by default as Debian uses its own log
rotate mechanism by default
-- Paul Gevers <elbrus@debian.org> Sun, 02 Dec 2018 20:51:32 +0100
cacti (1.2.0~beta2+ds1-1) experimental; urgency=medium
* New upstream release 1.2.0-beta1
* CVE-2009-4112: remote authenticated administrators can gain
privileges; circumvented via optional whitelisting (Closes: #561339)
* Refresh patches
* Drop most of
enable-system-jqueryui-by-putting-cacti-changes-in-main.css.patch
* Bump Standards to 4.2.1
* Bump debhelper compat level
* [tests] Add mysql-server test back but with
skip-not-installable. Debian has mariadb-server as
default-mysql-server so we definitely want to test that. Ubuntu has
mysql-server, so we also want to test that, but that isn't in
testing. (Closes: #903238)
* Drop recursive chown from postins (thanks lintian)
* Add perl-path.patch to make sh-bang in perl scripts compliant with
policy (thanks lintian)
* Add font-awesome-path.patch as the path to the css is slightly
different in the system version
* Add fix-update-for-beta-versions.patch to ensure updating works
* Adapt documentation building as upstream reworked it completely
-- Paul Gevers <elbrus@debian.org> Sun, 28 Oct 2018 16:00:51 +0100
cacti (1.1.38+ds1-2) unstable; urgency=medium
* [tests] Adapt for MariaDB 10.3 which triggers a new message in the
log that doesn't seem to result in different output otherwise
* [tests] Add mysql-server test back but with
skip-not-installable. Debian has mariadb-server as
default-mysql-server so we definitely want to test that. Ubuntu has
mysql-server, so we also want to test that, but that isn't in
testing. (Closes: #903238)
-- Paul Gevers <elbrus@debian.org> Thu, 27 Dec 2018 20:33:59 +0100
cacti (1.1.38+ds1-1) unstable; urgency=medium
* New upstream release 1.1.38
* [tests] Remove mysql-server test as it isn't available in testing
-- Paul Gevers <elbrus@debian.org> Wed, 18 Apr 2018 12:03:05 +0200
cacti (1.1.37+ds1-1) unstable; urgency=medium
* New upstream release 1.1.37
* CVE-2018-10059: (XSS) the get_current_page function in
lib/functions.php relies on $_SERVER['PHP_SELF'] instead of
$_SERVER['SCRIPT_NAME'] to determine a page name
* CVE-2018-10060: (XSS) does not properly reject unintended characters,
related to use of the sanitize_uri function in lib/functions.php
* CVE-2018-10061: (XSS) makes certain htmlspecialchars calls without the
ENT_QUOTES flag
-- Paul Gevers <elbrus@debian.org> Thu, 12 Apr 2018 17:43:13 +0200
cacti (1.1.36+ds1-1) unstable; urgency=medium
* New upstream release 1.1.36
- Refresh patches
-- Paul Gevers <elbrus@debian.org> Wed, 28 Feb 2018 16:22:50 +0100
cacti (1.1.35+ds1-1) unstable; urgency=medium
* New upstream version 1.1.35
* [tests] Fix for nofollow directive that prevented recursive crawl
(Closes: #889893)
* [tests] Prevent cron job from running
* Add 0001-issue-1336-Fix-issue-with-config-not-being-defined-1.patch
from upstream
-- Paul Gevers <elbrus@debian.org> Tue, 13 Feb 2018 19:26:14 +0100
cacti (1.1.34+ds1-1) unstable; urgency=medium
* New upstream version 1.1.34
- Includes updates for php7.2 (Closes: #889181)
-- Paul Gevers <elbrus@debian.org> Tue, 06 Feb 2018 22:31:34 +0100
cacti (1.1.31+ds1-1) unstable; urgency=medium
* New upstream version 1.1.31
* Update autopkgtest for new output since 1.1.29
-- Paul Gevers <elbrus@debian.org> Wed, 17 Jan 2018 18:50:00 +0100
cacti (1.1.30+ds1-1) unstable; urgency=medium
* New upstream version 1.1.30
-- Paul Gevers <elbrus@debian.org> Fri, 05 Jan 2018 20:30:47 +0100
cacti (1.1.29+ds1-1) unstable; urgency=medium
* New upstream version 1.1.29
* Refresh documentation tar ball
* Drop php-mysqlnd from alternative list of dependencies, it doesn't
exist
* Use dh-linktree embed-weakdep option to prevent strong dependencies
(requires dh-linktree 0.5)
-- Paul Gevers <elbrus@debian.org> Wed, 27 Dec 2017 20:57:21 +0100
cacti (1.1.28+ds1-3) unstable; urgency=medium
* Rebuild against new version of libjs-jquery-colorpicker (Closes:
#884756)
-- Paul Gevers <elbrus@debian.org> Thu, 21 Dec 2017 21:16:13 +0100
cacti (1.1.28+ds1-2) unstable; urgency=medium
* Add remove-global-mysql-command.patch (Closes: #882356)
-- Paul Gevers <elbrus@debian.org> Fri, 24 Nov 2017 11:07:11 +0100
cacti (1.1.28+ds1-1) unstable; urgency=medium
* New upstream version 1.1.28
- Drop applied patches
* [tests] Allow time out to happen in the logs as Ubuntu's autopkgtest
servers are often too slow
-- Paul Gevers <elbrus@debian.org> Sun, 19 Nov 2017 21:34:10 +0100
cacti (1.1.27+ds1-3) unstable; urgency=medium
* CVE-2017-16641: remote authenticated administrators can execute
arbitrary os commands via the path_rrdtool parameter in an action=save
request to settings.php (Closes: #881110)
* CVE-2017-16660: remote authenticated administrators can conduct Remote
Code Execution attacks by placing the Log Path under the web root, and
then making a remote_agent.php request containing PHP code in a
Client-ip header
* CVE-2017-16661: remote authenticated administrators can read arbitrary
files accessible by the web-server user by placing the Log Path into a
private directory, and then making a clog.php?filename= request
* CVE-2017-16785: reflected XSS via the PATH_INFO to host.php
(reintroduction of CVE-2017-15194)
* Bump standards to 4.1.1
* Set Priority to optional
-- Paul Gevers <elbrus@debian.org> Tue, 14 Nov 2017 20:14:34 +0100
cacti (1.1.27+ds1-2) unstable; urgency=medium
* Add upstream commit b44eb52 as 0001-Another-crack-at-issue-1039.patch
because they likely reintroduced part of CVE-2017-15194. Thanks to
autopkgtest
-- Paul Gevers <elbrus@debian.org> Fri, 27 Oct 2017 14:41:48 +0200
cacti (1.1.27+ds1-1) unstable; urgency=medium
* New upstream version 1.1.27
- Drop CVE-2017-15194.patch again
* [tests] Add new note to list of exceptions to fix failure
-- Paul Gevers <elbrus@debian.org> Mon, 23 Oct 2017 20:52:49 +0200
cacti (1.1.25+ds1-1) unstable; urgency=medium
* New upstream version 1.1.25
* Improve the override_dh_fixperms target as some files were
unintentionally missed and thus make cacti reproducible again
* CVE-2017-15194: XSS in global_session.php
- Add CVE-2017-15194.patch (Closes: #878304)
- Add check to autopkgtest
-- Paul Gevers <elbrus@debian.org> Fri, 13 Oct 2017 21:09:04 +0200
cacti (1.1.21+ds1-1) unstable; urgency=medium
* New upstream version 1.1.21
* Bump standards version to 4.1.0 (no changes)
-- Paul Gevers <elbrus@debian.org> Fri, 08 Sep 2017 14:48:59 +0200
cacti (1.1.18+ds1-1) unstable; urgency=medium
* New upstream version 1.1.18
- Drop patches from upstream and refresh the others
* Bump standards version to 4.0.1 (no changes)
* Stop installing csrf/LICENSE file (thanks lintian)
-- Paul Gevers <elbrus@debian.org> Sat, 19 Aug 2017 18:46:41 +0200
cacti (1.1.17+ds1-2) unstable; urgency=medium
* CVE-2017-12927 XSS vulnerability in spikekill.php (Closes: #872478)
* [tests] fix grep expression to unblock Ubuntu
* [tests] Add improve-boost-logging-on-fresh-installs.patch and don't
filter on the fixed messages
* Fix typo in previous changelog message
-- Paul Gevers <elbrus@debian.org> Fri, 18 Aug 2017 21:15:23 +0200
cacti (1.1.17+ds1-1) unstable; urgency=medium
* New upstream version 1.1.17
* Make the autopkgtest stricter now upstream reduced the noise
-- Paul Gevers <elbrus@debian.org> Wed, 16 Aug 2017 14:04:31 +0200
cacti (1.1.16+ds1-1) unstable; urgency=medium
* New upstream release
- Fixes CVE-2017-12065 spikekill.php might allow remote attackers to
execute arbitrary code via the avgnan, outlier-start, or outlier-end
parameter (Closes: #870353)
- Fixes CVE-2017-12066 Cross-site scripting (XSS) vulnerability in
aggregate_graphs.php (Closes: #870354)
-- Paul Gevers <elbrus@debian.org> Thu, 03 Aug 2017 09:38:54 -0400
cacti (1.1.15+ds1-1) unstable; urgency=medium
* New upstream release
- Fixes CVE-2017-11691 Cross-site scripting (XSS) vulnerability in
auth_profile.php (Closes: #869848)
* Lower the Depends on dbc to include ~ to ease backports
-- Paul Gevers <elbrus@debian.org> Thu, 27 Jul 2017 10:40:05 -0400
cacti (1.1.13+ds1-1) unstable; urgency=medium
* New upstream release
* Update documentation from upstream
-- Paul Gevers <elbrus@debian.org> Fri, 14 Jul 2017 20:37:39 +0200
cacti (1.1.12+ds1-1) unstable; urgency=medium
* New upstream release
* CVE-2017-10970 XSS vulnerability via link.php fixed (Closes: #867532)
* Add version to jquery-tablesorter
* Make sure that autopkgtests at least run again
-- Paul Gevers <elbrus@debian.org> Fri, 07 Jul 2017 21:07:43 +0200
cacti (1.1.10+ds1-6) unstable; urgency=medium
* Fix upgrade script to find the upgrade functions in the Debian file
layout (Closes: #866773) Thanks to ISHIKAWA Mutsumi
* Add upgrade code for grant on mysql.time_zone_name
* Bump version of dbconfig-common to ensure we have the fix for postinst
code working
-- Paul Gevers <elbrus@debian.org> Tue, 04 Jul 2017 07:16:45 +0200
cacti (1.1.10+ds1-5) unstable; urgency=medium
* Fix piuparts issue where the scripts are changed due to loading the
template files in the postinst script. See upstream bug #810. (Closes:
#866140)
-- Paul Gevers <elbrus@debian.org> Tue, 27 Jun 2017 21:41:26 +0200
cacti (1.1.10+ds1-4) unstable; urgency=medium
* Upload to unstable
* Bump standards version to 4.0.0 (no changes)
-- Paul Gevers <elbrus@debian.org> Tue, 20 Jun 2017 21:45:13 +0200
cacti (1.1.10+ds1-3) experimental; urgency=medium
* Add texlive-formats-extra to the BD to get /usr/bin/pdfjadetex on the
path ($HOME didn't solve it)
-- Paul Gevers <elbrus@debian.org> Fri, 16 Jun 2017 17:35:31 +0200
cacti (1.1.10+ds1-2) experimental; urgency=medium
* Define $HOME in d/rules to (hopefully) prevent FTBFS (which is
unfortunately unreproducible in any of the setups I tested)
-- Paul Gevers <elbrus@debian.org> Thu, 15 Jun 2017 20:04:06 +0200
cacti (1.1.10+ds1-1) experimental; urgency=medium
* New upstream release
* Upstream uses a newer jquery-tablesorter then in Debian so some links
are not working (newer version is waiting in NEW) and once available
should be used as minimal required version
* Add cacti-spine and snmpd to suggests
* Use soft-links in for site/log and site/rra instead of patches
* Add missing depends (php-gd, php-json, php-ldap)
* Debian dropped suhosin long time ago, so stop patching for it
* Add select grant on mysql.time_zone_name
* Add default templates during install (got dropped upstream since
1.0.0)
* Add some paths to cacti settings during install to accommodate for the
by-pass of cacti/install web-page.
* Add note about time zones and the suggested manual action in NEWS and
README
-- Paul Gevers <elbrus@debian.org> Tue, 13 Jun 2017 06:47:18 +0200
cacti (1.1.5+ds1-2) experimental; urgency=medium
* Upload with fix from 0.8.8h+ds1-10:
Fix upgrades from before 0.8.8h+ds1-8; that version started to ship
symlinks to directories in libjs-jquery-jstree without making sure
dpkg handled that properly during upgrades (Closes: #861858)
-- Paul Gevers <elbrus@debian.org> Fri, 05 May 2017 21:23:09 +0200
cacti (1.1.5+ds1-1) experimental; urgency=medium
* New upstream release
* Generate translations from source
* Bump compat level to 10
* Build documentation from source (requires second tar ball generated
from upstream git)
* Generate jQueryUI datepicker links instead of hardcoding them
* Don't install *.po files, they aren't used
* Add lintian overrides for script-non-executable to avoid carrying a
patch forever, while they shouldn't need to be executable in Debian
* Don't install useless examples (outside of doc tree even)
* Handle the new paper-plane theme as the other themes
* Clean up d/TODO a bit
-- Paul Gevers <elbrus@debian.org> Wed, 03 May 2017 20:47:08 +0200
cacti (1.1.3+ds1-1) experimental; urgency=medium
* New upstream release
- Drop loads of obsoleted patches
- Refresh or rework remaining patches
* Strip loads of embedded javascript projects and build and/or depend on
the proper Debian package
* Drop dependency on libadodb as upstream moved away from it
* Prepare to buid documentation
* Add patches to move adaptations in the embedded jquery-ui css file to
the cacti main.css file as upstream intents to support that
* Update d/TODO as not everything is done as I want it
-- Paul Gevers <elbrus@debian.org> Mon, 17 Apr 2017 19:50:52 +0200
cacti (0.8.8h+ds1-10) unstable; urgency=medium
* Fix upgrades from before 0.8.8h+ds1-8; that version started to ship
symlinks to directories in libjs-jquery-jstree without making sure
dpkg handled that properly during upgrades (Closes: #861858)
-- Paul Gevers <elbrus@debian.org> Fri, 05 May 2017 13:55:33 +0200
cacti (0.8.8h+ds1-9) unstable; urgency=medium
* Add enable_faster_polling_than_cron.patch to replace the use of the
deprecated split() function (Closes: #860271)
-- Paul Gevers <elbrus@debian.org> Thu, 13 Apr 2017 22:05:30 +0200
cacti (0.8.8h+ds1-8) unstable; urgency=medium
* Depend on libjs-jquery-jstree instead of using embedded version
* Replace use_debian_javascript_packages.patch with links to the Debian
packages instead (more transparent)
* Add fix_export_for_debian_packages.patch to avoid export failure
-- Paul Gevers <elbrus@debian.org> Wed, 14 Dec 2016 21:20:24 +0100
cacti (0.8.8h+ds1-7) unstable; urgency=medium
* Previous upload was screwed up. Doing it better this time I hope.
-- Paul Gevers <elbrus@debian.org> Sat, 10 Dec 2016 07:47:07 +0100
cacti (0.8.8h+ds1-6) unstable; urgency=medium
* Fix links for path change in libjs-jquery-ui-theme-ui-lightness,
hopefully bug #846515 will not get fixed
-- Paul Gevers <elbrus@debian.org> Wed, 07 Dec 2016 21:44:51 +0100
cacti (0.8.8h+ds1-5) unstable; urgency=medium
[ Emilio Pozuelo Monfort ]
* CVE-2016-2313-guest-auth.patch:
+ Fix regression in the fix for CVE-2016-2313 that broke guest user
logins. Thanks to Matus Uhlar for the report. (Closes: #833420)
[ Paul Gevers ]
* Recommend default-mysql-server instead of MariaDB and MySQL
-- Paul Gevers <elbrus@debian.org> Mon, 05 Sep 2016 21:10:12 +0200
cacti (0.8.8h+ds1-4) unstable; urgency=medium
* Improve autopkgtest situation and avoid failure when it is not needed
-- Paul Gevers <elbrus@debian.org> Thu, 16 Jun 2016 22:11:20 +0200
cacti (0.8.8h+ds1-3) unstable; urgency=medium
* Save more log files during autopkgtesting
* Add check on errors during testing (Closes: #825644)
* Add javascript-common to Depends to ensure jquery is usable
-- Paul Gevers <elbrus@debian.org> Fri, 10 Jun 2016 20:20:04 +0200
cacti (0.8.8h+ds1-2) unstable; urgency=medium
* Update make_cacti_sql_mode-strict_compatible.patch to also drop
ONLY_FULL_GROUP_BY (Follow-up for LP: #1578144)
* Lower versioned dependency on libphp-adodb to be Ubuntu compatible
-- Paul Gevers <elbrus@debian.org> Thu, 02 Jun 2016 22:06:59 +0200
cacti (0.8.8h+ds1-1) unstable; urgency=medium
* New upstream release
- CVE-2016-3659 SQL Injection Vulnerability in graph_view.php (Closes:
#820521)
* Drop obsolete patches (applied upstream)
* Update tests to depend on javascript-common
* Don't test lighttpd for now
* Drop jquery.js from the source (wasn't used anyways in Debian), so no
need to document it in d/copyright
* Add make_cacti_sql_mode-strict_compatible.patch to enable cacti to
work with the default settings of MySQL 5.7 (LP: #1578144)
-- Paul Gevers <elbrus@debian.org> Sat, 14 May 2016 22:26:35 +0200
cacti (0.8.8g+ds1-3) unstable; urgency=medium
* Bump standards (no changes)
* Fix noninteractive install failure
* Reorder test Depends in the hope that MySQL|MariaDB-server get setup
before cacti
* Refresh all patches
* Take over patch 11_1571432_mysqli.patch from Ubuntu (although not
really needed anymore) to fix mysqli extension in the install script
(LP: #1571432)
-- Paul Gevers <elbrus@debian.org> Fri, 29 Apr 2016 14:08:05 +0200
cacti (0.8.8g+ds1-2) unstable; urgency=medium
[ Paul Gevers ]
* Next upstream version, strip include/js/jquery.js from source
* Make sure the web-interface doesn't ask unnecessary questions after
install (Closes: #783447)
* Use the MySQL connection password as initial password for the admin
user (Closes: #783446) and mention this in the NEWS.Debian file
* Improve fix for CVE-2016-2313 such that it doesn't cause a regression
for setups that rely on http authentication of users unknown to cacti.
- Add improve_fix_for_CVE-2016-2313.patch
* Full update of README.Debian
* CVE-2016-3172
- Add CVE-2016-3172_sql-injection-in-tree.php.patch (Closes: #818647)
* Update Brazilian Portuguese, thanks to Diego Neves (Closes: #816962)
* Drop old code in postinst to (re)move old configuration files this is
already fixed in jessie
* Bump version for libphp-adodb as mysqli doesn't work otherwise
* Add new php-xml & php-mbstring to Depends for php7.0
* Add add_rrdtool-1.5_to_utilities.php.patch to prevent error in
utilities.php with rrdtool version 1.5
* Remove Mahyuddin from uploaders (thanks for the fish)
[ Nishanth Aravamudan ]
* Update to PHP7.0 dependencies (LP: #1544352)
* Default to mysqli driver for database connection, as the mysql driver
has been removed in PHP7.0 (LP: #1544352) (Closes: #815987)
-- Paul Gevers <elbrus@debian.org> Sun, 17 Apr 2016 19:55:43 +0200
cacti (0.8.8g+ds1-1) unstable; urgency=medium
* New upstream release
- CVE-2016-2313 (closes: #814353)
- Drop included patches
* Update d/copyright with new years
* Enable installation on MariaDB by forcing the collation to latin1
* Add mariadb-server to list of recommends
* Update Vcs-* fields to https
-- Paul Gevers <elbrus@debian.org> Fri, 26 Feb 2016 13:50:34 +0100
cacti (0.8.8f+ds1-4) unstable; urgency=medium
* CVE-2015-8377: Fix SQL Injection vulnerability in graphs_new.php
* CVE-2015-8604: Fix SQL Injection vulnerability in graphs_new.php
* Depend on dbconfig-mysql or dbconfig-no-thanks instead of
dbconfig-common and mysql-client
* Bump compat level to 9
* Drop useless CFLAGS declaration in d/rules
* Drop cacti.sql_drop_tables_to_begin.patch as dbconfig-common now does
that.
* Add dependency on libjs-jquery now that version is high enough and
update use_debian_javascript_packages.patch to use it.
-- Paul Gevers <elbrus@debian.org> Sat, 09 Jan 2016 13:16:04 +0100
cacti (0.8.8f+ds1-3) unstable; urgency=high
* Add upstream patch to fix
- CVE-2015-8369 SQL Injection vulnerability in graph.php
-- Paul Gevers <elbrus@debian.org> Sat, 12 Dec 2015 14:03:40 +0100
cacti (0.8.8f+ds1-2) unstable; urgency=medium
* Update loadavg_multi_locale_friendly.patch (Closes: #793401)
* Add missing manual.css (Closes: #783416)
* Fix d/rules override_dh_*configure target (Wasn't ever run,
althought that wasn't too bad until now)
-- Paul Gevers <elbrus@debian.org> Mon, 03 Aug 2015 19:58:53 +0200
cacti (0.8.8f+ds1-1) unstable; urgency=medium
* New upstream release fixing some regressions in 0.8.8e
-- Paul Gevers <elbrus@debian.org> Tue, 21 Jul 2015 21:59:40 +0200
cacti (0.8.8e+ds1-1) unstable; urgency=high
* Imported Upstream version 0.8.8e
- CVE-2015-4634 multiple SQL Injection vulnerabilities
* Add new jquery scripts to Files-Exculded
* Refresh patches
-- Paul Gevers <elbrus@debian.org> Wed, 15 Jul 2015 19:47:00 +0200
cacti (0.8.8d+ds1-1) unstable; urgency=high
* Upload to unstable
* New upstream release
- CVE-2015-2665 Cross-site scripting (XSS) vulnerability in Cacti
before 0.8.8d allows remote attackers to inject arbitrary web script
or HTML via unspecified vectors.
- CVE-2015-4342 SQL Injection and Location header injection from cdef id
- CVE-2015-4454 SQL injection vulnerability in the
get_hash_graph_template function in lib/functions.php in Cacti before
0.8.8d allows remote attackers to execute arbitrary SQL commands via
the graph_template_id parameter to graph_templates.php.
- Unassigned CVE VN:JVN#78187936 / TN:JPCERT#98968540 Fixed SQL injection
* Remove Sean from the list of uploaders. Thanks for all the fish
(Closes: #773436)
* Fix d/p/07_cli-include-path.patch (LP: #1433665)
* Update debian/patches/fix_php_strict_warning_in_ping.patch for partial
upstream fix
* Include the virtual alternative for the recommends on mysql-server
(Closes: #781982)
* Upstream dropped unused javascripts, remove them from d/copyright
* Add patch to have upgrade script mention version 0.8.8d i.s.o. 0.8.8c
-- Paul Gevers <elbrus@debian.org> Mon, 22 Jun 2015 19:59:13 +0200
cacti (0.8.8c+ds1-1) experimental; urgency=medium
* New upstream release
* Strip several parts from the upstream source
- convenience copies (javascript and adodb) that have a corresponding
package in Debian
- other unused javascript files (some lacking source)
- font files without source
* Drop patches now applied upstream
* Upstream now has a DFSG treeview, drop Debian patches
* Drop recommends on jquery (too old for this treeview, use
convenience copy in source)
* Add patch to use system versions of javascripts
* Update d/copyright
* Update standards to 3.9.6 (no changes)
* Update d/watch, d/rules and d/copyright to download and strip source
-- Paul Gevers <elbrus@debian.org> Mon, 08 Dec 2014 21:28:05 +0100
cacti (0.8.8b+dfsg-8) unstable; urgency=high
* CVE-2014-5261
Unsufficient input sanitation leads to shell command injection
possibilities
* CVE-2014-5262
Incomplete and incorrect input parsing leads to SQL injection attack
scenarios
* Fix for CVE-2014-5043 was incomplete, improve patch
* Change CVE-2014-4002 patch to include upstream updated commits
-- Paul Gevers <elbrus@debian.org> Mon, 18 Aug 2014 19:57:43 +0200
cacti (0.8.8b+dfsg-7) unstable; urgency=medium
* Fix regression caused by fixing CVE-2014-4002 at least plugin autom8
was unusable (Closes: #755032)
* Security update
- CVE-2014-5025 Cross Site Scripting Vulnerability
- CVE-2014-5026 Cross Site Scripting Vulnerability
- CVE-2014-5043 Cross Site Scripting Vulnerability
-- Paul Gevers <elbrus@debian.org> Thu, 24 Jul 2014 21:56:48 +0200
cacti (0.8.8b+dfsg-6) unstable; urgency=high
* Add alternative php5-mysql | php5-mysqlnd (Closes: #744067)
* Security update (Closes: #742768, #752573)
- CVE-2014-2327 Cross Site Request Forgery Vulnerability
- CVE-2014-4002 Cross-Site Scripting Vulnerability
-- Paul Gevers <elbrus@debian.org> Wed, 25 Jun 2014 22:33:53 +0200
cacti (0.8.8b+dfsg-5) unstable; urgency=high
* Fix postinst for lighttpd setups which fail on update due to
lighty-enable-mod exiting with non-zero if config is already loaded
(Closes: 743727)
-- Paul Gevers <elbrus@debian.org> Sun, 06 Apr 2014 19:59:12 +0200
cacti (0.8.8b+dfsg-4) unstable; urgency=high
* Security update (Closes: 743565)
- CVE-2014-2326 Cross-site scripting (XSS) vulnerability
- CVE-2014-2328 Unspecified Remote Command Execution Vulnerability
- CVE-2014-2708 SQL injection
- CVE-2014-2709 Unspecified Remote Command Execution Vulnerability
* Bump standards (no changes needed)
* Fix VCS-Browser field
* Fix license paragraph of jstree (Thanks lintian)
-- Paul Gevers <elbrus@debian.org> Sat, 05 Apr 2014 13:03:22 +0200
cacti (0.8.8b+dfsg-3) unstable; urgency=low
* Fix Cross site scripting (upstream bug 2383)
CVE-2013-5588
* Fix SQL injection in host.php (upstream bug 2383)
CVE-2013-5589
* Fix upgrade script in cli directory for latest releases
* Automatically upgrade database during package update (prevents upstream
bug 2377)
* The code to enable lighttpd configuration from LP: #1132415 was broken
-- Paul Gevers <elbrus@debian.org> Tue, 27 Aug 2013 20:43:21 +0200
cacti (0.8.8b+dfsg-2) unstable; urgency=low
* CVE-2013-1435 fix cause a regression in the handling of empty COMMENT
lines in the rrd legend. Fixed by upstream:
fix_COMMENT_in_graph_regression_from_CVE-2013-1435.patch (Closes: #719156)
* Update jquery stylesheet to provide the cacti background color
-- Paul Gevers <elbrus@debian.org> Fri, 09 Aug 2013 22:34:26 +0200
cacti (0.8.8b+dfsg-1) unstable; urgency=low
* New upstream release
- Fixes SQL or command line injection via snmp settings or
graph creation or edition that allows privileged users to execute
arbitrary SQL commands or command line commands. CVE-2013-1434 and
CVE-2013-1435
- poller_cache_rebuild_on_install.patch included
* Add d/rules get-orig-source target and accompanying script
* Update japanese translation, thank victory (Closes: #717203)
* Update vcs-* fields (thanks lintian)
* Update standards (no changes needed)
* Update years and my address in d/copyright
* Allow any php5 SAPI provider to satify cacti dependency, thanks
Ondřej Surý (php5 maintainer). Thus reverting the solution to bug
#654843 as the original report was not a bug but a reporter mistake.
libapache2-mod-fcgid does not provide php5 SAPI.
-- Paul Gevers <elbrus@debian.org> Wed, 07 Aug 2013 20:46:58 +0200
cacti (0.8.8a+dfsg-7) unstable; urgency=low
* Fix typo in cacti.postrm which prevented proper purging (Closes: #707010)
* Update use_jquery_for_debian.patch to not load jquery-cookie if it is
not installed on the system (Closes: #708001)
-- Paul Gevers <elbrus@debian.org> Sat, 18 May 2013 12:14:02 +0200
cacti (0.8.8a+dfsg-6) unstable; urgency=low
* Improve maintenance scripts
- Prepare cacti configuration for Apache2.4 according to
http://wiki.debian.org/Apache/PackagingFor24
- Improve cacti.config to fix dpkg-reconfigure behavior for httpd's.
- Restart lighttpd if needed (LP: #1132415)
- Remove obsolete (Sarge) preinst code
* Fix the lighttpd config template for absolute path (see LP: #1132415)
* Lintian triggered improvements:
- Update watch file for +dfsg in the version
- Add dependency on mysql-client (next to virtual-mysql-client)
* Bug fixes:
- Add patch loadavg_multi_locale_friendly.patch to allow uptime script to
work independent of the local locale (Closes: #704057)
- Add patch fix_php_strict_warning_in_ping.patch to fix php 5.4 warnings
(Closes: #694159)
- Add patch poller_cache_rebuild_on_install.patch to start filling the
auto-generated graphs upon installation (Upstream: 2229)
* Move configuration files away from /usr/share/doc/cacti (policy 12.3)
* Remove obsolete RM-Upload-Allowed from d/control
* Revisited README.Debian
-- Paul Gevers <elbrus@debian.org> Sun, 05 May 2013 16:41:13 +0200
cacti (0.8.8a+dfsg-5) unstable; urgency=low
* Update debian/NEWS.Debian to explain the recommended packages for the tree,
which seem to be not installed by default upon upgrade, and make sure it is
actually installed.
-- Paul Gevers <elbrus@debian.org> Thu, 11 Apr 2013 19:57:35 +0200
cacti (0.8.8a+dfsg-4) unstable; urgency=low
* Improve jquery tree patch to show trees multilevel (Closes: #702690)
-- Paul Gevers <elbrus@debian.org> Mon, 01 Apr 2013 08:03:11 +0200
cacti (0.8.8a+dfsg-3) unstable; urgency=low
* Fixed typo in recommends libjs-jquery* i.s.o. libjs-query (Closes: #700999)
-- Paul Gevers <elbrus@debian.org> Tue, 19 Feb 2013 20:33:20 +0100
cacti (0.8.8a+dfsg-2) unstable; urgency=low
* Upload to unstable after acknowledge by the RT, see #694850.
-- Paul Gevers <elbrus@debian.org> Tue, 29 Jan 2013 20:41:05 +0100
cacti (0.8.8a+dfsg-1) experimental; urgency=low
* Removed non-dfsg-free treeview code from the upstream source (Closes:
#679980)
* Add jquery.jstree.js and four jstree theme files to the package to replace
the treeview functionality
* Update d/copyright to reflect above changes
* Add patches to use the jstree code
- replace_treeview_by_jquery.jstree.patch
- use_jquery_for_debian.patch
* Add libjs-jquery and libjs-jquery-cookie to recommends as they are needed by
jstree.
* Remove the logic to install plugins in /usr/local/share/cacti/plugins as the
implementation of chdir in php resolves symlinks (Closes: #681558).
- Update README.Debian and add NEWS.Debian and README.Plugins
- Update d/cacti.links and d/cacti.install
* Update my e-mail address to elbrus@debian.org
-- Paul Gevers <elbrus@debian.org> Mon, 10 Dec 2012 22:48:48 +0100
cacti (0.8.8a-3) unstable; urgency=low
* Update postrm with new debconf answers (Closes: #673764)
-- Paul Gevers <paul@climbing.nl> Mon, 21 May 2012 20:22:18 +0200
cacti (0.8.8a-2) unstable; urgency=low
* Use ts to timestamp poller errors in cron when available and add moreutils
to suggests.
* Add suhosin.memory_limit to cron and poller (Closes: #566609)
* Add dependency on ${perl:Depends} as the dependency on perl was missing
* Use a template based on config.php for debian.php creation to include
non-database options and get rid of 01_config.php.patch by creating link
to debian.php instead. Update two dependent patches.
* Add different sub folders to local resource in d/dirs
* Add cacti.sql_ensure_cron_works.patch to prevent failure of crontab after
install as the paths to rrdtool and php are not set.
* Add cacti.sql_drop_tables_to_begin.patch patch to work around bug 665742
where dbconfig-common does not drop the tables during reconfigure so we have
to do it on population of the database to prevent errors.
* Update d/copyright to include proper license info for jscalendar and
treeview (this last one needs action). Also update Cacti's license as it
has been GPL-2+ all along.
* Readded debconf question option for lighttpd lost in commit 98fed9b while
preventing the need to call for new translations. Use lower-case apache2 and
lighttpd as package names at the same time.
* Update 08_563955_local_data_id.patch with upstream bug number
* Improve rra removal on purge (one higher level directory) in postrm
-- Paul Gevers <paul@climbing.nl> Sat, 19 May 2012 07:56:04 +0200
cacti (0.8.8a-1) unstable; urgency=low
* New upstream release.
- Now includes plugin architecture (Closes: #406766)
- Don't use define_syslog_variables() (Closes: #668261)
- Allow external auth behind proxy (Closes: #660853)
* Update patches, remove last two now applied upstream
* Update d/watch to prevent selection of PIA tar ball
* Repaired old entries in d/changelog where non-ascii characters got mangled
* Remove d/s/local-options as they are for, well, local options
* Make link to cacti.sql instead of copying data again
* Remove unnecessary directories from dirs as they are generated as needed
* Clean up of debian rules for short-hand dh
- Moved permission and ownership fixes to override_dh_fixperms
- Use 644 and 755 instead of 640 and 750 as per policy (except for rra)
- Remove lib/adodb on clean (instead of build)
- Use debian/cacti.install to define which files to install where
* d/post(rm|inst) now also (un)registers with ufcr and clean-up of long
obsolete /etc/cacti/default-poller
* Append error output of poller to poller-error.log i.s.o overwriting
(Closes: #669339) and make sure the ownership/permissions are right
* Update README.Debian with info about plugin architecture
-- Paul Gevers <paul@climbing.nl> Tue, 01 May 2012 09:57:18 +0200
cacti (0.8.7i-3) unstable; urgency=low
[ Mahyuddin Susanto ]
* debian/patches/01_config.php.patch: refreshed to fix error
on upgrade because /etc/cacti/debian.php has been rewrite
during installation. (Closes: #654352), Thanks to Michael Reincke.
* debian/control: Move apache to recommends to allow other web-server to
be installed. (Closes: #654843)
* debian/cacti.templates: Updated debconf template and package description,
suggested by debian-l10n-english. (Closes: #653897)
* Update debconf translations:
- Spanish by Javier Fernández-Sanguino Peña (Closes: #656405)
- French by Christian Perrier (Closes: #657280)
- Polish by Michał Kułach. (Closes: #657294)
- Danish by Joe Hansen. (Closes: #657339)
- Dutch by Jeroen Schot. (Closes: #657468)
- Swedish by Martin Bagge. (Closes: #657546)
- Indonesian by Mahyuddin Susanto. (Closes: #657609)
- Russian by Yuri Kozlov. (Closes: #657705)
[ Sean Finney ]
* Remove lighttpd.conf at postrm purge time
* Add Paul Gevers to Uploaders field
[ Paul Gevers ]
* More updated debconf translations, thanks to Christian Perrier.
- German (Chris Leick). (Closes: #658396)
- Czech (Miroslav Kure). (Closes: #658752)
- Portuguese (Rui Branco). (Closes: #659167)
- Italian (Beatrice Torracca). (Closes: #659401)
- Basque (Iñaki Larrañaga Murgoitio). (Closes: #660641)
* Bump Standard-Version to 3.9.3 (no changes).
* session_unregister was removed in php 5.4, add patch
11_remove_deprecated_session_unregister (Closes: #665280)
* Update d/rules to fix changed output from /usr/bin/file for PHP executable
files (Closes: #665243)
-- Paul Gevers <paul@climbing.nl> Thu, 29 Mar 2012 20:55:17 +0200
cacti (0.8.7i-2) unstable; urgency=low
* Cherry-pick upstream patches
- debian/patches/10_settings_checkbox.patch
* debian/patches/05_no-adodb.patch: Updates, add semicolon at line 190.
(Closes: #653863)
* Updated last changelog to mention security bug.
-- Mahyuddin Susanto <udienz@ubuntu.com> Mon, 02 Jan 2012 14:11:15 +0700
cacti (0.8.7i-1) unstable; urgency=low
* New upstream release. (Closes: #642971)
- Fix Ping query. (Closes: #616320, #561488)
- Fix SQL injection issue in auth_login.php (Closes: #652371) this is
CVE-2011-4824
* debian/control:
- Bump Standard-Version to 3.9.2, no source changes.
- Change Maintainer to pkg-cacti. (Closes: #613857)
- Add Sean and myself as uploaders.
- Change Vcs-* to pkg-cacti.
* debian/copyright: Rewriting as per dep5 format.
* debian/source: Added to mentioning quilt patch system.
* debian/README.source: Deleted, not needed anymore
* debian/patches/09_use-utf8.patch: Use UTF-8 while creating database and
producing RRD, Thanks to Slavko <linux@slavino.sk>. (Closes: #604395)
* Refreshed pathces:
- debian/patches/01_config.php.patch
- debian/patches/05_no-adodb.patch
- debian/patches/06_config_settings.php_cactid_path.patch
- debian/patches/07_cli-include-path.patch (Closes: #604396)
- debian/patches/08_563955_local_data_id.patch (Closes: #563955)
* Drop patches apllied upstream:
- 606062_ping.pl.patch
- data_source_deactivate.patch
- graph_list_view.patch
- html_output.patch
- ldap_group_authenication.patch
- ping.patch
- poller_interval.patch
- script_server_command_line_parse.patch
* Add Lighttpd support:
- debian/docs: updated
- debian/cacti.lighttpd.conf: added
- debian/cacti.{postinst|postrm|templates}: updated
-- Mahyuddin Susanto <udienz@ubuntu.com> Fri, 30 Dec 2011 16:47:42 +0700
cacti (0.8.7g-2.1) unstable; urgency=low
* Non-maintainer upload.
* Fix pending l10n issues. Debconf translations:
- French (Christian Perrier). Closes: #614903
- German (Chris Leick). Closes: #619663
- Russian (Yuri Kozlov). Closes: #623795
- Indonesian (Mahyuddin Susanto). Closes: #623886
- Japanese (Hideki Yamane). Closes: #624821
- Danish (Joe Hansen). Closes: #625482
- Dutch; (Luk Claes). Closes: #625529
- Spanish; (Francisco Javier Cuadrado). Closes: #627032
- Swedish (Martin Bagge / brother). Closes: #628928
- Czech (Miroslav Kure). Closes: #631596
- Basque (Ander Goñi). Closes: #631900
- Portuguese (Rui Branco). Closes: #631982
-- Christian Perrier <bubulle@debian.org> Wed, 29 Jun 2011 06:57:56 +0200
cacti (0.8.7g-2) unstable; urgency=low
* import 2 new "official" upstream patches
* Cherry-pick upstream fix for ping output parsing (Closes: #606062).
* Lintian:
- Update Standards-Version to 3.9.1 (no changes necessary)
- Bump versioned Build-Dep on debhelper to >= 5
- Update config and postrm maintainer scripts to run with set -e
- Remove un-needed chmodding of php files in debian/rules
- Ensure the non-php files in the scripts dir are executable
- Update debconf template description to remove question from text.
- Selectively fix executable permissions on some files in the cli dir
- Include a README.source mentioning quilt
* Update debconf choices and default value for webserver configuration
* Update all debian/po files after changing debconf template
-- Sean Finney <seanius@debian.org> Sun, 20 Feb 2011 15:33:58 +0100
cacti (0.8.7g-1) unstable; urgency=low
* New upstream release (Closes: #592465).
* Update context in 05_no-adodb.patch to remove fuzz.
* Remove "official" patches from previous release.
* Remove 563955_undefined_index_local_data_id.patch, incorporated upstream.
* Remove CVE-2010-2092.patch, incorporated upstream.
* Import new batch of "official" upstream patches.
* Update apache configuration to work in FastCGI deployments (Closes: #593203).
- thanks to Thijs Kinkhorst <thijs@uvt.nl> (Closes: #578909).
-- Sean Finney <seanius@debian.org> Tue, 17 Aug 2010 22:22:02 +0200
cacti (0.8.7e-4) unstable; urgency=high
* Forward-port fix for CVE-2010-2092 from stable package (Closes: #582691)
-- Sean Finney <seanius@debian.org> Fri, 11 Jun 2010 21:08:02 +0000
cacti (0.8.7e-3) unstable; urgency=high
* Import upstream fix for SQL injection vulnerability (no CVE assigned yet)
- thanks to Thijs Kinkhorst <thijs@uvt.nl> (Closes: #578909).
-- Sean Finney <seanius@debian.org> Sat, 24 Apr 2010 17:54:20 +0200
cacti (0.8.7e-2) unstable; urgency=low
* Import 2 new "official" patches from upstream
* Italian debconf translation
- thanks to Alessandro De Zorzi <lota@nonlontano.it> (Closes: #548447)
* Fix for "Undefined index: local_data_id in graphs_new.php"
- new debian patch 563955_undefined_index_local_data_id.patch
- thanks to Teodor MICU <mteodor@gmail.com> (Closes: #563955)
* Fix for "must not RE-add /etc/apache2/conf.d/cacti.conf link on upgrade"
- thanks to Patrick Schoenfeld <schoenfeld@debian.org> (Closes: #561477)
* Bump debhelper compatibility level to 5
-- Sean Finney <seanius@debian.org> Sun, 24 Jan 2010 21:39:46 +0100
cacti (0.8.7e-1) unstable; urgency=low
* New upstream release (Closes: #541490).
[ Sean Finney ]
* fix path to global.php in cli scripts (Closes: #525024).
- thanks to Jean-François Masure <Jean-Francois.Masure@telindus.fr>
* add a watch file to track upstream updates (Closes: #527066).
- thanks to Laurent Bigonville <bigon@debian.org>
* downgrade Depends on logrotate to a Recommends (Closes: #526997).
- thanks to Russ Allbery <rra@debian.org>
* updates to (eu,ru,ja) debconf translations
- eu: Piarres Beobide <pi@beobide.net> (Closes: #535636).
- ru: Yuri Kozlov <yuray@komyakino.ru> (Closes: #535820).
- ja: Hideki Yamane (Debian-JP) <henrich@debian.or.jp> (Closes: #546229).
[ Sander Klein ]
* Change location of docs/text to docs/txt
* Removed 'Official' patches for 0.8.7d since they are not needed anymore
* Import 'Official' patches for 0.8.7e
* Make cli-include-path.patch apply
* use ':' with chown instead of deprecated '.'
* suggested spelling/grammar changes from lintian for ./debian/control
-- Sean Finney <seanius@debian.org> Mon, 14 Sep 2009 23:42:32 +0200
cacti (0.8.7d-1) unstable; urgency=low
* Imported Upstream version 0.8.7d
* update/massage/remove patches for new upstream release
* import new "official" patches for 0.8.7d
* remove obsolete dependencies on php4 packages (Closes: #514342)
* update default apache config php options (Closes: #459594)
* add Homepage field to control file (Closes: #494811)
* add Suggests: php5-ldap for ldap authentication (Closes: #496854) -
thanks to Paul Nijjar <paul_nijjar@yahoo.ca>
* call ucf with --debconf-ok in postinst
* copy cli directory to /usr/share/cacti (Closes: #483556)
* add gbp.conf for git-buildpackage and friends
-- Sean Finney <seanius@debian.org> Sun, 29 Mar 2009 17:51:10 +0200
cacti (0.8.7b-2) unstable; urgency=low
* ack previous NMU, thanks Andreas.
* cacti packaging now in public git repository, updated Vcs-foo headers
in debian/control appropriately.
* update Standards-Version to 3.7.3.
* New upstream "official" patch: official_invalid-upgrade-path.patch
* New upstream "official" patch: official_snmp_auth_none_notice.patch
-- Sean Finney <seanius@debian.org> Sat, 22 Mar 2008 23:58:08 +0100
cacti (0.8.7b-1.1) unstable; urgency=low
* Non-maintainer upload.
* Move ucf call in cacti.postinst above db_stop to fix freeze during
installation. (Closes: #470066)
-- Andreas Henriksson <andreas@fatal.se> Mon, 17 Mar 2008 12:52:17 +0100
cacti (0.8.7b-1) unstable; urgency=high
* New upstream release. Fixes multiple security vulnerabilities (no
CVE references yet). Closes: #465567. Thanks to Alessandro Ogier for
the suggestion about the overzealous PHP_SELF checking.
-- Sean Finney <seanius@debian.org> Wed, 13 Feb 2008 23:30:31 +0100
cacti (0.8.7a-2) unstable; urgency=high
* Update errors in copyright information (closes: #457366).
-- Sean Finney <seanius@debian.org> Sun, 30 Dec 2007 22:56:17 +0100
cacti (0.8.7a-1) unstable; urgency=high
* New upstream release, including fixes for bugs and security issues.
Includes fix for CVE-2007-6035 (sql injection vulnerability)
Closes: #452085.
-- Sean Finney <seanius@debian.org> Tue, 20 Nov 2007 18:20:13 +0100
cacti (0.8.7-1) unstable; urgency=low
* New upstream release.
* updated 06_config_settings.php_cactid_path.patch with an extra fix
for the cacti logfile path.
-- sean finney <seanius@debian.org> Wed, 24 Oct 2007 20:15:19 +0200
cacti (0.8.7~beta4-1~pre) experimental; urgency=low
* New upstream (beta) release
* Removed "official" patches incorporated into upstream version:
- 07_official_graph_debug_lockup_fix.patch
- 07_official_ping_php_version4_snmpgetnext.patch
- 07_official_thumbnail_graphs_not_working.patch
- 07_official_tree_console_missing_hosts.patch
* updated 06_config_settings.php_cactid_path.patch to use FHS compatible
locations as default values, removing the need for shipping
compatibility symlinks (closes: #366662).
* updated list of upstream docs and changelog location.
* Package now uses quilt instead of dpatch for add-on patch managment.
-- sean finney <seanius@debian.org> Tue, 09 Oct 2007 19:39:49 +0200
cacti (0.8.6j-1) unstable; urgency=low
* New upstream release. Any further etch-targeted changes will be
handled in a seperate branch.
* The following patches are now obsolete:
- 07_official_poller_output_remainder.dpatch
- 07_official_import_template_argument_space_removal.dpatch
- 07_official_dec06-vulnerability-scripts-0.8.6i.dpatch
- 07_official_dec06-vulnerability-poller-0.8.6i.dpatch
- 08_svn_timespan_breakage_fix.dpatch
* The following new "official" patches are added:
- 07_official_graph_debug_lockup_fix.dpatch
- 07_official_ping_php_version4_snmpgetnext.dpatch
- 07_official_thumbnail_graphs_not_working.dpatch
- 07_official_tree_console_missing_hosts.dpatch
-- sean finney <seanius@debian.org> Tue, 06 Mar 2007 19:00:03 +0100
cacti (0.8.6i-4) unstable; urgency=medium
* don't unconditionally source the dbconfig-common helper script
in the cacti config script, which would at least require a
pre-depends, but ultimately isn't necessary (closes: #408550).
-- sean finney <seanius@debian.org> Fri, 26 Jan 2007 23:25:11 +0100
cacti (0.8.6i-3) unstable; urgency=high
* include the list of official patches from upstream which (among other
things) resolves multiple vulnerabilities in the poller and default
scripts (Closes: 404818). thanks to Alex de Oliveira Silva for reporting
this, and Neil McGovern for a bit of consultation.
* security references:
- SA23528, CVE-2006-6799
* also include one extra changeset from svn which fixes a regression
introduced in the security patch.
* new patches:
- 07_official_dec06-vulnerability-scripts-0.8.6i.dpatch
- 07_official_dec06-vulnerability-poller-0.8.6i.dpatch
- 07_official_poller_output_remainder.dpatch
- 07_official_import_template_argument_space_removal.dpatch
- 08_svn_timespan_breakage_fix.dpatch
-- sean finney <seanius@debian.org> Mon, 15 Jan 2007 15:36:25 +0100
cacti (0.8.6i-2) unstable; urgency=low
* let cacti know where the cactid binary is, since it doesn't
seem to have a reasonable default an longer.
-- sean finney <seanius@debian.org> Mon, 30 Oct 2006 23:18:55 +0100
cacti (0.8.6i-1) unstable; urgency=low
* new upstream release
* no longer need the following patches:
- 06_official-fix_search_session_clear_issue.dpatch
- 07_official-fix_sql_syntax_related_to_default_rra_id.dpatch
- 08_official-mysql_5x_strict.dpatch
- 09_official-nth_percentile_empty_return_set_issue.dpatch
- 10_official-database_autoincrement_corruption.patch.dpatch
-- sean finney <seanius@debian.org> Sat, 28 Oct 2006 15:05:46 +0200
cacti (0.8.6h-6) unstable; urgency=low
* fix up debian/rules targets to comply with policy (closes: #395584).
* change build-depends-indep to build-depends for targets needed
in the clean rule.
* update standards-version to 3.7.2
-- sean finney <seanius@debian.org> Fri, 22 Sep 2006 21:39:12 +0200
cacti (0.8.6h-5) unstable; urgency=low
* fix for braindead bug in postrm script introduced by yours
truly. fixed a bashism in there while i was at it (closes: #387540).
thanks to Olivier Berger for finding this.
* fix for non-essential dependencies (dbconfig-common) in the config
script (closes: #388214).
* updated portuguese brazillian templates, thanks to Andre Luis Lopes
for providing them (closes: #374020).
-- sean finney <seanius@debian.org> Fri, 22 Sep 2006 21:04:19 +0200
cacti (0.8.6h-4) unstable; urgency=low
* updated dependencies to allow any httpd-providing daemon to
satisfy the requirements for cacti. that doesn't necessarily
mean any httpd will work, but i've heard from at least one
report that others do, and i'd like to make it easier for
others to test. closes: #373886.
* updated postrm to handle cases where it's being purged without
its dependencies present.
-- sean finney <seanius@debian.org> Tue, 29 Aug 2006 09:35:34 +0200
cacti (0.8.6h-3) unstable; urgency=low
* official patch from upstream to fix database corruption and display some
users were having as a result of the differing version of adodb
in debian vs. the bundled version in cacti. thanks to the upstream
authors for their help addressing the issue, and to Rene Cunningham
for testing out the initial version of the patch.
(closes: #364391, #351342)
* added note to README.Debian about potential unmet dependencies in
mixed php4/php5 environments (thanks to Uwe Storbeck), and also
about checking the cli configuration for the required modules (thanks
to Troy Poppe), and also about potential problems with the cli
poller and safe_mode (thanks to Birger Brunswiek) (closes: #359964).
* update package description to mention that it's likely that mysql-server
should also be installed unless cacti is to be configured against a
remote database system (closes: #349754).
* added a note to README.Debian about the initial user/pass, at the
suggestion of Jonas Genannt, thanks. (closes: #352724).
* changed package dependencies to list apache2 as the first of the
series of apache-providing packages, and likewise reordered the
php/apache modules (closes: #356843).
* updated version of 08_official-mysql_5x_strict.dpatch which fixes
the breakage in ldap authentication reported by Matt Clauson, thanks.
(closes: #354663)
-- sean finney <seanius@debian.org> Tue, 25 Apr 2006 19:30:50 +0200
cacti (0.8.6h-2) unstable; urgency=low
* incorporated the following official upstream patches:
- 06_official-fix_search_session_clear_issue.dpatch
- 07_official-fix_sql_syntax_related_to_default_rra_id.dpatch
- 08_official-mysql_5x_strict.dpatch
- 09_official-nth_percentile_empty_return_set_issue.dpatch
* updated german debconf translation, thanks to
Mathias Klein (closes: #345786).
* typographical corrections to package description, thanks to
Jens Siedel (closes: #346007).
-- sean finney <seanius@debian.org> Mon, 16 Jan 2006 16:02:44 +0100
cacti (0.8.6h-1) unstable; urgency=low
* new upstream release.
* upstream now officially supports mysql-5.0 (closes: #336531).
* updated README.Debian with some information about zombie mysql
processes that some users have been experiencing when viewing
graphs (closes: #344519).
* updated 01_config.php.dpatch and 05_no-adodb.dpatch to apply to new
upstream version.
* removed "official" patches which are now incorporated into the
new upstream release:
- 06_official-short_open_tag_parse_error.dpatch
- 07_official-graph_properties_zoom.dpatch
- 08_official-script_server_snmp_auth.dpatch
- 09_official-mib_file_loading.dpatch
* added a db_stop to the postinst to help prevent hangs when
restarting apache2.
-- sean finney <seanius@debian.org> Fri, 06 Jan 2006 08:24:29 +0100
cacti (0.8.6g-3) unstable; urgency=low
* cacti now uses dbconfig-common, and thus once again ships with
automagical database support.
* Portuguese translation for cacti's debconf messages by LuíFerreira
(closes: #336836).
* new Swedish translations from Daniel Nylander (closes: #338668).
-- sean finney <seanius@debian.org> Thu, 01 Dec 2005 14:59:40 +0100
cacti (0.8.6g-2) unstable; urgency=low
* updated dependencies to allow working with the php5 family of packages.
* new spanish debconf translations from César Gómez Martín and the
debian-l10n-spanish mailing list (closes: #334384).
* added a note to README.Debian about possible breakage if rrdtool
is upgraded without changing cacti settings (closes: #335737).
-- sean finney <seanius@debian.org> Sat, 29 Oct 2005 12:58:39 +0200
cacti (0.8.6g-1) unstable; urgency=low
* new upstream release.
* upstream has re-implemented the limited snmpv3 support that previously
existed but was later removed (closes: #301165).
* removed patches that are now incorporated upstream:
- 03_dos2unix_on_scripts
- 06_cmd-snmp-data-sanity-fixes
- 07_snmp_alternate_port
* added the current list of upstream patches:
- 06_official-short_open_tag_parse_error
- 07_official-graph_properties_zoom
- 08_official-script_server_snmp_auth
- 09_official-mib_file_loading
-- sean finney <seanius@debian.org> Sat, 24 Sep 2005 10:10:15 -0400
cacti (0.8.6f-5) unstable; urgency=low
* fix cacti to explicitly depend on versions of libphp-adodb starting
at the version which silently changed the path. thanks to
Mark Sheppard and Javier Fernández-Sanguino Peña for independantly
pointing this out (closes: #322707, #325376).
* fix cacti to depend on "virtual-mysql-client" virtual package, to
allow cacti to co-exist with the new mysql-5.0 series of packages.
thanks to Miah Gregory for pointing this out (closes: #326011).
-- sean finney <seanius@debian.org> Fri, 02 Sep 2005 05:55:46 -0400
cacti (0.8.6f-4) unstable; urgency=low
* cacti now properly depends on debconf.
-- sean finney <seanius@debian.org> Mon, 08 Aug 2005 13:23:24 -0400
cacti (0.8.6f-3) unstable; urgency=low
* fix to allow xml based check templates to work for hosts running
snmp on an alternate port. thanks to Justin Hallet for the
patch (closes: #317689).
* for posterity, the security fixes included in 0.8.6e-1 addressed
the following CVE id's:
- CAN-2005-1524 (idefense remote file inclusion)
- CAN-2005-1525 (idefense SQL injection)
- CAN-2005-1526 (idefense remote code execution)
* updated include path for adodb configuration (closes #320782), thanks
to loïc lefort for reporting this.
-- sean finney <seanius@debian.org> Mon, 01 Aug 2005 13:33:05 -0400
cacti (0.8.6f-2) unstable; urgency=high
* new version of the upstream 'sanity checking' patches introduced
in 0.8.6e-2 (closes: #317253).
* the updated Czech debconf translation from Martin Sín somehow
got mixed up with the debconf translation for mysql. fixed.
(closes: #317137).
* for posterity, the security updates included in the previous
update have the following CAN numbers assigned to them:
- CAN-2005-2148 (hardened-php advisories 032005 and 042005)
- CAN-2005-2149 (hardened-php advisory 052005)
* even though it's been like 5 days, and the previous version's urgency
was set to high, it has not entered testing, so urgency will remain
at this level.
-- sean finney <seanius@debian.org> Thu, 07 Jul 2005 08:05:17 -0400
cacti (0.8.6f-1) unstable; urgency=high
* new upstream release.
* this new version addresses the following security issues reported by the
php-hardened project:
- 032005: Cacti Multiple SQL Injection Vulnerabilities
- 042005: Cacti Remote Command Execution Vulnerability
- 052005: Cacti Authentication/Addslashes Bypass Vulnerability
-- sean finney <seanius@debian.org> Sat, 02 Jul 2005 01:11:18 -0400
cacti (0.8.6e-2) UNRELEASED; urgency=high
* updated standards version to 3.6.2
* patch for sanity checking of some of the cached database information,
which sometimes causes cmd.php based poller checks to hang and
eventually fail.
-- sean finney <seanius@debian.org> Tue, 28 Jun 2005 00:54:57 -0400
cacti (0.8.6e-1) unstable; urgency=high
* new upstream release.
* this release contains fixes for the arbitrary sql injection and input
validation vulnerabilities discovered in 0.8.6d.
* new Vietnamese debian translations from Clytie Siddall (closes: #313190).
* removed obsolete (and poorly written) debconf templates. thanks
to Clytie Siddall for pointing these out (closes: #313191).
* updated Czech debconf translation from Martin Sín (closes: #314620).
* lintian fixes:
- include debhelper macro in preinst
- changelog converted to UTF-8 format.
- overrides file introduced, to ignore permissions on rra dir.
-- sean finney <seanius@debian.org> Mon, 20 Jun 2005 22:30:05 -0400
cacti (0.8.6d-1) unstable; urgency=low
* new upstream release.
* removed "official patches" patch, as they are now included in this version.
* the adodb code is now removed from the build tree instead of being patched
out of the source, which makes things a bit cleaner in the long run.
* document how to login after installation. thanks to Jari Aalto for
mentioning this omission (closes: #309619).
* initial czech translation for cacti, thanks to Martin Sin (closes: #311095).
* have the cronjob output stderr to a logfile instead of stdout. thanks
to Daniel van Eeden for helping find the best solution to this
(closes: #309425).
-- sean finney <seanius@debian.org> Sat, 28 May 2005 19:42:30 -0400
cacti (0.8.6c-8) unstable; urgency=low
* import of upstream patches was b0rken. should be fixed up in this
release.
* removed the adodb code, as we're allready depending on libphp-adodb,
and should have been using that instead this whole time. i also
updated the include statement in config.php to include adodb from
its new location.
* only change ownership/permissions of debian.php the first time it is
created (which should prevent local ownership/permission changes
later on from being silently overwritten)
* don't mask errors when you can't include debian.php
* don't throw away stderr from cacti's cron.d file, and change MAILTO
to send mail to root (otherwise it'd go to www-data). thanks for
this and the preceding two fixes go to Mark Sheppard <mark@ddf.net>
(closes: #309194).
-- sean finney <seanius@debian.org> Wed, 11 May 2005 17:54:51 -0400
cacti (0.8.6c-7) unstable; urgency=low
* brought in the rest of the patches from the upstream authors.
this should fix the problem with graphing negative numbers, as
reported by Kelly Brown <kbbrown@anonymizerinc.com> (closes: #305561).
* updated dependency on php4-mysql to be versioned, to make dependencies
work better for woody users. thanks to Vittorio R Tracy <vrt@srclab.com>
for mentioning this (closes: #302563).
-- sean finney <seanius@debian.org> Wed, 06 Apr 2005 20:03:27 -0400
cacti (0.8.6c-6) unstable; urgency=low
* updated french debconf translations, thanks for this to
Christian Perrier <bubulle@debian.org> (closes: #299895).
* updated portuguese brazillian templates, thanks to
Tiago Bortoletto Vaz <tiago@debian-ba.org> (closes: #301499).
* include upstream patch to fix tree browsing when authentication
is turned off. thanks to Hannu Teulahti <teu@puv.fi> (closes: #300843).
* strip ^M's from the scripts, as it can mess up execution according
to Fred Blaise <fred.blaise@excilan.com>, thanks (closes: #300845).
* debian.php is now managed via ucf.
* generate_config is now always called in the postinst, so calling
dpkg-reconfigure should regenerate the contents of the config
file. thanks to Mickael Marchand <marchand@kde.org> (closes: #300876).
* correction in README.Debian, thanks to Miah Gregory <mace@darksilence.net>
and all the other people who emailed me about this. (closes: #299834).
* no longer depend on wwwconfig-common, only support the conf.d style
of apache configuration. this should as a side effect resolve the bug
reported by Tiago Bortoletto Vaz <tiago@debian-ba.org> (closes: #289156).
-- sean finney <seanius@debian.org> Tue, 29 Mar 2005 22:00:28 -0500
cacti (0.8.6c-5) unstable; urgency=high
* oops, let's not rm -rf the old scripts directory in the preinst,
instead try to remove the directory or fail gracefully if there
are still things in there. thanks and an apology are due to
Gérald GARCIA <gege@gege.org> (closes: #300449). this is a grave
severity bug, so urgency set to high.
* README.Debian updated to mention where custom user scripts should
go, so that they can stay out of my reach :)
-- sean finney <seanius@debian.org> Mon, 21 Mar 2005 06:12:21 -0500
cacti (0.8.6c-4) unstable; urgency=high
* turns out removing the symlink wasn't as easy, need to do a couple
extra things in the preinst otherwise dpkg will keep and follow
the symlink according to debian policy.
* minor fixes in the templates.
-- sean finney <seanius@debian.org> Sun, 06 Mar 2005 12:21:01 -0500
cacti (0.8.6c-3) unstable; urgency=high
* José de Paula Eufrásio Júnior <jose.junior@cidades.gov.br> found
that there's some voodoo with ereg that doesn't work in some
locales unless mbstring.func_overload is set to 0. this
prevents cacti from installing, which gave the bug a grave
severity, thus again the high urgency. sigh. thanks, josé
(closes: #298102).
* the script dir can't be a symlink after all, because it
breaks php scripts. thanks to Bernardo Achirica <Berny@eDonkeyCentral.com>
for finding this out (closes: #298032).
-- sean finney <seanius@debian.org> Fri, 04 Mar 2005 23:24:17 -0500
cacti (0.8.6c-2) unstable; urgency=high
* removed unneccesary poller debconf cruft.
* otherwise the same as -1, but to unstable and urgency set to high
as foretold in the previous changelog entry (closes rc bug).
-- sean finney <seanius@debian.org> Thu, 03 Mar 2005 14:21:01 -0500
cacti (0.8.6c-1) experimental; urgency=low
* new upstream release (closes: #271661).
* the cacti source package no longer produces cacti-cactid, which is
provided by a seperate upstream tarball.
* cacti site stuff now in /usr/share/cacti/site, which frees
up /usr/share for non-site related stuff.
* automagical install/upgrades of the mysql database are disabled
for the time being. see README.Debian for the rationale.
* start to bring in ucf for managing config files.
* no longer have a need for /etc/cacti/default-poller, as this is
now handled completely inside the application (closes: #292365).
* rrd files are now stored in /var/lib/cacti/rra, as they can
not be reconstituted from scratch. this closes an rc bug, so priority
on this package will be set to high when it goes into unstable, which
will be the next upload (closes: #297470).
* documentation provided for what you need to do if you're upgrading
from a 0.6.x version of cacti. i can't guarantee that it will
work, but it did for me, and this is probably the best you're
going to get (closes: #226404).
* various README.Debian updates.
* cacti online documentation now made online to symlinking to where
it already exists in /usr/share/doc.
-- sean finney <seanius@debian.org> Fri, 25 Feb 2005 19:26:57 -0500
cacti (0.8.5a-9) unstable; urgency=low
* new maintainer has adopted the package (closes: #292770)
* fixed dependencies against mysql-client, so cacti now depends
mysql client or mysql-client-4.1 (i'm hesitant to use
virtual-mysql-client since i think mysql-client < 3.23 might
not work). thanks to Robert Loomans <bts-cacti@zots.net>,
Olaf van der Spek <OvdSpek@LIACS.NL>, and the mysql maintainer
Christian Hammers <ch@debian.org> for pointing this out.
(closes: #293750, #285002).
* no longer use delaycompress in the logrotate script, since
there's not much use to leaving it uncompressed by default
and it's a lot of data. thanks, Gustavo Franco <stratus@acm.org>
(closes: #275045).
-- sean finney <seanius@debian.org> Sat, 19 Feb 2005 19:37:54 -0500
cacti (0.8.5a-8) unstable; urgency=high
* Update pt_BR, nl debconf translations. (Closes: #270277, #270787)
-- Thorsten Sauter <tsauter@debian.org> Sat, 11 Sep 2004 00:18:12 +0200
cacti (0.8.5a-7) unstable; urgency=low
* Update french translation. (Closes: #268801)
* Checking for short tags in cacti/debian.php and fix them if needed. (Closes: #269480)
* debian/README.Debian: add a new section about php short tags
-- Thorsten Sauter <tsauter@debian.org> Thu, 2 Sep 2004 23:27:27 +0200
cacti (0.8.5a-6) unstable; urgency=high
* Don't know why it was last: change priority from extra to optional
* debian/README.Debian: spell checking, add docu for php4-cli
* ship a new script which check for php4-mysql support and print a
error message to the poller logfile. With the modification of the
readme file I think the bug can be closed. (Closes: #267009)
-- Thorsten Sauter <tsauter@debian.org> Thu, 26 Aug 2004 22:52:38 +0200
cacti (0.8.5a-5) unstable; urgency=high
* debian/control: change priority from extra to optional
* replace Brazilian Portuguese translation. (Closes: #264090)
* debian/cacti.templates: Add new choice "None" to the webserver question.
This gives the user a chance to use his own webserver. (Closes: #255971)
* If we search for a local installed mysql-server check for packages
which are installed or on hold. (Closes: #263262)
* Fix some errors while removing include line from httpd.conf file. Also,
print an error message if this doesn't work. New installations should
use apache/conf.d anyway. (Closes: #253202)
* SECURITY-UPDATE: Fix SQL Injection in CACTI. (Closes: #267758)
Original upstream patch:
http://cvs.raxnet.net/cgi-bin/viewcvs.cgi/cacti/auth_login.php.diff?r1=1.48&r2=1.49
Full-Disclosure:
http://archives.neohapsis.com/archives/fulldisclosure/2004-08/0717.html
* cacti.apache.conf: Change some php4 settings to make cacti more robust/secure.
* /etc/cacti/debian.php: create long php4 tags '<?php' per default.
* running debconf2po-update
-- Thorsten Sauter <tsauter@debian.org> Wed, 23 Jun 2004 08:46:37 +0200
cacti (0.8.5a-4) unstable; urgency=low
* Change package priority to extra.
* Change cronjob. The output of the poller job is now appended to the
logfile
* Update french debconf translation: fr.po. (Closes: #253585)
* Add debconf translation: pt_BR.po. Don't know, which language
this is :-) (Closes: #252021, #252017)
* Backport cacti cvs fix (#0000176) into debian version. This will fix
compatiblity problem with the output of the df command and long device
names. (Closes: #254856)
-- Thorsten Sauter <tsauter@debian.org> Tue, 22 Jun 2004 23:26:17 +0200
cacti (0.8.5a-3) unstable; urgency=low
* Fix type in package description. (Closes: #249590)
* Update dutch debconf translation. (Closes: #250652)
-- Thorsten Sauter <tsauter@debian.org> Wed, 26 May 2004 11:49:27 +0200
cacti (0.8.5a-2) unstable; urgency=low
* Fix error in the cron script
- poll.sh isn't in the default path, we need ./poll.sh here
- make sure the cacti directory exists, otherwise we will get
a lot of error messages from cron. (Closes: #246982)
* Depend also on apache2. Still depend on php4-cgi, we need both
packages: php4 and php4-cgi. (Closes: #227295)
* Make the package apache2 "safe". Depend on php4 or libapache2-mod-php4
* Include apache2 howto into debian/README.Debian.
* Update templates, maintainer scripts to install config files for apache2
too. Update german translation
* cactid: remove upstream installation docu
-- Thorsten Sauter <tsauter@debian.org> Mon, 17 May 2004 11:12:05 +0200
cacti (0.8.5a-1) unstable; urgency=low
* New upstream version.
* Include new dutch debconf translation: nl.po. (Closes: #245916)
* Insert new dependency on php4-snmp which removes a lot of extra cpu usage.
Thanks Rafael D'Halleweyn. (Closes: #228948)
* Update debconf template and german/french translations.
Thanks Christian Perrier. (Closes: #225890)
* Including the new multi-threading poller (cactid). This binary can collect
multiple datasources at the same time. (Closes: #186013, #237055)
The program is not in the core release and not marked as stable, that's
why I include it in an extra debian package.
* The MySQL admin password is now removed from debconf database, if the user
decide to not store it. (Closes: #224214)
* The new poll.sh script report the output from the poller into a logfile.
Maybe not the best solution, but so we don't loose any output. (Closes: #234726)
* The new package containts the install/ directory also. This is useful,
if we're not upgrading from 0.8.4 but from an other version. (Closes: #227737)
* Insert an upgrade path from 0.8.4 and 0.8.5, this is done via sql scripts
in updscripts/
* A new poll.sh script is used for cronjobs. This script use either cacti
or the new cactid poller (depends on the default-poller file).
* During upgrade the databases are dumped/backuped.
* Update build system. Change to cdbs system.
* Update README.Debian file.
* Update Build-Depends/Depends
-- Thorsten Sauter <tsauter@debian.org> Mon, 26 Apr 2004 10:48:58 +0200
cacti (0.8.4-2) unstable; urgency=low
* Print a warning message, if cacti is upgraded from an old version
* extend debian/README.Debian with upgrade database instructions
-- Thorsten Sauter <tsauter@debian.org> Tue, 30 Dec 2003 13:44:55 +0100
cacti (0.8.4-1) unstable; urgency=low
* New maintainer. (Closes: #196199)
* New upstream version. (Closes: #198777)
* debian/changelog:
- convert to UTF-8
* debian/control:
- update standards version
- update build dependencies
- insert new logrotate dependency
- depend on libphp-adodb, which is also in the archive
- add apache-perl to apache dependency list. (Closes: #204290)
* debian/rules: rewrite the way to install the files into the package
* debian/cacti.cron.d:
- make the script a little bit more robust. (Closes: #211249)
* debian/README.Debian:
- replace most parts of the text.
* debian/cacti.apache.conf:
- reformat the file a little bit
- remove unused phtml extension
* debian/cacti.logrotate:
- reformat the file
-- Thorsten Sauter <tsauter@debian.org> Tue, 2 Dec 2003 11:24:49 +0100
cacti (0.6.8a-13.1) unstable; urgency=low
* NMU
* Rewrote debconf templates to more standard english with the help of
debian-l10n-english. Former templates have been left for future reference
Closes: #189401
* French debconf templates update. Closes: #197119
* More secure temp file handling in postrm. Thanks lintian.
-- Christian Perrier <bubulle@debian.org> Mon, 16 Jun 2003 22:54:11 +0200
cacti (0.6.8a-13) unstable; urgency=low
* Orphan this package
-- Igor Genibel <igenibel@debian.org> Thu, 5 Jun 2003 11:58:50 +0200
cacti (0.6.8a-12) unstable; urgency=low
* Missed to close bug #183287 (Closes: #183287)
-- Igor Genibel <igenibel@debian.org> Wed, 19 Mar 2003 09:32:25 +0100
cacti (0.6.8a-11) unstable; urgency=low
* remove quote in cron.php in order to be run in safe_mode
and /var/log/httpd/access_log -> /var/log/apache/access_log in
scripts/webhits (Closes: #177791)
* fix non installation when no mysql server is present when localhost
installation (Closes: #183288, #184324)
* fix non removal when no mysql server found (in localhost installation)
(Closes: #183288)
* fix loop when upgrading and mysql-server != localhost (Closes: #179561)
* use po-debconf
-- Igor Genibel <igenibel@debian.org> Mon, 17 Mar 2003 15:00:55 +0100
cacti (0.6.8a-10) unstable; urgency=low
* Fix various packaging mistakes
- Mention that mysql is not installed on local systems (complement to the
#172414)
- Provide a good cacti.sql (Closes: #166296)
- config.php is only store in /etc/cacti (Closes: #172410)
- Provide somes explanations for scripts provided in the package
(see the README.Debian file) (Closes: #167814)
* Standards-Version: 3.5.8
-- Igor Genibel <igenibel@debian.org> Sun, 5 Jan 2003 21:15:49 +0100
cacti (0.6.8a-9) unstable; urgency=low
* Fix extra OID in parameter. Thanks to Roberto Moreda
<moreda@alfa21.com> (Closes: #162873)
-- Igor Genibel <igenibel@debian.org> Mon, 30 Sep 2002 16:51:36 +0200
cacti (0.6.8a-8) unstable; urgency=low
* Fix typo in postinst file (Closes: #162574)
-- Igor Genibel <igenibel@debian.org> Fri, 27 Sep 2002 12:20:28 +0200
cacti (0.6.8a-7) unstable; urgency=low
* fix broken regexp in include/snmp_functions.php
* force the use of external snmp functions
-- Igor Genibel <igenibel@debian.org> Thu, 26 Sep 2002 17:39:03 +0200
cacti (0.6.8a-6) unstable; urgency=low
* apply a patch provided by Blaine Kahle <blaine@binary.net> in order to
cleanly use net-snmp5
-- Igor Genibel <igenibel@debian.org> Thu, 26 Sep 2002 16:50:24 +0200
cacti (0.6.8a-5) unstable; urgency=low
* re-add lost patch provided by Adam Conrad in order to bypass the php4-cgi
installation bug (related bugs: #147385, #147261, #129883 and #145465)
(Closes: #154822)
-- Igor Genibel <igenibel@debian.org> Thu, 26 Sep 2002 16:10:05 +0200
cacti (0.6.8a-4) unstable; urgency=low
* New recommends on iputils-ping (because of the "-w" ping option)
(Closes: #161278, #161279)
* New Standards (3.5.7.0)
* DH_COMPAT 4
-- Igor Genibel <igenibel@debian.org> Thu, 26 Sep 2002 12:35:46 +0200
cacti (0.6.8a-3) unstable; urgency=low
* Fix type in postinst file (Closes: #160694)
* Add missing ; in include/rrd_functions.php file (Closes: #160703)
-- Igor Genibel <igenibel@debian.org> Tue, 17 Sep 2002 17:51:09 +0200
cacti (0.6.8a-2) unstable; urgency=high
* Security upload:
really fix the arbitrary program code execution.
-- Igor Genibel <igenibel@debian.org> Tue, 10 Sep 2002 09:57:00 +0200
cacti (0.6.8a-1) unstable; urgency=high
* Security Upload:
prevent executing arbitrary program code under the user id of the web
server.
-- Igor Genibel <igenibel@debian.org> Mon, 9 Sep 2002 14:39:37 +0200
cacti (0.6.8-10) unstable; urgency=high
* fix the wrong setcookie() call (Closes: #157740)
* force the use of net-snmp tool instead of using native broken php-snmp
functions (Closes: #157383,#157381)
* urgency=high because cacti is not usable with the php-snmp functions
-- Igor Genibel <igor@genibel.org> Thu, 22 Aug 2002 17:20:32 +0200
cacti (0.6.8-9) unstable; urgency=low
* The «I'm too lame and stupid» version
* really add the «if exists» statement
-- Igor Genibel <igenibel@debian.org> Mon, 19 Aug 2002 16:03:44 +0200
cacti (0.6.8-8) unstable; urgency=low
* add a «if exists» when dropping the database (for partial installation)
-- Igor Genibel <igenibel@debian.org> Mon, 19 Aug 2002 15:46:58 +0200
cacti (0.6.8-7) unstable; urgency=low
* Fix uninstallable package with calling mysql differently (Closes: #156951)
-- Igor Genibel <igenibel@debian.org> Mon, 19 Aug 2002 14:41:08 +0200
cacti (0.6.8-6) unstable; urgency=low
* move php-cgi bug workaround from include/database.php to
include/config.php in order to fix the html export bug
* put strict dependency on mysql-client (because of SQL query)
(Closes: #149787)
-- Igor Genibel <igenibel@debian.org> Wed, 12 Jun 2002 19:40:29 +0200
cacti (0.6.8-5) unstable; urgency=low
* ask for password confirmation.
* Test if provided password for mysql is Ok. (Closes: #148862)
* add two scripts
-- Igor Genibel <igenibel@debian.org> Mon, 3 Jun 2002 14:11:28 +0200
cacti (0.6.8-4) unstable; urgency=low
* put php_flag short_open_tag On in apache.conf file (Closes: #147283)
* fix SQL entry for webhits script
-- Igor Genibel <igenibel@debian.org> Fri, 17 May 2002 18:45:17 +0200
cacti (0.6.8-3) unstable; urgency=low
* provide the get_stat_for_interface.pl script (I'm too lame)
-- Igor Genibel <igenibel@debian.org> Fri, 17 May 2002 18:36:44 +0200
cacti (0.6.8-2) unstable; urgency=low
* Suppress and fix wrong SQL inserts. (Closes: #147259,#147262)
Thanks to Guillaume <mail@stereo.lu>
* Applied a patch provided by Adam Conrad in order to bypass php4-cgi
installation bug
-- Igor Genibel <igenibel@debian.org> Fri, 17 May 2002 16:19:14 +0200
cacti (0.6.8-1) unstable; urgency=low
* New upstream version (Closes: #146799)
* add new script that fetches informations directly from /proc (Luc
Saillard)
* patch auth_login.php in order to move php4 dependency from Depends to
Recommends. Now only php4-cgi package is mandatory. (Luc Saillard)
* Standards-Version: 3.5.6.0
-- Igor Genibel <igenibel@debian.org> Mon, 13 May 2002 16:03:13 +0200
cacti (0.6.7-2) unstable; urgency=low
* add snmp to dependencies
* fix logrotate broken file
* add a note in README.Debian concerning php4-cgi installation
-- Igor Genibel <igor@genibel.org> Fri, 5 Apr 2002 12:59:51 +0200
cacti (0.6.7-1) unstable; urgency=low
* Initial Release. (Closes: #140461)
-- Igor Genibel <igor@genibel.org> Wed, 3 Apr 2002 15:04:11 +0200
|