But about rsync, it seems that you mean i should download the remote file on my server first, right?

|
malware_hacker_bot 2022-09-29 21:27:48
Techie_03 2022-09-29 21:26:09
What’s there to elaborate? Open Google search for date module read the docs and do same with cloud module

Okay, thanks

Techie_03 2022-09-29 21:32:14
Np
DevNetwork 2022-09-29 22:50:41
Hello. I need to stream a remote file through my server. what technology should I use?
DevNetwork 2022-09-29 22:52:13
DevNetwork 2022-09-29 22:50:41
Hello. I need to stream a remote file through my server. what technology should I use?

Stream a remote file through http protocol with my server.
so any user who can’t access the server of the remote file but has access to my server, could download the file

Dio_GEN_2 2022-09-29 22:55:28
DevNetwork 2022-09-29 22:52:13
Stream a remote file through http protocol with my server.
so any user who can’t access the server of the remote file but has access to my server, could download the file

That’s just a proxy you’re reinventing

DevNetwork 2022-09-29 22:57:19
Dio_GEN_2 2022-09-29 22:55:28
That’s just a proxy you’re reinventing

With a proxy my users should set the proxy on their devices. I need something much simpler.
for example with just a url like:
http://myserver-ip-address.com:2020/?remoteFile=https://google.com/logo.png

mr_noobx 2022-09-29 22:57:54
DevNetwork 2022-09-29 22:52:13
Stream a remote file through http protocol with my server.
so any user who can’t access the server of the remote file but has access to my server, could download the file

عشق است‌داش

Hossein_M9890 2022-09-29 22:59:59
ariefr 2022-09-29 18:00:17
https://github.com/xvzc/SpoofDPI

Thank you 🙏

Dio_GEN_2 2022-09-29 23:04:29
DevNetwork 2022-09-29 22:57:19
With a proxy my users should set the proxy on their devices. I need something much simpler.
for example with just a url like:
http://myserver-ip-address.com:2020/?remoteFile=https://google.com/logo.png

Write a server and make it accept requests like that
Python way should be easy

thewh1teagle 2022-09-29 23:22:30
DevNetwork 2022-09-29 22:50:41
Hello. I need to stream a remote file through my server. what technology should I use?

python3 -m http.server 80 —bind 0.0.0.0
Be careful with that, all the files behind the directory you run this command will be available to download in the browser in port 80 for everyone

DevNetwork 2022-09-29 23:23:48
thewh1teagle 2022-09-29 23:22:30
python3 -m http.server 80 —bind 0.0.0.0
Be careful with that, all the files behind the directory you run this command will be available to download in the browser in port 80 for everyone

the file is not local, it’s remote.

smol_mazunki 2022-09-29 23:24:03
DevNetwork 2022-09-29 22:50:41
Hello. I need to stream a remote file through my server. what technology should I use?

scp or rsync

DevNetwork 2022-09-29 23:25:03
a good example:
https://github.com/UnblockerAPI/download-stream-api

the only problem is this script doesn’t support the resumable links.

GitHub – UnblockerAPI/download-stream-api: Remote file streaming moduleGitHub
Remote file streaming module. Contribute to UnblockerAPI/download-stream-api development by creating an account on GitHub.
thewh1teagle 2022-09-29 23:25:05
DevNetwork 2022-09-29 23:23:48
the file is not local, it’s remote.

I know. so you can access it from the browser with the remote server IP

DevNetwork 2022-09-29 23:26:47
thewh1teagle 2022-09-29 23:25:05
I know. so you can access it from the browser with the remote server IP

I know. but how should I stream the remote file? creating a http server on python just let me to share files which are already on my servers disk, not the remote ones from the internet

thewh1teagle 2022-09-29 23:27:56
DevNetwork 2022-09-29 23:26:47
I know. but how should I stream the remote file? creating a http server on python just let me to share files which are already on my servers disk, not the remote ones from the internet

Oh you want to stream file from server ‘a’ through server ‘b’ to client ‘c’. Can you let me know the big picture? what’s the idea?

DevNetwork 2022-09-29 23:28:42
smol_mazunki 2022-09-29 23:24:03
scp or rsync

Couldn’t find anything about scp
but about rsync, it seems that you mean i should download the remote file on my server first, right? 🧐 (it’s not possible for me though, because of disk capacity limits)

