Hello mpgh
im releasing my binary converter
it's pretty simple but i'm loving the gui
I'm hoping you guys like this
INSTRUCTIONS
Open the .rar file
Extract folder anywhere , preferably the desktop
open folder
run the exe file
then that's the binary converter
enjoy
SS
VS
VirusTotal - Free Online Virus, Malware and URL Scanner
Binary Converter.rar - Jotti's malware scan
CREDITS
@bboycling for converter code
me for everything else
don't full screen
@Jason
Last edited by Cling; 08-21-2011 at 11:10 AM.
Welcome to my Dynasty

918
You're about a year late on GUI, dotnetbar came and went sometime in 2010 lol. I'm checking through it now.
Oh, you can disable the maximize button you know.. :|
Still, good effort even if it is 2 lines of code
File Approved.
Just wondering...if you didn't even code the conversion yourself, why do you feel like you should release it? As far as I can tell all you've done is slap on a DnB GUI and release it.
Last edited by Jason; 08-21-2011 at 12:04 PM.
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)

13
he told me how to make it and he told me to release it :/
thanks,
Welcome to my Dynasty

918
I actually wanted to see if I could do it in 2 lines now that I said it haha. There is probably a .NET inherent method that can do it nicer than what I did, but love a good mindfuck at 2am.
2 lines (1 for string -> binary, 1 for binary->string)
First line doesn't count as it's just declaring my word to translate to binary and back.
[highlight=vb.net]
Dim originalWord As String = "Jason"
Dim bits As String = String.Join("", System.Text.Encoding.ASCII.GetBytes(originalWord). Select(Function(b As Byte) Convert.ToString(b, 2).PadLeft(8, "0"c)).ToArray())
Dim word As String = System.Text.Encoding.ASCII.GetString(Enumerable.Ra nge(0, bits.Length \ 8).Select(Function(i As Int32) CByte((From x In Enumerable.Range(0, 8) Where bits((i * 8) + x) = "1"c Select 2 ^ (7 - x)).Sum())).ToArray())
[/highlight]
Last edited by Jason; 08-21-2011 at 09:03 PM.
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)
Hassan (08-21-2011),hustelboy (08-22-2011),willrulz188 (08-23-2011)

13
@Jason do you know a way to make a crossfire crosshair? O-o
Welcome to my Dynasty
@Jason whats the new GUI styleCreating your own .vb class
Nice Project' I Believe this was released before![]()
Last edited by Sync; 08-21-2011 at 12:41 PM.

13
Nice Project' I Believe this was released before[/QUOTE]
this indeed was created before if you are referring to the binary converter itself.
but i made this one :|so it's different
Welcome to my Dynasty
@Cling 100% Your code? No tuts/Help ?
No You Didn'tGui Was created by others
![]()

13
Welcome to my Dynasty
Nice project. but needs some more stuff

918
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)
freedompeace (08-24-2011)
What's the problem with that code ?
@freedompeace