• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Device question - tried to access

I'm sure it's very common actually. TOR(The Onion Router) is very much a community effort, with people voluntarily running the TOR nodes on their own private computers. I used to use TOR myself, because I'm in China, to bypass the Great FireWall censoring. I certainly wasn't using TOR for anything nefarious, like hacking attacks.

The TOR Entries, TOR Exits, and all routing can be done on volunteer computers from users' own homes. It's different to a commercial VPN service, like Astrill or Express, where the nodes are located in commercial data centres.

View attachment 166059
Awesome! Thank you for the detailed response and image.

The TOR exit relays were coming from IPs in Germany and the US. The residential IP came from an address in Singapore. I'm trying to figure out if the attacker slipped up and used his actual IP from his home location before switching to the TOR relays OR if the Singapore IP is more likely to be a residential VPN (correct me if I'm wrong but these tend to have frequent outages and are a bit slower?)

For context, the attacker was denied access via the Singapore IP on the original attack, but managed to gain access with the TOR relays about an hour later.

Roll Call! What's up 2023?!?!?!

Hi all, I'm well (as are my wife and rescue cat). We now have 3 grandchildren (5 ,3 1/2, and 1) how our daughter manages in a tiny apartment ground floor flat I can't imagine. We're still All Linux/FOSS and off to Croatia on holiday in a month . I'm still considering changing to an EV adn prices for used ones seem to be coming down quite nicely in the UK right now.

Help Schedule volume changes

I have used MacroDroid by ArloSoft for this purpose for years. I found Tasker to be overly complicated for my relatively simple needs. That said, any app of this type takes a moment to learn its world view.

At 10PM, it automatically sets my media volume to 0 and my notifications to 45%. At 8AM it turns media to 50% and notifications to 75%. You could probably turn up the appropriate volume settings at midnight to be sure you haven't left your meeting mute on overnight.

How to view running apps on Android 12?

If you look in your phone's Settings >> Battery menu, that should show you a listing of running apps but that's more or less just cursory info. Not knowing what phone you have, there's no way to be more definitive. But if it's not very obvious it's likely to be buried in a sub-menu option.

If you want a more detailed viewing, you should use the 'Running services' option instead. Running services shows not just apps you're using but system apps and services that are running in the background. (...in the Running services window, switch to the Cached processes). You do need to enable Developer options in your Settings menu first, so you can then access Running services.

Low Battery Warning Stopped

Your LG Rebel 4 LTE phone is a Tracfone, carrier-locked, 5yr old model with relatively low hardware specs and running an out-of-date version on Android:
Before you try to do something that replace the battery or spend anything to 'upgrade' this phone, you might want to just save your money and put it aside to help pay for a newer, more capable phone instead. There are a number of 'budget-class' phones that are just as capable or more so.
Carrier-unlocked models will cost a bit more but allow you a lot more flexibility to switch between different carriers, but if that's not something you care about, buying a carrier-locked model from the carrier can involve a significant up-front discount when you don't mind locking yourself into a contract.

"Smart Lock" Trusted Location is unreliable

Well, I might have found a solution, but it is specific to Samsung phones. There might be similar capabilities in other phones.

On my S22, there is an ability to Create routines that preform tasks given conditions. It is part of the "Bixby" assistant.

So within the Routine "App", I created a a place called Home and defined it based on a google map street address with a radius of 200 meters (just to be safe) and identifying my home WiFi network by name. So if Google maps think I am within that circle, or the named WiFi is available, I am "at home"

Then I created a Routine that is defined as IF arriving at home THEN do not lock phone(for up to 4 hours). Seems to be working. I'll update otherwise.

I still think Google should address this by making WiFi connections an option for Smart Lock!

TMobile suspension

Lawyers are expensive. You need to find out the reason for the suspension. There's a reason. I'm sure they don't suspend people for no reason. You said it's a business account, it could be nothing you did, but maybe something one of your employees did.
I agree with you I've pretty much dropped the lawyer idea that was just me being upset....the only people using the account are me and my wife. We use it to handle our business. Make phone calls and text mostly and most of the time it's between each other as she is usually about on hour away from me. I opened up an account with Verizon to cover me until TMobile comes up with something. Thanks again for your kind words and advice. It is greatly appreciated all of you.

"Can't resolve symbol 'mywebview'"

Hey all😊

Adding Webview to my app since I have website already made but getting the error above within my MainActivity.java page. All of the xml file are coded fine its just this problem. Can anyone help? Thank ya!!!

Code:
private Webview mywebview;

@override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.loadUrl("Google");
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
}
public class mywebClient extends WebViewClient {
@override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
super.onPageStarted(view,url,favicon);
}
@override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
}
@override
public void onBackPressed() {
if (mywebView.canGoBack()) {
mywebView.goBack();
} else {
super.onBackPressed();
}

Filter

Back
Top Bottom