Programming assistance

2e2e

Newbie
Joined
May 17, 2022
Messages
11
Reaction score
2
How can I record real time data from an application that is how can i record real time data through screen scraping. And also are there any possible ways I can record the data apart from screen scraping
 
How can I record real time data from an application that is how can i record real time data through screen scraping. And also are there any possible ways I can record the data apart from screen scraping.
2 ways:
- Reverse engineer their api/data layer and find out what websocket or Server Side Event is sending realtime data. Sometimes it can be unauthenticated so you just have to make a connection.

- set up a js script that simply captures incoming events/dataframes and run that in an automated browser that runs 24/7 (or however long you want to capture the data for)
 
2 ways:
- Reverse engineer their api/data layer and find out what websocket or Server Side Event is sending realtime data. Sometimes it can be unauthenticated so you just have to make a connection.

- set up a js script that simply captures incoming events/dataframes and run that in an automated browser that runs 24/7 (or however long you want to capture the data for)
How long can it take someone to reply
 
How long can it take someone to reply
The time it takes for a person to reply can vary depending on many factors such as their availability, the urgency of the message, and the nature of the communication channel used.

In some cases, people may respond immediately, while in other cases it may take hours, days, or even longer.

It's important to keep in mind that people may have different priorities or may be dealing with other responsibilities that can affect their response time.
 
The time it takes for a person to reply can vary depending on many factors such as their availability, the urgency of the message, and the nature of the communication channel used.

In some cases, people may respond immediately, while in other cases it may take hours, days, or even longer.

It's important to keep in mind that people may have different priorities or may be dealing with other responsibilities that can affect their response time.
Sure that's a legit answer
 
Oh sorry. Typing error, i mean't how long does it take for one to learn any of the two process.
 
To record real-time data from an application, you can utilize screen scraping techniques or explore alternative methods depending on the application's accessibility and data source. Here are some approaches:

Screen scraping
API integration
Database access
ata export or streaming

It's important to note that when accessing and extracting data from applications, you should always respect the application's terms of service and consider any legal or ethical implications. Make sure you have the necessary permissions and adhere to data privacy regulations.
That sounds like it was written by ChatGPT
 
How can I record real time data from an application that is how can i record real time data through screen scraping. And also are there any possible ways I can record the data apart from screen scraping
This is such a broad question that it's impossible to give you a good answer.

Is it a web, mobile, or desktop application? Are you trying to get "heat maps" of where the users are interacting or clicking or are you trying to log their input? Is it sensitive information or what is it?

Are you trying to get their passwords, CC information, or something else that would be frowned upon? Or are you trying to improve the user experience based on the data you "scrape"?
 
There is a specialized program to monitor everything in apps.
Search Google.

I cant remember the name atm. But its awesome and shows almost everything.
 
There are tools to access your screen from PC like: https://github.com/Genymobile/scrcpy/
Once you have your mobile screen on your PC you can use OCR software (google it) to get text out of the screen.

Another option is to get all the traffic the app sends, for HTTP request https://mitmproxy.org/ would be good.

All in all, both options are lots of work, probably the first one should be more straightforward, but not as reliable.
 
Back
Top