Jump to content
  • 0
Sign in to follow this  
spruk

OTClient Client OT Exclusivo

Question

spruk    0
spruk

Boa noite, eu estou desenvolvendo um servidor 7.4 e nesse servidor eu tenho 2 clients,

um client que é possível injetar o blackd BOT e outro client anti bot  que não é possível injetar,

eu preciso colocar o client anti bot como exclusivo para login no servidor.

 

Pelo que eu andei pesquisando é possível fazer mudando a chave RSA do servidor e aplicando no client, mas não encontrei mais nada a respeito. 

O que eu entendi é que pelas chaves RSA do servidor é gerado uma chave de acesso para o client mas não consegui encontrar nenhum lugar para gerar chaves que o servidor aceita.

Ou se existir outra forma de fazer, me ajudem.

Obrigado

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 1
Majesty    1,761
Majesty

Existe esse serviço: https://myotc.xyz/. Com ele você pode gerar as chaves RSA. 

No servidor, config.lua:

-- RSA
-- NOTE: These should not be changed unless you know what your doing!
-- Prime1 - known as p; Prime2 - known as q; Public - known as e;
-- Modulus - known as n; Private - known as d.
rsaPrime1 = "RSA Prime1 (p) aqui"
rsaPrime2 = "RSA Prime2 (q) aqui"
rsaPublic = "65537"
rsaModulus = "RSA aqui"
rsaPrivate = "RSA Private Key (d) aqui"

No OTClient (modules/gamelib/const.lua):

OTSERV_RSA  = "RSA aqui"

rsaModulus = OTSERV_RSA.

Share this post


Link to post
Share on other sites
  • 0
spruk    0
spruk
23 horas atrás, Majesty disse:

Existe esse serviço: https://myotc.xyz/. Com ele você pode gerar as chaves RSA. 

No servidor, config.lua:


-- RSA
-- NOTE: These should not be changed unless you know what your doing!
-- Prime1 - known as p; Prime2 - known as q; Public - known as e;
-- Modulus - known as n; Private - known as d.
rsaPrime1 = "RSA Prime1 (p) aqui"
rsaPrime2 = "RSA Prime2 (q) aqui"
rsaPublic = "65537"
rsaModulus = "RSA aqui"
rsaPrivate = "RSA Private Key (d) aqui"

No OTClient (modules/gamelib/const.lua):


OTSERV_RSA  = "RSA aqui"

rsaModulus = OTSERV_RSA.

Deu certo sim! Obrigado, você é demais <3 <3

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×