WFC development is discontinued and acquired by a new owner

Discussion in 'Application Software' started by Mr.X, Apr 3, 2018.

  1. kbal

    kbal MDL Junior Member

    Mar 17, 2015
    54
    12
    0
    #21 kbal, Apr 15, 2018
    Last edited: Apr 15, 2018
    binisoft is down :(
     
  2. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,575
    15,646
    270
    Perhaps they're preparing all in site for the new player which acquired binisoft.
     
  3. ColdZero

    ColdZero MDL Android 17

    Nov 9, 2009
    698
    3,169
    30
    Lets create a WFC clone, using C# too.
    I know the inner workings... can show you how to do this in a manual way
     
  4. VDev

    VDev MDL Member

    Sep 9, 2015
    109
    57
    10
    I'm using firewall control from sphinxsoft
     
  5. Hackeur

    Hackeur MDL Senior Member

    Jun 14, 2009
    330
    441
    10
    @drunkturtle

    thanks for the update, love the program - simple and super easy to edit/import/export rules.

    I already had some alternatives like running wf.msc and adding/editing rules manually and using
    batch files to block all exe's in a folder:
    Code:
    for %%G in ("C:\program folder\*.exe") do (
    
    netsh advfirewall firewall add rule name="Blocked no internet %%G" dir=in action=block program="%%G" enable=yes profile=any
    netsh advfirewall firewall add rule name="Blocked no internet %%G" dir=out action=block program="%%G" enable=yes profile=any
    
    )
    
    
     
  6. bornoffire

    bornoffire MDL Novice

    Jan 23, 2015
    18
    16
    0
    I'm using version 4.6.0.0 'atm'.
     
  7. Hackeur

    Hackeur MDL Senior Member

    Jun 14, 2009
    330
    441
    10
    WFC with ads and endless MB notifications coming soon.....
     
  8. VDev

    VDev MDL Member

    Sep 9, 2015
    109
    57
    10
    MBAM is really after v3 came out. I'm still using MBAM 2.2.x.
     
  9. 7_eleven.hell-hole_rider

    Aug 15, 2009
    240
    53
    10
    #32 7_eleven.hell-hole_rider, May 30, 2018
    Last edited: May 30, 2018
    Using '5.3.1.0' with no ads and without endless notifications or other bs "ATM"
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. khanyash

    khanyash MDL Giveaway Organizer

    Jun 21, 2015
    803
    2,466
    30
    Windows Firewall Control is free now.
    The change log of the new released version mention "New: The notifications system is now available for free and the program does not require activation anymore."
     
  11. adric

    adric MDL Expert

    Jul 30, 2009
    1,250
    1,324
    60
    Yes, with added telemetry to see what the user base is like. Depending on this, development may or may not continue and the free should be considered short-term.
     
  12. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,575
    15,646
    270
    Development wouldn't continue for the current Free Standalone version alexandrud and MBytes has released. Yet they will keep developing WFC as an integral part of MBAM.

    And regard the "WFC Free should be considered in the short-term", well he, alexandru told me:
    So apparently there's no short-term for the free standalone version.
    But yes yes I know... Only time will tell.


    In the meantime, enjoy the Free Standalone WFC. Also block its telemetry infrastructure if you like cause there are so many other variables that would make MBytes changes its mind anytime.
     
  13. hotmusik4u

    hotmusik4u MDL Novice

    Jan 8, 2018
    19
    9
    0
    TinyWall
     
  14. AmigaUser

    AmigaUser MDL Novice

    Oct 30, 2012
    44
    10
    0
    WFC remains excellent, there's no real reason for its current users to abandon it. If Malwarebytes messes more with it, I might consider the switch.
     
  15. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,575
    15,646
    270
    Downloaded the msi installer saw the broken digital signature (2010), now how an outdated firewall could possibly be good or compatible for current OSes?
     
  16. ColdZero

    ColdZero MDL Android 17

    Nov 9, 2009
    698
    3,169
    30
    #39 ColdZero, Aug 2, 2018
    Last edited: Aug 2, 2018
    It is easy to build an app like Windows Firewall Control
    It is based on the "Filtering Platform Connection".
    To get the audit status: (Don't forget to run CMD as Admin)
    Code:
    auditpol /get /subcategory:"Filtering Platform Connection"
    
    You can turn that on manually via CMD:
    Code:
    auditpol /set /subcategory:"Filtering Platform Connection" /success:enable /failure:enable
    
    or
    Code:
    * Log All
    auditpol.exe /set /subcategory:{0CCE9226-69AE-11D9-BED3-505054503030} /failure:enable /success:enable
    * Allowed Only
    auditpol.exe /set /subcategory:{0CCE9226-69AE-11D9-BED3-505054503030} /failure:disable /success:enable
    * Blocked Only
    auditpol.exe /set /subcategory:{0CCE9226-69AE-11D9-BED3-505054503030} /failure:enable /success:disable
    * Turn Off
    auditpol.exe /set /subcategory:{0CCE9226-69AE-11D9-BED3-505054503030} /failure:disable /success:disable
    
    Then you interface the eventlog with a parser (app) to view the essential stuff.

    You can view this in the event log:
    eventvwr.msc
    EventViewer -> Security -> Look for (Event IDs for "Audit Filtering Platform Connection")
    + IDs to identify for Allowed and blocked connections:
    5154—Listen permitted
    5155—Listen blocked
    5156—Connection permitted * --> This is key
    5157—Connection blocked * --> This is key
    5158—Bind permitted
    5159—Bind blocked

    Code:
    View in powershell, for example: to retrieve the latest 5 blocked
    Get-WinEvent -FilterHashtable @{LogName='Security';ID='5157'} -MaxEvent 5 | Out-GridView
    
     
  17. ColdZero

    ColdZero MDL Android 17

    Nov 9, 2009
    698
    3,169
    30