How to copy/clone onion website?

x_mode

Carder
Messages
42
Reaction score
25
Points
8
Hello!
Can someone tell me about how i can copy or clone a onion website?
Some software or online service, etc...

Thanks
 
Hello!
Can someone tell me about how i can copy or clone a onion website?
Some software or online service, etc...

Thanks
Hello
You don't need a software or an online service.
First download tor bundle which are TOR, Torify and torsocks
Note: torify is now just a wrapper around torsocks
After that run the command
Bash:
/usr/bin/torify wget -m <URL>
or you can set a variable so as to run the command like:
Bash:
torify wget -m <URL>

with this command you can download the websites on your machine.
 
Hello
You don't need a software or an online service.
First download tor bundle which are TOR, Torify and torsocks
Note: torify is now just a wrapper around torsocks
After that run the command
Bash:
/usr/bin/torify wget -m <URL>
or you can set a variable so as to run the command like:
Bash:
torify wget -m <URL>

with this command you can download the websites on your machine.
This is the best forum on the net.
just one command can download a website full assets , i tried this but one website gave me 404 Not Found, will try resetting Tor but the rest worked smorthly. Thanks for this, i pay someone a couple of bucks to clone webpage for me.
Please can you tell me how to download HTTP and HTTPS web asset like this, i know nothing is free can pay for it. Thank you
 
There are all sorts of wrappers for wget to resolve onion addresses, the main thing is to understand that this is the same as with ordinary sites, only html is copied, and not the code itself, which is on the back.

First, let's install:
Code:
apt install tor tor-geoipdb privoxy
then
Code:
sudo nano / etc / wgetrc
add the line http_proxy = http: // localhost: 8118
sudo nano / etc / privoxy / config
uncomment a line
Code:
# forward-socks5 / 127.0.0.1:9050
Start the services
Service tor start; server privoxy start
And download
Code:
wget -proxy = on <site>

More info here:

The standalone version of Tor only includes a SOCKS proxy for connecting to the Tor network, and no additional proxies are added to the Tor browser.

The usual method for working with programs that require an HTTP proxy is to install one of your own programs, such as Privoxy or Polipo, and then connect that proxy to Tor. For example, in the Privoxy configuration, you must specify:
Code:
forward-socks5 / 127.0.0.1:9050

Privoxy then listens on port 8118 and you configure your HTTP proxy to http://localhost:8118.

Use Torify, which is a simple wrapper around torsocksTor, for example:
Code:
$ torify curl ifconfig.me
$ torify wget -qO- -U curl ifconfig.me

Make sure your Tor server is up and running before use.
 
Someone know how to create user/account database?
I mean registration/login to website.
If someone can send me some topic to read, it will be great.
 
Please clarify your question.
Can't you just go to the site and register a new account? Is registration on the site you need closed or paid?
Do you want to hack database access?
If the registration on the website / forum is open, then just go to the registration page and fill out the form. Or are you having some kind of problem? What's the problem with you?
 
I meant the usual site database.
I build my site and has already created a database so that someone can register and log in.
The problem is that I was able to create it but what's next?

I found several articles that tell how to properly write authorization / authentication, but I can not understand because I do not know "coding" ...

So, if someone knows or has an article for reading (easy to understand). How to make a session so that all the time was authorized on the site?
Use for example cookies? etc...

I will be glad if someone helps.
And where is best place to ask questions of this type?
 
There are all sorts of wrappers for wget to resolve onion addresses, the main thing is to understand that this is the same as with ordinary sites, only html is copied, and not the code itself, which is on the back.

First, let's install:
Code:
apt install tor tor-geoipdb privoxy
then
Code:
sudo nano / etc / wgetrc
add the line http_proxy = http: // localhost: 8118
sudo nano / etc / privoxy / config
uncomment a line
Code:
# forward-socks5 / 127.0.0.1:9050
Start the services
Service tor start; server privoxy start
And download
Code:
wget -proxy = on <site>

More info here:

The standalone version of Tor only includes a SOCKS proxy for connecting to the Tor network, and no additional proxies are added to the Tor browser.

The usual method for working with programs that require an HTTP proxy is to install one of your own programs, such as Privoxy or Polipo, and then connect that proxy to Tor. For example, in the Privoxy configuration, you must specify:
Code:
forward-socks5 / 127.0.0.1:9050

Privoxy then listens on port 8118 and you configure your HTTP proxy to http://localhost:8118.

Use Torify, which is a simple wrapper around torsocksTor, for example:
Code:
$ torify curl ifconfig.me
$ torify wget -qO- -U curl ifconfig.me

Make sure your Tor server is up and running before use.
It gave me 403 code Forbidden
 
Top