Latest: Download All Windows Activators !

Firewall Tamper:Enable/Disable Firewall and Source for VB.NET

2 comments

Recently i was just checking out Nathan's VB.NET Source Pack and i came across this ! Well i certainly tried it and it works with great results.The best part of this is that I'm giving all you guys the open source so you can fiddle around with it !



What does "Firewall Tamper" Do ?

Well...like the name suggests it just tampers your firewall by enabling or disabling it!So your next question might be...What does a "Firewall" Do ? ....In simple terms it just protects your computer from all types of Malware!So if your a "Nasty Coder"(Hacker) then you should use this yo infiltrate the Victim's PC !

First I'll introduce the product then later on I'll give the Source !

541's Firewall Tamper

I have already explained what it does...so lets move on

Coded in VB.NET

So you will be requiring .NET Framework 2.0 or later.Windows Vista/Windows 7 i think have it inbuilt...But anyway just check out that link !

Screenshot of it !

Download: 541's Firewall Tamper


Source in VB.NET for

Enabling Firewall
Private Sub Enable()
Dim Proc As Process = New Process
Dim top As String = "netsh.exe"
Proc.StartInfo.Arguments = ("firewall set opmode enable")
Proc.StartInfo.FileName = top
Proc.StartInfo.UseShellExecute = False
Proc.StartInfo.RedirectStandardOutput = True
Proc.StartInfo.CreateNoWindow = True
Proc.Start()
Proc.WaitForExit()
End Sub


Disabling Firewall

Private Sub Disable()
Dim Proc As Process = New Process
Dim top As String = "netsh.exe"
Proc.StartInfo.Arguments = ("firewall set opmode disable")
Proc.StartInfo.FileName = top
Proc.StartInfo.UseShellExecute = False
Proc.StartInfo.RedirectStandardOutput = True
Proc.StartInfo.CreateNoWindow = True
Proc.Start()
Proc.WaitForExit()
End Sub

2 comments:

  • MBT Icons and buttons

    Icons and Buttons

    Our resources have been successfully downloaded over 10K times and found almost every where. Get yours!

  • choosing webhost for a blog

    Why HostGator?

    Learn Why we chose HostGator as our Web Host and find discount coupons to kick start your blog today!

  • SEO Settings for blogger

    ALL IN ONE SEO PACK 2012

    Learn every single SEO tip that will boost your blog's ranking and organic traffic. We got them all!

  • Blogger widgets and plugins

    Visit MBT's Blogger LAB

    Why not take a tour of all great Blogger widgets published so far? You Name it we have it!

  • become a six figure blogger!

    Become a SIX FIGURE BLOGGER

    Learn what it takes to become a successful entrepreneur and build a living online!