1. Tag your release with `git tag -s`
2. `git push --follow-tags` (or `git push remotename tagname` in git <1.8.3)
3. Upload your pubkey to github.
Much less effort…
I can verify the contents of github's archives, but I cannot, in good faith, say I've verified that the archives do not contain malicious code that triggers vulnerabilities in zip/tar/gzip.
Both can be part of the process.
However, signing the tag doesn't really help someone who isn't cloning the repository. For those people that are just downloading the source tarball directly, having a GPG signature for the release can ensure that github(or other attacker) hasn't modified the contents of the tarball.
I mean if github wants to modify the contents of the tarball, they'll also modify the signature. So unless you're also confirming that it's the right signature, and not just that it's signed, what exactly are you doing?
github can also modify signed tags.
git archive -o project-0.5.tar.gz --prefix project-0.5/ v0.5
$ curl -sL https://github.com/creshal/yspave/archive/0.1.0.zip | sha512sum
375564f127b46f3d1208c30b4eb5c39725985ca09d7bacf940d346727e8bcf9362966f8523c39e6c4f6f1a86b52ceba8823c2f4b016fdedb5947cd6a6bafc930 -
$ git clone git@github.com:creshal/yspave.git
…
$ cd yspave
$ git archive -o 0.1.0.zip --prefix yspave-0.1.0/ 0.1.0
$ sha512sum 0.1.0.zip
aca1163d5270e8ad6796f10511f49b0cf5fe61007fed0786a6643ae522e59a6aa7d6b0cddf4e5b94a435da8d99aa09b2f2ebef7788a82d4c2e7d8d4ad79e0634 0.1.0.zip
–––––
So, I can verify that the contents weren't tampered with, but I cannot verify the archives themselves unless I happen to understand the zip/tar/gz… specifications better than most people implementing it.
I'm on a fully updated Arch Linux with the latest Git. If you have an older version, that might be making the difference.
Same, actually.
--- ../0.1.0.zip
+++ 0.1.0.zip
├── zipinfo -v {}
│ @@ -28,15 +28,15 @@
│ file system or operating system of origin: MS-DOS, OS/2 or NT FAT
│ version of encoding software: 0.0
│ minimum file system compatibility required: MS-DOS, OS/2 or NT FAT
│ minimum software version required to extract: 1.0
│ compression method: none (stored)
│ file security status: not encrypted
│ extended local header: no
│ - file last modified on (DOS date/time): 2016 Apr 8 06:33:12
│ + file last modified on (DOS date/time): 2016 Apr 8 14:33:12
│ file last modified on (UT extra field modtime): 2016 Apr 8 13:33:13 local
│ file last modified on (UT extra field modtime): 2016 Apr 8 13:33:13 UTC
│ 32-bit CRC value (hex): 00000000
│ compressed size: 0 bytes
│ uncompressed size: 0 bytes
│ length of filename: 13 characters
│ length of extra field: 9 bytes
│ @@ -63,15 +63,15 @@
│ version of encoding software: 0.0
│ minimum file system compatibility required: MS-DOS, OS/2 or NT FAT
│ minimum software version required to extract: 1.0
│ compression method: deflated
│ compression sub-type (deflation): normal
│ file security status: not encrypted
│ extended local header: no
│ - file last modified on (DOS date/time): 2016 Apr 8 06:33:12
│ + file last modified on (DOS date/time): 2016 Apr 8 14:33:12
│ file last modified on (UT extra field modtime): 2016 Apr 8 13:33:13 local
│ file last modified on (UT extra field modtime): 2016 Apr 8 13:33:13 UTC
│ 32-bit CRC value (hex): 570b4391
│ compressed size: 52 bytes
│ uncompressed size: 78 bytes
│ length of filename: 23 characters
│ length of extra field: 9 bytes
│ @@ -97,15 +97,15 @@
│ file system or operating system of origin: Unix
│ version of encoding software: 2.3
│ minimum file system compatibility required: MS-DOS, OS/2 or NT FAT
│ minimum software version required to extract: 1.0
│ compression method: none (stored)
│ file security status: not encrypted
│ extended local header: no
│ - file last modified on (DOS date/time): 2016 Apr 8 06:33:12
│ + file last modified on (DOS date/time): 2016 Apr 8 14:33:12
│ file last modified on (UT extra field modtime): 2016 Apr 8 13:33:13 local
│ file last modified on (UT extra field modtime): 2016 Apr 8 13:33:13 UTC
│ 32-bit CRC value (hex): bc890775
│ compressed size: 59 bytes
│ uncompressed size: 59 bytes
│ length of filename: 20 characters
│ length of extra field: 9 bytes
(rest of output omitted as it's too long for an HN comment; the full output can be found at http://paste.debian.net/432708/)Even assuming your client checks all the SHA1 and does not just trust the server (which is not the default), and that you are verifying the git tag signature correctly (which is harder than just checking a tarball), SHA1 collisions are considered practical.
Also collisions are only practical with large amounts of padding which would be visible. That's why nobody really cares too much about them for source control systems.
If only. That's by far my biggest irk with GitHub releases because they only use the tag as name for the tarball (e.g. v0.4.tar.gz). Building RPM packages with those tarballs is a bit of a pain because RPM building tools expect all tarballs in one directory and you don't know which tarball belongs to which software. Maybe I'm just being ignorant here.
Also, many people don’t realize that Github tarballs don’t contain submodules. This is a big hassle when upstreams don’t adequately test their releases.
Providing a working tarball is becoming less and less common due to Github’s (and other sites’) UI. Taking the steps in the article is very helpful to packagers all over, but the above factors can be a problem for upstreams who aren’t aware of the problems.
> Source0: The full URL for the compressed archive containing the (original) pristine source code, as upstream released it. "Source" is synonymous with "Source0". If you give a full URL (and you should), its basename will be used when looking in the SOURCES directory.
But the only URL that is available is <Project URL>/archive/v0.1.1.tar.gz. The SPEC file is therefore defining a file named v0.1.1.tar.gz although I downloaded my tarball as foo-0.1.1.tar.gz. The packaging process looks for v0.1.1.tar.gz, fails to find it in my SOURCES directory and aborts.
I'm not blaming GitHub here in any way, I just wish I had a bit more flexibility for the tarball URL. Would be neat.
[1] https://fedoraproject.org/wiki/How_to_create_an_RPM_package#...
https://github.com/username/repo/archive/v0.1.1/foo-0.1.1.tar.gz
for the URL.GitHub changing the binary being downloaded? They could serve a different signature.
Another committer changing the tag? They could equally change the signature....
No they couldn't, not unless they have your private key.
(Debian does actually require all keys used to sign debian packages to have a trust path back to them - if you want to become Debian maintainer for a project you have to meet up with a Debian developer and have them sign your GPG key - so GitHub or another committer couldn't just use a different key to sign with).
`bundle install --trust-policy HighSecurity`