summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* lts; do not unclaim packages matching prefix, but complete package nameAntoine Beaupré2018-11-261-1/+1
|
* add flag to exclude package from reviewAntoine Beaupré2018-11-231-2/+5
|
* look at the latest between update and claimed datesAntoine Beaupré2018-11-221-1/+4
| | | | | | | Previous implementation wouldn't detect updates to the file and only looked at the claimed dates. This was an oversight: the goal was to take into account normal edits to the claimed block as well, so that users can "ping" the claim to extend their claim.
* clarify closing comment: we are editing the fileAntoine Beaupré2018-11-221-1/+1
| | | | | | Previous wording seemed to indicate the user had to make a change by hand, but the --unclaim paramater forcibly makes changes to the file directly.
* inline explanation for why a package is unclaimedAntoine Beaupré2018-11-221-0/+1
| | | | | | | | A little more verbose explanation will help in diagnosing why a specific package was unclaimed. It also shows the exact diff that was used for comparison and the requested delay. Requested-by: Holger Levsen <holger@layer-acht.org>
* do not crash if --unclaim is not specifiedAntoine Beaupré2018-11-191-4/+5
|
* Remove bin/split-by-year as its printfs mangle data (\chars) and safe ↵Daniel Lange2018-11-141-47/+0
| | | | scripts are available in BTS #908678
* add default value for unclaim parameterAntoine Beaupré2018-11-091-2/+4
|
* allow for human-friendly date ranges as wellAntoine Beaupré2018-11-091-3/+15
|
* add --unclaim to remove claimed entries inactive for N secondsAntoine Beaupré2018-11-091-1/+30
|
* add --quiet argument to allow running as a cronjobAntoine Beaupré2018-11-091-6/+10
|
* more pythonic args checkingAntoine Beaupré2018-11-091-8/+3
|
* fix usage help for --verbose flag, obvious copy-paste errorAntoine Beaupré2018-11-091-1/+1
|
* Merge branch 'bam/security-tracker-update_python_haskey'Salvatore Bonaccorso2018-09-153-7/+7
|\
| * Replace "x.has_key(y)" with "y in x" syntaxBrian May2018-08-203-7/+7
| |
* | bin/gen-DSA: Fix package removal from the needed_file. Don't remove packages ↵Mike Gabriel2018-08-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | starting with the same string as the to be removed package. Before this patch (spice was to be removed, spice-gtk got removed, too). ``` diff --git a/data/dla-needed.txt b/data/dla-needed.txt index 106dbb0477..a8e6526c01 100644 --- a/data/dla-needed.txt +++ b/data/dla-needed.txt @@ -99,12 +99,6 @@ qemu (Santiago) -- samba (Holger Levsen) -- -spice (Mike Gabriel) - NOTE: 20180819: Patch is possibly incomplete. See http://www.openwall.com/lists/oss-security/2018/08/17/2 (Brian May) --- -spice-gtk (Mike Gabriel) - NOTE: 20180819: Patch is possibly incomplete. See http://www.openwall.com/lists/oss-security/2018/08/17/2 (Brian May) --- suricata (Thorsten Alteholz) -- symfony (Thorsten Alteholz) ``` With this patch (only spice gets removed, spice-gtk stays): ``` diff --git a/data/dla-needed.txt b/data/dla-needed.txt index 106dbb0477..c7a975a471 100644 --- a/data/dla-needed.txt +++ b/data/dla-needed.txt @@ -99,9 +99,6 @@ qemu (Santiago) -- samba (Holger Levsen) -- -spice (Mike Gabriel) - NOTE: 20180819: Patch is possibly incomplete. See http://www.openwall.com/lists/oss-security/2018/08/17/2 (Brian May) --- spice-gtk (Mike Gabriel) NOTE: 20180819: Patch is possibly incomplete. See http://www.openwall.com/lists/oss-security/2018/08/17/2 (Brian May) -- ```
* | Revert "bin/gen-DSA: Fix package removal from the needed_file. Don't remove ↵Mike Gabriel2018-08-311-1/+1
| | | | | | | | | | | | packages starting with the same string as the to be removed package." This reverts commit 774eb447f4302c83e57978af5a429b9cbe306ab3. Because the commit message was incomplete.
* | bin/gen-DSA: Fix package removal from the needed_file. Don't remove packages ↵Mike Gabriel2018-08-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | starting with the same string as the to be removed package. Before this patch (spice was to be removed, spice-gtk got removed, too). ``` diff --git a/data/dla-needed.txt b/data/dla-needed.txt index 106dbb0477..a8e6526c01 100644 --- a/data/dla-needed.txt +++ b/data/dla-needed.txt @@ -99,12 +99,6 @@ qemu (Santiago) -- samba (Holger Levsen) -- -spice (Mike Gabriel) - NOTE: 20180819: Patch is possibly incomplete. See http://www.openwall.com/lists/oss-security/2018/08/17/2 (Brian May) --- -spice-gtk (Mike Gabriel) - NOTE: 20180819: Patch is possibly incomplete. See http://www.openwall.com/lists/oss-security/2018/08/17/2 (Brian May) --- suricata (Thorsten Alteholz) -- symfony (Thorsten Alteholz) ``` With this patch (only spice gets removed, spice-gtk stays): ```
* | review-update-needed: also show, when verbose, how many packages are claimed ↵Antoine Beaupré2018-08-281-0/+9
| | | | | | | | per person
* | bin/gen-DSA: Try and avoid duplicated work when generating DLAs and ELAs due ↵Chris Lamb2018-08-201-0/+3
| | | | | | | | to lack of co-ordination in the -needed.txt files.
* | bin/gen-DSA: Use $needed_file.Chris Lamb2018-08-201-2/+2
|/
* Fix print statements for Python 3.6 compatibilityBrian May2018-08-068-23/+26
|
* Replace <> with != for Python 3.6 compatibilityBrian May2018-07-155-11/+11
|
* Update python exception syntax for Python 3.6 compatibilityBrian May2018-07-136-11/+11
|
* Fix check for whether /tracker/data/json needs to be recomputedJulien Cristau2018-07-061-2/+4
| | | | | | | | | | | In commit 49e287d2574ed385e31ce3d36cb3cb19f4c7785f "tracker_service: send a Last-Modified header for /tracker/data/json" I made the json_timestamp update conditional on whether the data had changed. That meant that after a few minutes, we would consider the data to be always stale, and recompute it every single time, as long as it didn't change. To fix this, use separate timestamps for "when did we check last" (json_timestamp) and "when did it change last" (json_last_modified).
* Fix Content-Type for /tracker/data/jsonJulien Cristau2018-07-061-1/+1
|
* Switch json timestamp from datetime.utcnow() to time.time()Julien Cristau2018-07-061-5/+6
|
* tracker_service: send a Last-Modified header for /tracker/data/jsonJulien Cristau2018-07-061-7/+8
|
* bin/gen-DSA: Support ELA for pushing to the repository.Chris Lamb2018-06-261-2/+2
|
* Revert executable bit for two filesEmilio Pozuelo Monfort2018-06-192-0/+0
| | | | | These are python classes used by other scripts, but they are not scripts themselves.
* Make some remaining scripts executableSalvatore Bonaccorso2018-06-194-0/+0
|
* Make bin/update-nvd executableSalvatore Bonaccorso2018-06-191-0/+0
|
* Only list packages for stable for dsa-needed listSalvatore Bonaccorso2018-06-161-1/+1
|
* check-syntax: don't hardcode sourcesEmilio Pozuelo Monfort2018-06-151-19/+21
| | | | | Get them from config.json instead. This also simplifies the parse_* functions as there's just a generic one now.
* Makefile: don't hardcode the syntax stampsEmilio Pozuelo Monfort2018-06-151-0/+6
|
* gen-DSA: allow other gen-* linksEmilio Pozuelo Monfort2018-06-081-6/+2
|
* Merge DLAFile into DSAFileEmilio Pozuelo Monfort2018-06-081-4/+1
| | | | | The only difference is that the regular expressions look for DSA or DLA, but we can just guess that based on the path.
* bin/lts-needs-forward-port.py: Update comment for new LTS distribution.Chris Lamb2018-06-011-1/+1
|
* bin/tracker_data.py: Update definitions (used elsewhere too) for new LTS ↵Chris Lamb2018-06-011-2/+2
| | | | distribution.
* bin/lts-missing-uploads.py: Update for new LTS distribution.Chris Lamb2018-06-011-1/+1
|
* Make the security tracker relocatable to another base URLRaphaël Hertzog2018-05-311-6/+5
| | | | | | Hosting the tracker at an URL different from /tracker/ was not possible without these changes. There's still one small glitch left with the hardcoding of /tracker/logo.png in static/style.css.
* Replace final : with a full stopSalvatore Bonaccorso2018-04-071-1/+1
|
* bin/report-vuln: Make the title a little cleaner.Chris Lamb2018-03-261-1/+1
|
* bin/unsupported_packages.py: Update to match new location of ↵Chris Lamb2018-03-151-2/+2
| | | | debian-security-support repository.
* handle non-URL explanations in contact-maintainersAntoine Beaupré2018-02-161-1/+1
|
* report-vuln: Stop X-Debbugs-CC'ing secure-testing-team@lists.alioth.debian.orgSalvatore Bonaccorso2018-01-291-1/+1
|
* Convert URLs from http to https where it seems safe to do soPaul Wise2018-01-172-5/+5
|
* Strip trailing white spacesRaphael Geissert2017-12-301-0/+1
|
* bin/compare-testing-status: Drop reference to SVN, mostly as a ↵Chris Lamb2017-12-301-1/+1
| | | | do-I-have-write-access check of the new Git repo.
* Add pre-commit hook to check syntaxSalvatore Bonaccorso2017-12-291-0/+31
| | | | git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@59028 e39458fd-73e7-0310-bf30-c45bca0a0e42

© 2014-2024 Faster IT GmbH | imprint | privacy policy