summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
* TrackerData: use git in instead of svnSalvatore Bonaccorso2017-12-291-7/+8
| | | | | | | | Use git-ls-remote instead of svn-info to determine the head revision. v2: Adjust GIT_URL to the security-tracker.git repository git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@59027 e39458fd-73e7-0310-bf30-c45bca0a0e42
* report-vuln: Adjust example usage path to report-vuln scirptSalvatore Bonaccorso2017-12-291-1/+1
| | | | git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@59025 e39458fd-73e7-0310-bf30-c45bca0a0e42
* lts-bts: Reference dla-needed.txt from security-tracker git repositorySalvatore Bonaccorso2017-12-291-1/+1
| | | | | | Signed-off-by: Salvatore Bonaccorso <carnil@debian.org> git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@59023 e39458fd-73e7-0310-bf30-c45bca0a0e42
* Overview page: Reference to the git repository on the salsa gitlab instanceSalvatore Bonaccorso2017-12-291-2/+2
| | | | git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@59022 e39458fd-73e7-0310-bf30-c45bca0a0e42
* tracker service: Update references in footer to salsaSalvatore Bonaccorso2017-12-291-2/+2
| | | | | | | | | | | Replace reference to bin/tracker_service.py via the salsa/gitlab webinterface. Referece the security-tracker project instead of the SVN repository. Signed-off-by: Salvatore Bonaccorso <carnil@debian.org> git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@59021 e39458fd-73e7-0310-bf30-c45bca0a0e42
* tracker service: Refer to the salsa project on the help out sectionSalvatore Bonaccorso2017-12-291-2/+2
| | | | | | Signed-off-by: Salvatore Bonaccorso <carnil@debian.org> git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@59020 e39458fd-73e7-0310-bf30-c45bca0a0e42
* In DLA mode: if git checkout found ask to push changesSalvatore Bonaccorso2017-12-291-6/+8
| | | | | | | | Mention as well that a push is needed, not only a commit. Signed-off-by: Salvatore Bonaccorso <carnil@debian.org> git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@59018 e39458fd-73e7-0310-bf30-c45bca0a0e42
* check-new-issues: Do not mention svn command for review processSalvatore Bonaccorso2017-12-291-1/+1
| | | | | | | | If at all mention 'git diff' and 'git reset' et al. Signed-off-by: Salvatore Bonaccorso <carnil@debian.org> git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@59016 e39458fd-73e7-0310-bf30-c45bca0a0e42
* review-update-needed: Adjust error message to only mention git checkoutSalvatore Bonaccorso2017-12-291-1/+1
| | | | | | | | | | After svn to git migration there will be no users of git-svn anymore, the repo is a plain git repository. Adjust the error message which is errored out if there is not .git directory. Signed-off-by: Salvatore Bonaccorso <carnil@debian.org> git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@59015 e39458fd-73e7-0310-bf30-c45bca0a0e42

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