Giriş yap
En iyi yollayıcılar
Hello EMO | ||||
EMO | ||||
eMoStyLe | ||||
BesimBICER | ||||
GameKinG | ||||
Crysis | ||||
~>!.DεvιLρяιεsт.!<~ | ||||
MeTaL | ||||
TrueCrime | ||||
djhayal3t |
Istatistikler
Toplam 203 kayıtlı kullanıcımız varSon kaydolan kullanıcımız: crayzboy76
Kullanıcılarımız toplam 1186 mesaj attılar bunda 862 konu
Arama
Sosyal yer imi
Sosyal bookmarking sitesinde Emo, Emo nedir, Emo resimleri, Emo Kıyafetleri, Emo Sözleri, Emo Oyunları, EmoTurkey, Emo Nickler, Emo Avatarları, Punk, Punk Resimleri, Punk Avatarları, Rock, Rock Resimleri, Rock Avatarları, Msn Nickleri, Msn Avatarları, Müzik adresi saklayın ve paylaşın
Sosyal bookmarking sitesinde EMO Style ForumPro - Hos Geldiniz adresi saklayın ve paylaşın
Kimler hatta?
Toplam 9 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 9 Misafir Yok
Sitede bugüne kadar en çok 217 kişi C.tesi Tem. 29, 2017 1:46 am tarihinde online oldu.
En son konular
Reklam
[C#]PolyCloud Encryption - Byte[] Included!
1 sayfadaki 1 sayfası
[C#]PolyCloud Encryption - Byte[] Included!
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:Anyways, here it is:
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
}
Ethereal
Similar topics
» Byte array to string in
» AOB (array of byte) pointblank
» 2-Reversing + General Byte Patching Tutorials
» AOB (array of byte) pointblank
» 2-Reversing + General Byte Patching Tutorials
1 sayfadaki 1 sayfası
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz
Cuma Ağus. 29, 2014 8:33 am tarafından Hello EMO
» goldenchase.net maden yaparak para kazanma
Cuma Ağus. 29, 2014 8:18 am tarafından Hello EMO
» etichal hacker görsel egitim seti
Çarş. Ağus. 06, 2014 4:57 am tarafından Hello EMO
» KO TBL Source C#
Ptsi Ara. 09, 2013 6:36 am tarafından Hello EMO
» x86 Registers
C.tesi Ağus. 24, 2013 5:02 am tarafından Hello EMO
» [Tutorial] Pegando Address, Pointers de WYD
Çarş. Tem. 10, 2013 7:25 am tarafından Hello EMO
» [Tutorial] Pegando Address, Pointers de CS Metodo²
Çarş. Tem. 10, 2013 7:23 am tarafından Hello EMO
» [Tutorial] Aprendendo basico deASM OLLYDBG
Çarş. Tem. 10, 2013 7:22 am tarafından Hello EMO
» Basic C# DLL injector
Ptsi Tem. 08, 2013 7:48 am tarafından Hello EMO