K
K
Konstantin Omelyan2014-12-23 20:08:56
Information Security
Konstantin Omelyan, 2014-12-23 20:08:56

How to protect the site from copying on hosting?

Actually, there was a need, how to show the site to the customer on your hosting and so that he could not save the site, but could only view the result itself?

Here I have a script

document.ondragstart = noselect; 
    // запрет на перетаскивание 
    document.onselectstart = noselect; 
    // запрет на выделение элементов страницы 
    document.oncontextmenu = noselect; 
    // запрет на выведение контекстного меню 
    function noselect() {return false;}


but still it remains possible to save by pressing ctrl + s f12.

Actually how to turn them off. To 100% protect the site from theft?

Answer the question

In order to leave comments, you need to log in

5 answer(s)
S
Sergey Melnikov, 2014-12-23
@mlnkv

no way) do not deal with unscrupulous customers

R
Risiki, 2014-12-23
@risiki

Take a screenshot of the site. Let the customer configure the functionality after the purchase.

B
Boris Benkovsky, 2014-12-23
@benbor

Well, of course you are going to secure the site ...... drag and drop is banned. Your site, if anyone "steals", then not with their hands, but with scripts that simply download your code, no one will run js.
Only videoconference \ screenshots will help you here

I
Ilya Plotnikov, 2014-12-23
@ilyaplot

Take an advance payment, and give the result to the customer after 100% payment. Before showing, obscure css, js as much as possible and compress html.

E
Eugene, 2014-12-23
@Nc_Soft

Opened in browser = copied.
And nothing else.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question