]> git.saurik.com Git - apt.git/blame_incremental - test/integration/test-apt-update-stale
don't try other compressions on hashsum mismatch
[apt.git] / test / integration / test-apt-update-stale
... / ...
CommitLineData
1#!/bin/sh
2#
3# Ensure that a MITM can not stale the Packages/Sources without
4# raising a error message. Note that the Release file is protected
5# via the "Valid-Until" header
6#
7set -e
8
9TESTDIR=$(readlink -f $(dirname $0))
10. $TESTDIR/framework
11
12setupenvironment
13configarchitecture "i386"
14
15insertpackage 'unstable' 'foo' 'all' '1.0'
16
17setupaptarchive --no-update
18changetowebserver
19
20echo "Acquire::Languages \"none\";" > rootdir/etc/apt/apt.conf.d/00nolanguages
21testsuccess aptget update
22listcurrentlistsdirectory > lists.before
23
24# insert new version
25mkdir aptarchive/dists/unstable/main/binary-i386/saved
26cp -p aptarchive/dists/unstable/main/binary-i386/Packages* \
27 aptarchive/dists/unstable/main/binary-i386/saved
28insertpackage 'unstable' 'foo' 'all' '2.0'
29
30compressfile aptarchive/dists/unstable/main/binary-i386/Packages
31# ensure that we do not get a I-M-S hit for the Release file
32
33generatereleasefiles '+1hour'
34signreleasefiles
35
36# but now only deliver the previous Packages file instead of the new one
37# (simulating a stale attack)
38cp -p aptarchive/dists/unstable/main/binary-i386/saved/Packages* \
39 aptarchive/dists/unstable/main/binary-i386/
40
41# ensure this raises an error
42testfailureequal "W: Failed to fetch http://localhost:8080/dists/unstable/main/binary-i386/Packages Hash Sum mismatch
43
44E: Some index files failed to download. They have been ignored, or old ones used instead." aptget update -qq
45testfileequal lists.before "$(listcurrentlistsdirectory)"