Block MS Office 2008 from network sniff


/ Published in: AppleScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. try
  2. set theConfirmation to (do shell script "/sbin/ipfw add 0 deny tcp from any to any 3464" password "MyPassword" with administrator privileges)
  3. set theConfirmation to (do shell script "/sbin/ipfw add 0 deny udp from any to any 2223" password "MyPassword" with administrator privileges)
  4. on error
  5. beep
  6. end try

Report this snippet


Comments


You need to login to view comments.