I'm from brasil.
...::GOOGLE TRADUCTOR ::....
friend, I created a binder and a stub indetected more when I put a trojan and a common file to attach it is detected. help me? delphi
ok alguns tutoriais passo é ver se isso ajuda:)heydion escribió:I'm from brasil.
...::GOOGLE TRADUCTOR ::....
friend, I created a binder and a stub indetected more when I put a trojan and a common file to attach it is detected. help me? delphi
Existem muitos brasileiros aqui ... xD GOOGLE TRADUCTOR sorry
[Enlace externo eliminado para invitados]
[Enlace externo eliminado para invitados]
The 2 are diferent tutorials, so download the 2 xD
And see step by step in what you get wrong
" -Solo hay dos cosas que odio:
El racismo y el negro de acá a la vuelta. "
LoqBuster
El racismo y el negro de acá a la vuelta. "
LoqBuster
i think you must change the encryption routine, instead of xor or RC4 use your own
I do not know the cryptographic delphi .. Anybody know where I find tutorials for that?
try this, change some numbers and letters position
[Enlace externo eliminado para invitados] ... hp?id=1524
const
Codes64 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz+/';
function Encode64(S: string): string;
var
i: Integer;
a: Integer;
x: Integer;
b: Integer;
begin
Result := '';
a := 0;
b := 0;
for i := 1 to Length(s) do
begin
x := Ord(s);
b := b * 256 + x;
a := a + 8;
while a >= 6 do
begin
a := a - 6;
x := b div (1 shl a);
b := b mod (1 shl a);
Result := Result + Codes64[x + 1];
end;
end;
if a > 0 then
begin
x := b shl (6 - a);
Result := Result + Codes64[x + 1];
end;
end;
function Decode64(S: string): string;
var
i: Integer;
a: Integer;
x: Integer;
b: Integer;
begin
Result := '';
a := 0;
b := 0;
for i := 1 to Length(s) do
begin
x := Pos(s, codes64) - 1;
if x >= 0 then
begin
b := b * 64 + x;
a := a + 6;
if a >= 8 then
begin
a := a - 8;
x := b shr a;
b := b mod (1 shl a);
x := x mod 256;
Result := Result + chr(x);
end;
end
else
Exit;
end;
end;
[Enlace externo eliminado para invitados] ... hp?id=1524