summaryrefslogtreecommitdiff
path: root/app/src/main/java/de
AgeCommit message (Collapse)Author
10 daysreset connection proxy port and host name in case we use an obfuscated ↵cyBerta
connection, since use transparent proxying instead of a socks proxy, which these fields refer to
2024-06-17update obfsvpn to version 1.0.0, this is a breaking API change. Obfsvpn ↵cyBerta
requires openvpn in UDP as inner transport protocol from now on
2024-03-18copy and paste changes of upstream's ↵cyBerta
3a674d30e1c7118b73efaf353cea7c43a95dc8c7, fixes possible race condition between DeviceStateReceiver and OpenVpnManagementThread, which results in incorrect LEVEL_NONETWORK state
2024-02-03fix foreground service permissions for Android API 34cyBerta
2024-01-25rename ObfsvpnHelper to BuildConfigHelper, adding other BuildConfig ↵cyBerta
properties there
2024-01-25fix VpnConfigGenerator Test, move RSAHelper and ObfsVpnHelper out of ↵cyBerta
ConfigHelper, use injection pattern for these helpers
2023-11-01ensure that the blocking VPN notification always disappears if openvpn is ↵cyBerta
(re-)started
2023-08-02use single instance of shared prefernces across the app, this reduces the ↵cyBerta
laggyness of the UI noticably
2023-07-19log vpn errors in logcat if app is an debug buildcyBerta
2023-07-19always provide private VPN key over management interface, avoid exposing it ↵cyBerta
in persisted openvpn config. The private key is stored encrypted instead
2023-07-19Update source code for external key managment based on ics-openvpn (some ↵cyBerta
relevant commits: 5e7b841c8d5111e6b63e74944903a168939ca723 a6de5a9e4d8d757414c5e2f94eb806be9216dda3 9e704d04dc7f2f93bddf85d371772340fa5af0b1 4466103d770c353cfb8d4ea08093560ba28d58b8 b9ac2b15eac3e5e5f9dc89c948ec8278e2e7c1f9 3cb8f44a92471e43589a80067380d7b262c18c20)
2023-04-13set correct proxy port for obfs4-hop pt proxycyBerta
2023-04-13obfs4-hop enum value - improve handling of disallowed dashes in enumscyBerta
2023-04-13first pass on obfs4-hop pt integrationcyBerta
2023-04-13don't handle obfs4 over kcp as a separate pluggable transport, instead 'tcp' ↵cyBerta
and 'kcp' become valid protocols for obfs4
2022-12-21fix MinieVPNExecutableName()cyBerta
2022-12-21remove dead code related to deprecated Android versionscyBerta
2022-11-21fix bitmaskcore builds on macOS, rename Shapeshifter to ShapeshifterClient ↵cyberta
as part of this gombile JNI generation fix
2022-08-08apply some minor bugfixes from ics-openvpncyBerta
2022-07-31implement obfuscation pinningcyBerta
2022-07-19Parse different obfs4 flavors from eip-service.json. In the gateway load / ↵cyBerta
gateway selection UI all pluggable transports flavors will be summed up and handled the same way. A gateway can support both obfs4 and the kcp flavor.
2022-07-19implement error handling for socks port bindingcyBerta
2022-07-19move BuildConfig variable use_obfsvpn to a static method in ConfigHelper, ↵cyBerta
which can be mocked for testing
2022-07-19allow to pin a custom obfs4 bridge during compile timecyBerta
2022-07-19restart obfsvpn proxy on reconnects or when connecting to new gatewayscyBerta
2022-07-19obfuscate vpn traffic using either shapeshfiter or obfsvpncyBerta
2022-06-08test new ciphers setup and correct data-cipher parsingcyBerta
2022-06-08openvpn config file inline warning should be a commentcyBerta
2022-02-04remove (shapeshifter) Dispatcher and Binary-Installer class, they're ↵cyBerta
deprected and unused
2021-12-20update ics-openvpn to v0.7.31, openssl to 3.0.1cyBerta
2021-12-11fix class cast exceptioncyBerta
2021-12-11catch potential security exception when checking network capabilitiescyBerta
2021-12-11make trafficdata linked list in DevicecStateReceiver final and fix typocyBerta
2021-11-26add missing importcyBerta
2021-11-26fix save battery featurecyBerta
2021-11-16add bridge indicator to bottom panelcyBerta
2021-11-15adapt EIP main screen and strings to simply secure proposalscyBerta
2021-11-14don't allow openvpn configs without --remote or <connection> blockcyBerta
2021-11-08revert restriction to be connected to wifi in order to use snowflake/tor ↵cyBerta
fallback
2021-10-16don't recompile pattern in while loopcyBerta
2021-10-02* refactor startTorProxy()cyBerta
* fix setting http proxy port correctly * snowflake+tor does currently only work when being connected to a wifi, not a cellular network. For now, we check if the device is connected to a wifi, before attempting to start tor
2021-02-28remove unused HIDELOG flagcyBerta
2021-02-28no need to delete notification channels on service destroycyBerta
2021-02-26make sure a notification is shown on reboot with always-on enabledcyBerta
2021-02-26improve error alerting if vpn launching fails, show an AlertDialog instead ↵cyBerta
of the LogView
2021-02-26Bigger refactoring:cyBerta
* always use a bound service connection to start a vpn service as foreground service to fix remote excptions. These appeared if the system wasn't able to set the service as forground shortly after it was started * move vpn start logic from LaunchVPN activity to EIP service. LaunchVPN/VoidVPNLauncher is only used in case we need to ask the user for a permission. It reduces visual glitches when the transparent LaunchVPN activity appears and disappears
2021-02-26cleanup in OpenVPNServicecyBerta
2021-02-26implement service binding in order to fix remote service exception during ↵cyBerta
foreground service start
2021-02-26some refactorings in VpnNotificationManager, start foreground service ↵cyBerta
notification in onCreate already
2021-01-18remove deprecated codecyBerta