/* SFped.java by Mark D. LaDue */ /* July 11, 1997 */ /* Copyright (c) 1997 Mark D. LaDue You may study, use, modify, and distribute this example for any purpose. This example is provided WITHOUT WARRANTY either expressed or implied. */ /* This little Java class gives Finjan's SurfinShield 2.0 a perpetual license. To use it, do the following: 1. Compile SFped.java to obtain SFped.class. 2. Place the resulting SFped.class in the SurfinShield folder, along with SurfinShield.zip. 3. Update SurfinShield.zip with the following command: zip -u -n ".class" SurfinShield.zip SFped.class SurfinShield will now run as before, and its splash screen will always report that the evaluation license has 29 days before it expires. [For a detailed review of SurfinShield 2.0, read "Drowning in the Surf" at http://www.rstcorp.com/hostile-applets/drowning.html. For an account of the ensuing battle, read "With Trousers Down and Duke Exposed" at http://www.rstcorp.com/hostile-applets/trousers.html.] */ import java.util.Date; public class SFped { public Date ped; public SFped() { ped = new Date(); ped.setDate(ped.getDate() - 1); } }