All Projects → shivam141296 → Android-Firewall

shivam141296 / Android-Firewall

Licence: GPL-3.0 license
Basic netguard app from playstore ,reduced to its minimum level for vpn and firewall logic

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Android-Firewall

Peering Manager
Peering sessions management tool
Stars: ✭ 189 (+360.98%)
Mutual labels:  internet
cs-wordpress-bouncer
CrowdSec is an open-source cyber security tool. This plugin blocks detected attackers or display them a captcha to check they are not bots.
Stars: ✭ 25 (-39.02%)
Mutual labels:  firewall
SmartGW
Domain based VPN Gateway/Proxy for all devices
Stars: ✭ 49 (+19.51%)
Mutual labels:  firewall
Hyperlink
🔗 Immutable, Pythonic, correct URLs.
Stars: ✭ 198 (+382.93%)
Mutual labels:  internet
Knock
🔑 Scan the entire internet for SSH and Telnet services. Then hack them.
Stars: ✭ 60 (+46.34%)
Mutual labels:  internet
react-expandable-listview
React expandable components, assist you render expandable objects or React components
Stars: ✭ 38 (-7.32%)
Mutual labels:  listview
Siricontrol System
Control anything with Siri voice commands.
Stars: ✭ 180 (+339.02%)
Mutual labels:  internet
flutter sticky and expandable list
粘性头部与分组列表Sliver实现 Build a grouped list, which support expand/collapse section and sticky headers, support use it with sliver widget.
Stars: ✭ 116 (+182.93%)
Mutual labels:  listview
shield
基于Strom的日志实时流量分析主动防御(CCFirewall)系统
Stars: ✭ 68 (+65.85%)
Mutual labels:  firewall
Windows-to-Android-Internet-with-USB-Cable-Reverse-tethering-setup-for-Windows
One click windows to android internet connection (Opposite of Android USB Tethering)
Stars: ✭ 34 (-17.07%)
Mutual labels:  internet
Reactivenetwork
Android library listening network connection state and Internet connectivity with RxJava Observables
Stars: ✭ 2,484 (+5958.54%)
Mutual labels:  internet
Is Reachable
Check if servers are reachable
Stars: ✭ 249 (+507.32%)
Mutual labels:  internet
WaGis-Mass-IP-Blacklister-Windows
This Tool blocks a Mass of IP Adresses via the Windows Firewall. You can run in Automatic-Mode using a Abusive IP List like blocklist.de
Stars: ✭ 34 (-17.07%)
Mutual labels:  firewall
Iiab
Internet-in-a-Box - Build your own LIBRARY OF ALEXANDRIA with a Raspberry Pi !
Stars: ✭ 198 (+382.93%)
Mutual labels:  internet
greendot-android
绿点加速器android客户端
Stars: ✭ 29 (-29.27%)
Mutual labels:  vpn-service
Wirtbot
Easily and securely extend your network into the cloud with a WirtBot
Stars: ✭ 181 (+341.46%)
Mutual labels:  internet
UnityDynamicScrollView
Dynamic scrollView based on UGUI
Stars: ✭ 161 (+292.68%)
Mutual labels:  listview
cloudflare-block-bad-bot-ruleset
🚦 Block malicious crawlers with Cloudflare Firewall Rules
Stars: ✭ 178 (+334.15%)
Mutual labels:  firewall
ez-net-app
EZ Net is an application developed for rural internet users which are not tech savy and shows interest in the internet and the resources it has.
Stars: ✭ 16 (-60.98%)
Mutual labels:  internet
WinDivertSharp
A minimal .NET binding over WinDivert
Stars: ✭ 91 (+121.95%)
Mutual labels:  firewall

Android Firewall

NetGuard is possibly the first free and open source no-root firewall for Android.

Features

  • No root required
  • Simple to use
  • Free of charge
  • Open source
  • No extra battery usage
  • No calling home
  • No tracking or analytics
  • No ads
  • IPv4/IPv6 TCP/UDP supported

NetGuard doesn't even require the internet permission!

Usage

  • Enable the firewall using the switch in the action bar
  • Allow/deny WiFi/mobile internet access using the icons at the right side of the application list

Permissions

  • ACCESS_NETWORK_STATE: to check if the device is connected to the internet through WiFi
  • RECEIVE_BOOT_COMPLETED: to start the firewall when starting the device

Frequently Asked Questions (FAQ)

(1) Can Android Firewall completely protect my privacy?

No - nothing can completely protect your privacy. will do its best, but it is limited by the fact it must use the VPN service. This is the trade-off required to make a firewall which does not require root access. The firewall can only start when Android "allows" it to start, so it will not offer protection during early boot-up (although your network may not be loaded at that time). It will, however, be much better than nothing, especially if you are not rebooting often.

If you want to protect yourself more, you can (at least in theory) disable WiFi and mobile data before rebooting, and only enable them on reboot, after the firewall service has started (and the small key icon is visible in the status bar).

Thanks @pulser

(2) Can I use VPN applications while using Android Firewall?

If the VPN application is using the VPN service, then no, because Android Firewall needs to use this service, and Android allows only one application at a time to use this service.

(3) Can I use Android Firewall on any Android version?

No, because the method addDisallowedApplication is being used, the minimum required Android version is 5.0 (Lollipop).

(4) Will Android Firewall use extra battery power?

No, unlike most of the similar closed source alternatives.

(5) Can you add selective allowing/blocking IP addresses?

Unfortunately this is not possible without using significant battery power and adding a lot of complex code to do network translation from OSI layer 3 to layer 4 (and thus implementing a TCP/IP stack), which will inevitably introduce bugs as well. This is how most (all?) other no root firewalls work. Android Firewall is unique, because it doesn't implement a TCP/IP stack and is therefore both highly efficient and simple.

For more advanced use cases while not sacrificing battery usage, rooting and using a iptables based firewall, like AFWall+ might be a better option.

Support

Please do not use GitHub for questions.

Contributing

Translations:

  • Translations to other languages are welcomed

  • Check if the language is supported by Android and find its locale

  • Copy this file to the correct locale folder

  • Translate the strings in the copied file and omit all lines with translatable="false"

  • Create a pull request on GitHub for the new/updated translation

Please note that you agree to the license below by contributing, including the copyright.

License

GNU General Public License version 3

Copyright (c) 2015 Marcel Bokhorst (M66B)

All rights reserved

This file is part of Android Firewall.

Android Firewall is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your discretion) any later version.

Android Firewall is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with NetGuard. If not, see http://www.gnu.org/licenses/.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].