$T(n)=2T(n/2) + n\log^2(n)$.
If I try to substitute $m = \log(n)$ I end up with
$T(2^m)=2 T(2^{m-1}) + 2^m\log^{2}(2^m)$.
Which isn't helpful to me. Any clues?
PS. hope this isn't too localized. I specified that the problem was a squared logarithm which should make it possible to find for others wondering about the same thing.