- Dec 21, 2019
-
-
Josef Schlehofer authored
Bump version in config Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit ac4870f2)
-
Josef Schlehofer authored
Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit 101791a2)
-
Hannu Nyman authored
[OpenWrt 19.07] python3: Updated to version 3.7.6
-
Rosen Penev authored
[19.07] restic-rest-server: add package
-
Rosen Penev authored
[19.07] restic: add package
-
Josef Schlehofer authored
Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com>
-
Markus Weippert authored
Signed-off-by:
Markus Weippert <markus@gekmihesg.de>
-
Markus Weippert authored
Signed-off-by:
Markus Weippert <markus@gekmihesg.de>
-
- Dec 20, 2019
-
-
Rosen Penev authored
Fixes compilation with uClibc-ng. Signed-off-by:
Rosen Penev <rosenp@gmail.com> (cherry-picked from 93d04995)
-
- Dec 19, 2019
-
-
Rosen Penev authored
[19.07] https-dns-proxy: switch to https-dns-proxy package name
-
- Dec 18, 2019
-
-
Rosen Penev authored
msmtp-scripts: [19.07] Remove as abandoning upstream; msmtp-queue works
-
Jan Pavlinec authored
Fixes CVE-2019-1348, CVE-2019-1349, CVE-2019-1350, CVE-2019-1351, CVE-2019-1352, CVE-2019-1353, CVE-2019-1354, CVE-2019-1387, and CVE-2019-19604 And fix deprecated PKG_CPE_ID Signed-off-by:
Jan Pavlinec <jan.pavlinec@nic.cz> (cherry picked from commit 06d36ca7)
-
Josef Schlehofer authored
Refresh patch Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit 887b4e90)
-
Lucian Cristian authored
Signed-off-by:
Lucian Cristian <lucian.cristian@gmail.com> (cherry picked from commit 07f62dbe)
-
Lucian Cristian authored
Signed-off-by:
Lucian Cristian <lucian.cristian@gmail.com> (cherry picked from commit d9bb633a)
-
Lucian Cristian authored
drop upstreamed patches Signed-off-by:
Lucian Cristian <lucian.cristian@gmail.com> (cherry picked from commit af9209fb)
-
Lucian Cristian authored
also package libnssckbi.so Signed-off-by:
Lucian Cristian <lucian.cristian@gmail.com> (cherry picked from commit 4ad6e14a)
-
Lucian Cristian authored
also refresh patches Signed-off-by:
Lucian Cristian <lucian.cristian@gmail.com> (cherry picked from commit 3bacf6e9)
-
Lucian Cristian authored
Signed-off-by:
Lucian Cristian <lucian.cristian@gmail.com> (cherry picked from commit 80138937)
-
Lucian Cristian authored
and clean some comments Signed-off-by:
Lucian Cristian <lucian.cristian@gmail.com> (cherry picked from commit 4da3baea)
-
Lucian Cristian authored
Signed-off-by:
Lucian Cristian <lucian.cristian@gmail.com> (cherry picked from commit 25735197)
-
Rosen Penev authored
usleep is deprecated and is optionally not available with uClibc-ng. Added PKG_LICENSE_FILES. Added PKG_CPE_ID for proper CVE tracking. Other minor cleanups. Signed-off-by:
Rosen Penev <rosenp@gmail.com> (cherry picked from commit 1f1cec28)
-
Lucian Cristian authored
Signed-off-by:
Lucian Cristian <lucian.cristian@gmail.com> (cherry picked from commit 80c7a5c1)
-
Lucian Cristian authored
Signed-off-by:
Lucian Cristian <lucian.cristian@gmail.com> (cherry picked from commit 9a4dae73)
-
Nikos Mavrogiannopoulos authored
Signed-off-by:
Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
-
Michael Heimpold authored
This fixes: - CVE-2019-11046 - CVE-2019-11044 - CVE-2019-11045 - CVE-2019-11050 - CVE-2019-11047 Signed-off-by:
Michael Heimpold <mhei@heimpold.de> (cherry picked from commit d5c18b1d)
-
Nikos Mavrogiannopoulos authored
Signed-off-by:
Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
-
Jo-Philipp Wich authored
In the command read side, close the superfluous write end of the pipe early to ensure that EOF is reliably detected. Without that change, splice calls to read from the pipe will occasionally hang until the CGI process is eventually killed due to timeout. Signed-off-by:
Jo-Philipp Wich <jo@mein.io> (cherry picked from commit dde503da)
-
Jo-Philipp Wich authored
Implement a new "cgi-exec" applet which allows to invoke remote commands and stream their stdandard output back to the client via HTTP. This is needed in cases where large amounts of data or binary encoded contents such as tar archives need to be transferred, which are unsuitable to be transported via ubus directly. The exec call is guarded by the same ACL semantics as rpcd's file plugin, means in order to be able to execute a command remotely, the ubus session identified by the given session ID must have read access to the "exec" function of the "cgi-io" scope and an explicit "exec" permission rule for the invoked command in the "file" scope. In order to initiate a transfer, a POST request in x-www-form-urlencoded format must be sent to the applet, with one field "sessionid" holding the login session and another field "command" specifiying the commandline to invoke. Further optional fields are "filename" which - if present - will cause the download applet to set a Content-Dispostition header and "mimetype" which allows to let the applet respond with a specific type instead of the default "application/octet-stream". Below is an example for the required ACL rules to grant exec access to both the "date" and "iptables" commands. The "date" rule specifies the base name of the executable and thus allows invocation with arbitrary parameters while the latter "iptables" rule merely allows one specific set of arguments which must appear exactly in the given order. ubus call session grant '{ "ubus_rpc_session": "...", "scope": "cgi-io", "objects": [ [ "exec", "read" ] ] }' ubus call session grant '{ "ubus_rpc_session": "...", "scope": "file", "objects": [ [ "/bin/date", "exec" ], [ "/usr/sbin/iptables -n -v -L", "exec" ] ] }' Signed-off-by:
Jo-Philipp Wich <jo@mein.io> (cherry picked from commit b2a890f6)
-
Daniel F. Dickinson authored
I am upstream for msmtp-scripts and have decided to abandon the project. Therefore remove msmtp-scripts from OpenWrt -- there is already msmtp-queue which is 'good enough' for the use cases where msmtp-scripts had any relevance. This backports to 19.07 so that it doesn't become something folks are depending on. Due to changes in lock behaviour it never worked in 18.04.x, so ditching it now keeps it from being picked up again by the userbase. Signed-off-by:
Daniel F. Dickinson <cshored@thecshore.com>
-
- Dec 17, 2019
-
-
Stan Grishin authored
Signed-off-by:
Stan Grishin <stangri@melmac.net>
-
Michael Heimpold authored
[19.07] libmodbus update to 3.1.6
-
Michael Heimpold authored
Also fix the license information: in older versions the test programs were GPL 3 licensed, but meanwhile it changed to BSD license. But since this package only packages the library itself, we can safely focus only on the LGPL here which covers the library itself. While at, fix a minor nitpick during library symlink installation. Signed-off-by:
Michael Heimpold <mhei@heimpold.de>
-
- Dec 16, 2019
-
-
Jan Pavlinec authored
Signed-off-by:
Jan Pavlinec <jan.pavlinec@nic.cz> (cherry picked from commit 390da391)
-
Jan Pavlinec authored
Signed-off-by:
Jan Pavlinec <jan.pavlinec@nic.cz> (cherry picked from commit 1ac69ffc)
-
Rosen Penev authored
[openwrt-19.07] haproxy: Update HAProxy to v2.0.11
-
Christian Lachner authored
- Update haproxy download URL and hash - Remove obsolete patches Signed-off-by:
Christian Lachner <gladiac@gmail.com>
-
- Dec 13, 2019
-
-
Rosen Penev authored
[OpenWRT 19.07] nextdns: update to version 1.3.1
-
Olivier Poitrey authored
- IPv6 support - Fix HTTP/2 negociation - Improve endpoint fallback - Add support for unencrypted DNS - Many other fixes and features Signed-off-by:
Olivier Poitrey <rs@nextdns.io>
-
- Dec 12, 2019
-
-
Marcin Jurkowski authored
Signed-off-by:
Marcin Jurkowski <marcin1j@gmail.com> (cherry picked from commit 3763b238)
-