=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== aptly-1.4.0+ds1/CONTRIBUTING.md-79-If you're new to Go, follow [getting started guide](https://golang.org/doc/install) to install it and perform aptly-1.4.0+ds1/CONTRIBUTING.md:80:initial setup. With Go 1.8+, default `$GOPATH` is `$HOME/go`, so rest of this document assumes that. aptly-1.4.0+ds1/CONTRIBUTING.md-81- aptly-1.4.0+ds1/CONTRIBUTING.md:82:Usually `$GOPATH/bin` is appended to your `$PATH` to make it easier to run built binaries, but you might choose aptly-1.4.0+ds1/CONTRIBUTING.md-83-to prepend it or to skip this test if you're security conscious. ############################################## aptly-1.4.0+ds1/CONTRIBUTING.md-116- aptly-1.4.0+ds1/CONTRIBUTING.md:117:This would build `aptly` in `$GOPATH/bin`, so depending on your `$PATH`, you should be able to run it immediately with: aptly-1.4.0+ds1/CONTRIBUTING.md-118- ############################################## aptly-1.4.0+ds1/CONTRIBUTING.md-168-Output for some tests might contain environment-specific things, e.g. your home directory. In that case aptly-1.4.0+ds1/CONTRIBUTING.md:169:you can use `${HOME}` and similar variable expansion in expected output files. aptly-1.4.0+ds1/CONTRIBUTING.md-170- ############################################## aptly-1.4.0+ds1/CONTRIBUTING.md-175- aptly-1.4.0+ds1/CONTRIBUTING.md:176:*WARNING*: tests are running under current `$HOME` directory with aptly default settings, so they clear completely aptly-1.4.0+ds1/CONTRIBUTING.md-177-`~/.aptly.conf` and `~/.aptly` subdirectory between the runs. So it's not wise to have non-dev aptly being used with ############################################## aptly-1.4.0+ds1/CONTRIBUTING.md-195-repository to avoid any problems if source repositories go away. Go build process will automatically prefer vendored aptly-1.4.0+ds1/CONTRIBUTING.md:196:packages over packages in `$GOPATH`. aptly-1.4.0+ds1/CONTRIBUTING.md-197- ############################################## aptly-1.4.0+ds1/README.rst-73- aptly-1.4.0+ds1/README.rst:74:Binary would be installed to ``$GOPATH/bin/aptly``. aptly-1.4.0+ds1/README.rst-75- ############################################## aptly-1.4.0+ds1/cmd/api_serve.go-45- defer listener.Close() aptly-1.4.0+ds1/cmd/api_serve.go:46: fmt.Printf("\nTaking over web server at: %s (press Ctrl+C to quit)...\n", listener.Addr().String()) aptly-1.4.0+ds1/cmd/api_serve.go-47- err = http.Serve(listener, api.Router(context)) ############################################## aptly-1.4.0+ds1/completion.d/README-zsh.md-18- aptly-1.4.0+ds1/completion.d/README-zsh.md:19:Clone/copy the file `_aptly` to a place in your `$fpath` (show with aptly-1.4.0+ds1/completion.d/README-zsh.md:20:`echo $fpath`), or create a new directory and extend the fpath: aptly-1.4.0+ds1/completion.d/README-zsh.md-21- ############################################## aptly-1.4.0+ds1/http/download_test.go-30- s.l, _ = net.ListenTCP("tcp4", &net.TCPAddr{IP: net.IPv4(127, 0, 0, 1)}) aptly-1.4.0+ds1/http/download_test.go:31: s.url = fmt.Sprintf("http://localhost:%d", s.l.Addr().(*net.TCPAddr).Port) aptly-1.4.0+ds1/http/download_test.go-32- ############################################## aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-290- `SHA1`, `SHA256`, `Size`, `Files`, `Checksums-SHA1`, `Checksums-SHA256`. aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl:291: * `$Source` is a name of source package (for binary packages) aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl:292: * `$SourceVersion` is a version of source package aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl:293: * `$Architecture` is `Architecture` for binary packages and `source` for source packages, aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-294- when matching with equal (`=`) operator, package with `any` architecture matches all architectures aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-295- but `source`. aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl:296: * `$Version` has the same value as `Version`, but comparison operators use Debian aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-297- version precedence rules aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl:298: * `$PackageType` is `deb` for binary packages and `source` for source packages aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-299- ############################################## aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-307- pattern matching, like shell patterns, supported special symbols are: `[^]?*`, e.g.: aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl:308: `$Version (% 3.5-*)` aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-309- * `~`: ############################################## aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-336- aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl:337: * `$Source (nginx)`: aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-338- all binary packages with `nginx` as source package. aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-339- aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl:340: * `!Name (~ .*-dev), mail-transport, $Version (>= 3.5)`: aptly-1.4.0+ds1/man/aptly.1.ronn.tmpl-341- matches all packages that provide `mail-transport` with name that has no suffix `-dev` and ############################################## aptly-1.4.0+ds1/s3/server_test.go-103- listener: l, aptly-1.4.0+ds1/s3/server_test.go:104: url: "http://" + l.Addr().String(), aptly-1.4.0+ds1/s3/server_test.go-105- buckets: make(map[string]*bucket), ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-17856-- amd64 | crashme | 2.4-9 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:17857:- amd64 | crasm | 1.5-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-17858-- amd64 | crawl | 2:0.10.3-3 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-18976-- amd64 | flashrom | 0.9.5.2+r1546-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:18977:- amd64 | flasm | 1.62-6 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-18978-- amd64 | flatzinc | 3.7.3-1 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-31996-- amd64 | nas-bin | 1.9.3-5wheezy1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:31997:- amd64 | nasm | 2.10.01-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-31998-- amd64 | naspro-bridges | 0.4.1-1 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-34343-- amd64 | quagga-dbg | 0.99.22.4-1+wheezy1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:34344:- amd64 | quakespasm | 0.85.7-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-34345-- amd64 | quakespasm-dbg | 0.85.7-1 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-37236-- amd64 | yaskkserv | 0.5.2-3 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:37237:! amd64 | yasm | 1.1.0-1 | 1.2.0-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-37238-- amd64 | yasnippet | 0.6.1c-1 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-37299-- amd64 | yudit | 2.8.1-4 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:37300:- amd64 | z80asm | 1.8-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:37301:- amd64 | z80dasm | 1.1.3-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-37302-- amd64 | z8530-utils2 | 3.0-1-6.1 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-38788-- i386 | crashme | 2.4-9 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:38789:- i386 | crasm | 1.5-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-38790-- i386 | crawl | 2:0.10.3-3 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-39915-- i386 | flashrom | 0.9.5.2+r1546-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:39916:- i386 | flasm | 1.62-6 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-39917-- i386 | flatzinc | 3.7.3-1 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-53009-- i386 | nas-bin | 1.9.3-5wheezy1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:53010:- i386 | nasm | 2.10.01-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-53011-- i386 | naspro-bridges | 0.4.1-1 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-55367-- i386 | quagga-dbg | 0.99.22.4-1+wheezy1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:55368:- i386 | quakespasm | 0.85.7-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-55369-- i386 | quakespasm-dbg | 0.85.7-1 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-58270-- i386 | yaskkserv | 0.5.2-3 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:58271:! i386 | yasm | 1.1.0-1 | 1.2.0-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-58272-- i386 | yasnippet | 0.6.1c-1 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-58334-- i386 | yudit | 2.8.1-4 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:58335:- i386 | z80asm | 1.8-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold:58336:- i386 | z80dasm | 1.1.3-1 | - aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot2Test_gold-58337-- i386 | z8530-utils2 | 3.0-1-6.1 | - ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot3Test_gold-1486-! amd64 | yagf | 0.9.1-3 | 0.9.3.2-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot3Test_gold:1487:! amd64 | yasm | 1.1.0-1 | 1.2.0-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot3Test_gold-1488-! amd64 | yorick-gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 ############################################## aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot3Test_gold-2432-! i386 | yagf | 0.9.1-3 | 0.9.3.2-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot3Test_gold:2433:! i386 | yasm | 1.1.0-1 | 1.2.0-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/DiffSnapshot3Test_gold-2434-! i386 | yorick-gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 ############################################## aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot10Test_gold-1708-+ amd64 | yagf | - | 0.9.3.2-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot10Test_gold:1709:+ amd64 | yasm | - | 1.2.0-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot10Test_gold-1710-+ amd64 | yorick-gyoto | - | 0.1.0-2~bpo70+1 ############################################## aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot10Test_gold-2706-+ i386 | yagf | - | 0.9.3.2-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot10Test_gold:2707:+ i386 | yasm | - | 1.2.0-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot10Test_gold-2708-+ i386 | yorick-gyoto | - | 0.1.0-2~bpo70+1 ############################################## aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot8Test_gold-1562-! amd64 | yagf | 0.9.1-3 | 0.9.3.2-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot8Test_gold:1563:! amd64 | yasm | 1.1.0-1 | 1.2.0-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot8Test_gold-1564-! amd64 | yorick-gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 ############################################## aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot8Test_gold-2556-! i386 | yagf | 0.9.1-3 | 0.9.3.2-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot8Test_gold:2557:! i386 | yasm | 1.1.0-1 | 1.2.0-1~bpo70+1 aptly-1.4.0+ds1/system/t05_snapshot/MergeSnapshot8Test_gold-2558-! i386 | yorick-gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 ############################################## aptly-1.4.0+ds1/systemd/activation/listeners.go-52- // Activate TLS only for TCP sockets aptly-1.4.0+ds1/systemd/activation/listeners.go:53: if l.Addr().Network() == "tcp" { aptly-1.4.0+ds1/systemd/activation/listeners.go-54- listeners[i] = tls.NewListener(l, tlsConfig)