Blocking Facebook mobile app [closed] - android

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
This may appear counter intuitive to normal posts here, but I was directed to stack overflow as the forum for questions from the FB developer site so here goes!
I'm a network engineer assisting a local school district with some network upgrades. Part of the upgrades involved setting up a web content filter (Untangle), which works great. For various reasons they want to block access to facebook from the school's network during normal school hours. The normal and mobile websites are blocked, but the web content filter doesn't block the mobile app (since the requests aren't coming from a browser the traffic is analyzed differently).
I've opened a ticket with them to see if there is a work-around, but am looking for a way to block the mobile app from accessing facebook until they have a solution. What IP/hostname/ports can I block on our Cisco ASA to stop traffic to the mobile app site? Is there an easy check the app does for connectivity to FB that I can intercept and "trick" it into thinking it doesn't have network access?
These are personal devices, so we can't make changes to them, and yes I realize that technically they could still get access via their mobile provider.
Thanks in advance for ideas and any suggestions!
-Beaty

Related

Google Proxy accessing URLs in Messages by Google [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I recently wrote a REST API for a personal project amongst friends. I sent a sample endpoint URL (i.e. à la https://my-api.com/api/resource/4/something) to one of my collaborators over SMS via Messages by Google on Android. Immediately upon sending the SMS, three GET requests came in to my server for that resource. After tracing the IP addresses, (66.102.6.48, 66.249.80.97, 74.125.210.60), I found out that they are from a Google Proxy in Mountain View.
Furthermore, this occurs again each time I send a URL over SMS in this manner.
I am curious why this might be happening? My current suspicion is that Google is doing some sort of caching or minimization. Anybody know?
The reason may be simpler than you think.
In most messaging platforms, when you send a link they make a GET request to the server to display a preview of the website, think about what happens when you share a link on WhatsApp.
It may very well be the application on your smartphone and/or the one of the receiver, trying to fetch a preview for that link.
Try sending it from a different kind of platform, application or phone (do you have an old Nokia sitting around?).
My guess is that you won't see that GET request!

Mobile phone notifications without an app installed? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Backstory: Like most countries in the world, we've been hit hard with the coronavirus. Unlike most countries in the world, our country does not have an app that tracks the virus. We can go to a government website that gives us an outdated summary, but that's about it.
Issue: we have a popular web-based retail site, and we created a web-based map that tracks coronavirus-confirmed cases. We were also in the process of creating a mobile app that provides info on the virus, but then apple store and google play started blocking apps related to this virus unless it's approved by the government. We've been trying to get approval, but it's an uphill battle.
Since our web-based app tracks all cases in real-time, is it possible to send some type of notification to a mobile phone? For example, a notification would say something like "Another patient has tested positive. Please visit our site for more information".
I've seen services like Amazon SNS, but I'm not exactly sure what these services do. I was also considering web push notifications, but I've read that safari doesn't support this. I've also read that Firebase can do this, but I'm not sure how.
I guess the question's really a yes/no question: Is it possible to send some type of notification to an iphone or android phone without installing an app? This wouldn't be spam since the user would approve the notifications received.
You can send an SMS message if you know the device's phone number. You can use FCM on a web app if the user opts into the notification after visiting your site. Otherwise it's impossible if you don't have an app installed that's designed for receiving and displaying notifications (for good reason).
I suggest researching your options before posting to Stack Overflow - it's for programming questions, not for soliciting ideas for products to solve a problem.

Does REST API for mobile apps hosted on https protocol web app will be slow? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I am looking for a generic answer. Lets say I have built mobile app running on Android and iOS platform and REST API's for these apps lie under https based web application.
Will it cause any speed or performance issue when these mobile apps try to fetch data from this web app? If I host this web app under http, will these apps perform better?
I am not concerned about server performance, just concerned about how mobile apps will behave in such case?
Will it cause any speed or performance issue when these mobile apps try to fetch data from this web app?
Not significantly. The decryption overhead will be swamped by other effects, such as network I/O, parsing the payload of the response, etc.
You can see this by visiting Stack Overflow using https, then with http (ideally using a fresh "incognito" browser window each time, to eliminate local caching effects). You should not notice much of a difference. That's because parsing the HTML/JS/CSS and rendering the page, plus the network I/O to get all that stuff in the first place, is what takes up the bulk of the time.
If I host this web app under http, will these apps perform better?
Not that the user should notice. Hence, either:
Run your own tests to confirm the behavior for your specific use case, or
Default to using encryption (https), if you do not wish to run those tests

Mobile Facebook hacked via wireless router [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I Wanna ask a general question..
I have used my mobile Facebook chat in the company. I used the wireless router in the company to access the net..
My question : is there any way that the administrator can read the chat on my phone. Can he hacked it. Or the Facebook chat is so secured...?
The facebook chat most likely uses an open HTTP connection to communicate your traffic in clear text unencrypted. That means that the administrator (or anyone in the network skilled enough) in theory can monitor the text transferred. However the traffic going in and out is most probably tremendous so it requires that this person is REALLY interested in the traffic you are sending and filtering out exactly your traffic or searching for specific keywords targeted for this. The password is most probably transferred encrypted though (HTTPS or similar).
So, the conclusion is that it is theoretically possible for them to monitor your traffic although mostly unlikely. Unless you have committed a crime, or are suspected of something considerably illoyal I would say that the risk is very low. I would say it is very unusual unless you work in a company with very strict policies against facebook usage or similar situation.
If you see signs of info leakage I would rather suspect that you do not have protected your facebook account with the right permissions so that they can see your texts or someone who can see the text has leaked it to them.
I would generally recommend you to not publish anything on facebook that you cannot stand by if confronted by an employer, friend or collegue. Facebook is by nature intented for spreading information, not keeping secrets.

Use android as webserver on local network [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Ive seen some apps where you can open your computers web-browser, type in the local IP address to the android device, and access a homepage that hosts from the device.
An example is this app: Finger Timer - play.google.com
Does anyone know how this is done? Does Google have an API for this, or do you have any examples that I can start with? Im not a professional developer, so I prefer to keep it simple (few technologies).
What I had in mind was something like this:
Create a HTML or PHP page on my device
Feed it with some information from my app somehow
Host that page, so it can be accessed from any web-browser on any device on a local network.
" Paw Server" does that.
Here's some documentation on how to use it.
check out this thread at XDA-Devs which explains the process.
http://forum.xda-developers.com/showthread.php?p=9893301
on Google Play
PawServer Homepage
I found this page that is amazingly good. Just what I was looking for. It even has source code, so this is how I can learn faster.
Android Development Blog
It contains, as the blogger says: "a bare minimum web server for android platform".

Categories

Resources