DevNetwork 2022-09-29 23:30:13
thewh1teagle 2022-09-29 23:27:56
Oh you want to stream file from server ‘a’ through server ‘b’ to client ‘c’. Can you let me know the big picture? what’s the idea?

Yes, right.
Internet has been garbage in Iran, they can’t access to free internet but they can access my server and I want to let them download anything they want through my server.

thewh1teagle 2022-09-29 23:31:52
DevNetwork 2022-09-29 23:30:13
Yes, right.
Internet has been garbage in Iran, they can’t access to free internet but they can access my server and I want to let them download anything they want through my server.

In nowdays, the solution for that kind of problem is simply to use VPN or http proxy server

thewh1teagle 2022-09-29 23:32:19
So you can create http proxy server or VPN server on your server and let them connect your server
thewh1teagle 2022-09-29 23:32:42
Or, you can buy for them VPN user on ProtonVPN, simpler
DevNetwork 2022-09-29 23:33:31
thewh1teagle 2022-09-29 23:31:52
In nowdays, the solution for that kind of problem is simply to use VPN or http proxy server

I’m too amateur but as I heard, they banned some protocols.
for example you can’t use openvpn or wireguard. That won’t work and it’s not what I need now.

smol_mazunki 2022-09-29 23:34:10
DevNetwork 2022-09-29 23:26:47
I know. but how should I stream the remote file? creating a http server on python just let me to share files which are already on my servers disk, not the remote ones from the internet

remote ssh

thewh1teagle 2022-09-29 23:35:15
DevNetwork 2022-09-29 23:33:31
I’m too amateur but as I heard, they banned some protocols.
for example you can’t use openvpn or wireguard. That won’t work and it’s not what I need now.

It’s sad!
Then you can try to run http proxy server

Hossein_M9890 2022-09-29 23:35:51
Hi there
I have a problem
I installed kali on USB
When I shut down system and then turn it on, it doesn’t ask me for user and pass. So anyone could access my files just with the usb
smol_mazunki 2022-09-29 23:35:56
DevNetwork 2022-09-29 23:33:31
I’m too amateur but as I heard, they banned some protocols.
for example you can’t use openvpn or wireguard. That won’t work and it’s not what I need now.

@tsingkwai is this also the case for you? if so, how do you bypass it

smol_mazunki 2022-09-29 23:36:19
Hossein_M9890 2022-09-29 23:35:51
Hi there
I have a problem
I installed kali on USB
When I shut down system and then turn it on, it doesn’t ask me for user and pass. So anyone could access my files just with the usb

good, you’ve detected the problem with using kali

smol_mazunki 2022-09-29 23:36:23
the solution: don’t use kali
Hossein_M9890 2022-09-29 23:37:36
smol_mazunki 2022-09-29 23:36:23
the solution: don’t use kali

Thanks for your help😂😂

smol_mazunki 2022-09-29 23:38:11
Hossein_M9890 2022-09-29 23:37:36
Thanks for your help😂😂

linux_group-1411565.jpg

smol_mazunki 2022-09-29 23:38:23
linux_group-1411566.jpg

DevNetwork 2022-09-29 23:39:13
thewh1teagle 2022-09-29 23:35:15
It’s sad!
Then you can try to run http proxy server

Sometimes you can’t even open a website with https because they ban the 443 port! It’s unbelievable!
thank you anyway. I’m not familiar with nodejs but I’ll try to add stream feature to the github repository I shared moments ago.
thank you

smol_mazunki 2022-09-29 23:39:39
DevNetwork 2022-09-29 23:39:13
Sometimes you can’t even open a website with https because they ban the 443 port! It’s unbelievable!
thank you anyway. I’m not familiar with nodejs but I’ll try to add stream feature to the github repository I shared moments ago.
thank you

:8443 time

thewh1teagle 2022-09-29 23:48:31
DevNetwork 2022-09-29 23:39:13
Sometimes you can’t even open a website with https because they ban the 443 port! It’s unbelievable!
thank you anyway. I’m not familiar with nodejs but I’ll try to add stream feature to the github repository I shared moments ago.
thank you

It’s pretty easy to mask the connection to openvpn

mmmmmms0 2022-09-30 00:46:43
nvm
|