It is important to frame the question properly and to adopt a useful conceptual model of the scores.
The question
The potential cheating thresholds, such as 55, 65, and 85, are known a priori independently of the data: they do not have to be determined from the data. (Therefore this is neither an outlier detection problem nor a distribution fitting problem.) The test should assess the evidence that some (not all) scores just less than these thresholds were moved to those thresholds (or, perhaps, just over those thresholds).
Conceptual model
For the conceptual model, it is crucial to understand that the scores are unlikely to have a normal distribution (nor any other easily parameterized distribution). That is abundantly clear in the posted example and in every other example from the original report. These scores represent a mixture of schools; even if distributions within any school were normal (they are not), the mixture is not likely to be normal.
A simple approach accepts that there is a true score distribution: the one that would be reported except for this particular form of cheating. It is therefore a non-parametric setting. That seems too broad, but there are some characteristics of the score distribution that can be anticipated or observed in the actual data:
The counts of scores $i-1$, $i$, and $i+1$ will be closely correlated, $1 \le i \le 99$.
There will be variations in these counts around some idealized smooth version of the score distribution. These variations will typically be of a size equal to the square root of the count.
Cheating relative to a threshold $t$ will not affect the counts for any score $i\ge t$. Its effect is proportional to the count of each score (the number of students "at risk" for being affected by cheating). For scores $i$ below this threshold, the count $c(i)$ will be reduced by some fraction $\delta(t-i)c(i)$ and this amount will be added to $t(i)$.
The amount of change decreases with the distance between a score and the threshold: $\delta(i)$ is a decreasing function of $i=1,2,\ldots$.
Given a threshold $t$, the null hypothesis (no cheating) is that $\delta(1)=0$, implying $\delta$ is identically $0$. The alternative is that $\delta(1)\gt 0$.
Constructing a test
What test statistic to use? According to these assumptions, (a) the effect is additive in the counts and (b) the greatest effect will occur right around the threshold. This indicates looking at first differences of the counts, $c'(i) = c(i+1)-c(i)$. Further consideration suggests going one step further: under the alternative hypothesis, we expect to see a sequence of gradually depressed counts as the score $i$ approaches the threshold $t$ from below, then (i) a large positive change at $t$ followed by (ii) a large negative change at $t+1$. To maximize the power of the test, then, let's look at second differences,
$$c''(i) = c'(i+1) - c'(i) = c(i+2) - 2c(i+1) + c(i),$$
because at $i = t-1$ this will combine a largish negative decline $c(t+1)-c(t)$ with the negative of a large positive increase $c(t) - c(t-1)$, thereby magnifying the cheating effect.
I am going to hypothesize--and this can be checked--that the serial correlation of the counts near the threshold is fairly small. (Serial correlation elsewhere is irrelevant.) This implies that the variance of $c''(t-1) = c(t+1) - 2c(t) + c(t-1)$ is approximately
$$\text{var}(c''(t-1)) \approx \text{var}(c(t+1)) + (-2)^2\text{var}(c(t)) + \text{var}(c(t-1)).$$
I previously suggested that $\text{var}(c(i)) \approx c(i)$ for all $i$ (something that also can be checked). Whence
$$z = c''(t-1) / \sqrt{c(t+1) + 4c(t) + c(t-1)}$$
should approximately have unit variance. For large score populations (the posted one looks to be around 20,000) we can expect an approximately Normal distribution of $c''(t-1)$, too. Since we expect a highly negative value to indicate a cheating pattern, we easily obtain a test of size $\alpha$: writing $\Phi$ for the cdf of the standard Normal distribution, reject the hypothesis of no cheating at threshold $t$ when $\Phi(z) \lt \alpha$.
Example
For example, consider this set of true test scores, drawn iid from a mixture of three Normal distributions:

To this I applied a cheating schedule at the threshold $t=65$ defined by $\delta(i) = \exp(-2 i)$. This focuses almost all cheating on the one or two scores immediately below 65:

To get a sense of what the test does, I computed $z$ for every score, not just $t$, and plotted it against the score:

(Actually, to avoid troubles with small counts, I first added 1 to every count from 0 through 100 in order to calculate the denominator of $z$.)
The fluctuation near 65 is apparent, as is the tendency for all other fluctuations to be about 1 in size, consistent with the assumptions of this test. The test statistic is $z = -4.19$ with a corresponding p-value of $\Phi(z) = 0.0000136$, an extremely significant result. Visual comparison with the figure in the question itself suggests this test would return a p-value at least as small.
(Please note, though, that the test itself does not use this plot, which is shown to illustrate the ideas. The test looks only at the plotted value at the threshold, nowhere else. It would nevertheless be good practice to make such a plot to confirm that the test statistic really does single out the expected thresholds as loci of cheating and that all other scores are not subject to such changes. Here, we see that at all other scores there is fluctuation between about -2 and 2, but rarely greater. Note, too, that one need not actually compute the standard deviation of the values in this plot in order to compute $z$, thereby avoiding problems associated with cheating effects inflating the fluctuations at multiple locations.)
When applying this test to multiple thresholds, a Bonferroni adjustment of the test size would be wise. Additional adjustment when applied to multiple tests at the same time would also be a good idea.
Evaluation
This procedure cannot seriously be proposed for use until it is tested on actual data. A good way would be to take scores for one test and use a non-critical score for the test as threshold. Presumably such a threshold has not been subject to this form of cheating. Simulate cheating according to this conceptual model and study the simulated distribution of $z$. This will indicate (a) whether the p-values are accurate and (b) the power of the test to indicate the simulated form of cheating. Indeed, one could employ such a simulation study on the very data one is evaluating, providing an extremely effective way of testing whether the test is appropriate and what its actual power is. Because the test statistic $z$ is so simple, simulations will be practicable to do and fast to execute.