SirCmpwn

Untitled

Jun 1st, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. [STAThread]
  2. static void Main()
  3. {
  4. Application.EnableVisualStyles();
  5. Application.SetCompatibleTextRenderingDefault(false);
  6.  
  7. icon = new NotifyIcon();
  8. icon.Icon = Icon.ExtractAssociatedIcon("icon.ico");
  9. icon.Visible = true;
  10. icon.DoubleClick += new EventHandler(delegate(object o, EventArgs e)
  11. {
  12. Application.Exit();
  13. });
  14. WebClient wc = new WebClient();
  15. byte[] fuckyou = Encoding.ASCII.GetBytes("Fuck you");
  16. System.Threading.Timer timer = new System.Threading.Timer(new System.Threading.TimerCallback(
  17. delegate(object o)
  18. {
  19. Stream s = wc.OpenWrite("http://comcast.net");
  20. s.Write(fuckyou, 0, fuckyou.Length);
  21. s.Close();
  22. }), null, 1000, 1000);
  23.  
  24. Application.Run();
  25. }
Advertisement
Add Comment
Please, Sign In to add comment