PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV Mobile 2024 → Macarando ips to secure access to the server (Macarando ips para proteger o acesso ao servidor)
Macarando ips to secure access to the server (Macarando ips para proteger o acesso ao servidor)
Débuté par adrianoboller, 09 jan. 2015 23:00 - 1 réponse
Membre enregistré
3 651 messages
Popularité : +175 (223 votes)
Posté le 09 janvier 2015 - 23:00
EXEMPLO:

ip 177.20.29.70:8089

GLOBAL

CONSTANT

abacaxi = 177
limao = 20
maca = 29
manga = 70

END

Em outro LOCAL No aplicativo:

LOCAL

CONSTANT

banana = 8090

END

GLOBAL
CONSTANT

EnderecoWS01 = "/RTWEBSERVICE_WEB/awws/"

END

Isso coloco em lugares diferentes
locais OU globais
variaveis OU constantes
dai
o detalhe da salada de fruta

SaladaDeFruta is string = abacaxi +"."+ limao +"."+ maca +"."+ manga +":"+ banana

ok is boolean = HTTPRequest(SaladaDeFruta+EnderecoWS01)

IF ok = True

retorno is string = HTTPGetResult()

END

Como o mal pode ocorrer se os dados estao em locais difernetes e como constantes e variaveis diferentes
assim ao decompilar nao é visivel a porta
e nao vai ter ninguem batendo na porta DO seu banco de dados
Membre enregistré
3 651 messages
Popularité : +175 (223 votes)
Posté le 09 janvier 2015 - 23:00
[code: wl]
EXAMPLE:

ip 177.20.29.70:8089

global

CONSTANT

pineapple = 177
lemon = 20
litter = 29
Sleeve 70 =

END

Elsewhere in the application:

local

CONSTANT

banana = 8090

END

global
CONSTANT

EnderecoWS01 = "/ RTWEBSERVICE_WEB / awws /"

END

This place in different places
local or global
variables or constants
dai
the detail of fruit salad

SaladaDeFruta is string = + pineapple + lemon + + + + litter sleeve + "." "." "." "" + Banana

ok is boolean = httprequest (SaladaDeFruta + EnderecoWS01)

if ok = true

return is string = httpgetresult ()

end

How evil can occur if the data station in difernetes and as constant local and different variables
so to decompile is not visible the door
and will not have anyone knocking on the door of your database
[/ code]