In Effective Java (Chapter 7), it says
Note also that we did not use Date’s clone method to make the defensive copies. Because Date is nonfinal, the clone method is not guaranteed to return an object whose class is java.util.Date: it could return an instance of an untrusted subclass specifically designed for malicious mischief. Such a subclass could, for example, record a reference to each instance in a private static list at the time of its creation and allow the attacker to access this list. This would give the attacker free reign over all instances. To prevent this sort of attack, do not use the clone method to make a defensive copy of a parameter whose type is subclassable by untrusted parties.
I don't quite understand its explanation. Why does clone() not return a Date object? How can the instance be of untrusted subclass?
Consider this code:
public class MaliciousDate extends Date { /** malicious code here **/ }
public class SomeClass {
public static void main(String[] args) {
MaliciousDate someDate = new MaliciousDate();
Date copyOfMaliciousDate = someDate;
Date anotherDate = copyOfMaliciousDate.clone();
}
}
Since copyOfMaliciousDate
is of type Date
, you can call clone()
and it will return a Date
object, but calling clone
on copyOfMaliciousDate
executes the code written in the MaliciousDate
class' clone()
because the instance stored in copyOfMaliciousDate
is a MaliciousDate
.
clone()
is widely regarded to have been a failed experiment for a number of reasons. In this case, someone passing in a Date
could have passed in an EvilDate extends Date
whose clone()
method sneakily returned a copy that was still mutable by someone else.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With