C# // .NET General discussions about C# and .Net

InterN0T Affiliates:
EvilZonepy1337

SirCapsAlot.NET

Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 17th December 2009, 18:03
Except1onX's Avatar
 
Join Date: Dec 2009
Location: M........
Posts: 59
Rep Power: 2
Reputation: 35
Except1onX is on the way to become something
Shellcode converter



Hotfile.com: One click file hosting

Ascii to shellcode or hex.

Report for bugs.
Attached Images
File Type: jpg shell.jpg (30.1 KB, 43 views)
__________________
Enter Username:
Enter Password:
Wooo – The username and password are correct! exiting
Reply With Quote
  #2  
Old 19th December 2009, 13:47
MaXe's Avatar
The BOFH
 
Join Date: Jun 2008
Location: Sweden - Ljusdal
Posts: 2,718
Blog Entries: 31
Rep Power: 10
Reputation: 146
MaXe will become a Token soonMaXe will become a Token soon
Re: Shellcode converter

Very nice and useful tool, +Rep :-)

Even though some shellcode cannot be written in ASCII ;-)
__________________
Code:
                                ____/____\_________________
                      \|/      | OMG IT'S TEH LEET STORY!! |
    /*\         /\    -*-      |______  ________/\_________|
   // \\       /  \   /|\        /    \/    \  /  \
  /// \\\     /    \            /            \/    \
   // \\     /      \          /      \o/     \     \
    | |     /        \        /        |       \     \
 ___| |____/          \______/________/ \_______\_____\_________
          /     o      \
               #"=-
               /\
 __________________________________________________________
    On a mission, to find the lost member of Teh Unkwon.. 
Reply With Quote
  #3  
Old 19th December 2009, 13:58
Except1onX's Avatar
 
Join Date: Dec 2009
Location: M........
Posts: 59
Rep Power: 2
Reputation: 35
Except1onX is on the way to become something
Re: Shellcode converter

Quote:
Originally Posted by MaXe View Post
Very nice and useful tool, +Rep :-)

Even though some shellcode cannot be written in ASCII ;-)
Yep u r right coz shellcodes could be some Hex adrress of memory and if u converted it u will get some $^@&^$* characters.
__________________
Enter Username:
Enter Password:
Wooo – The username and password are correct! exiting
Reply With Quote
  #4  
Old 19th December 2009, 14:22
MaXe's Avatar
The BOFH
 
Join Date: Jun 2008
Location: Sweden - Ljusdal
Posts: 2,718
Blog Entries: 31
Rep Power: 10
Reputation: 146
MaXe will become a Token soonMaXe will become a Token soon
Re: Shellcode converter

Or empty spaces and weird signs in case it's the non-printable ASCII characters. :-) (0x0A is \n I think and can't be printed)
__________________
Code:
                                ____/____\_________________
                      \|/      | OMG IT'S TEH LEET STORY!! |
    /*\         /\    -*-      |______  ________/\_________|
   // \\       /  \   /|\        /    \/    \  /  \
  /// \\\     /    \            /            \/    \
   // \\     /      \          /      \o/     \     \
    | |     /        \        /        |       \     \
 ___| |____/          \______/________/ \_______\_____\_________
          /     o      \
               #"=-
               /\
 __________________________________________________________
    On a mission, to find the lost member of Teh Unkwon.. 
Reply With Quote
  #5  
Old 20th December 2009, 11:08
Norph's Avatar
 
Join Date: Oct 2009
Location: Denmark
Posts: 235
Blog Entries: 1
Rep Power: 2
Reputation: 34
Norph is on the way to become something
Re: Shellcode converter

Still pretty useful.
I love the UI :)
What language is it written in?
__________________
Men have two emotions: Hungry and Horny. If you see him without an erection, make him a sandwich.
Reply With Quote
  #6  
Old 20th December 2009, 13:05
Except1onX's Avatar
 
Join Date: Dec 2009
Location: M........
Posts: 59
Rep Power: 2
Reputation: 35
Except1onX is on the way to become something
Re: Shellcode converter

It is written in c#.
__________________
Enter Username:
Enter Password:
Wooo – The username and password are correct! exiting
Reply With Quote
  #7  
Old 25th December 2009, 09:14
crazydevil360's Avatar
 
Join Date: Dec 2009
Posts: 5
Rep Power: 1
Reputation: 1
crazydevil360 is an unknown memory address at this point
Re: Shellcode converter

Every shell code has endiannes. But it is not having

Endiannes are like

data is reperesented backwards

like my data is hello world

but in the endiannes the hello world is look like this

dlrow olleh

Sorry for my Bad english
__________________
Hacking is not an illegal act. It's an Art
Reply With Quote
  #8  
Old 25th December 2009, 17:41
ne011's Avatar
 
Join Date: May 2009
Location: 127.0.0.1
Posts: 44
Rep Power: 4
Reputation: 67
ne011 will become a Token soon
Re: Shellcode converter

Thanks for sharing ,i like the GUI
Reply With Quote
  #9  
Old 25th December 2009, 19:23
Except1onX's Avatar
 
Join Date: Dec 2009
Location: M........
Posts: 59
Rep Power: 2
Reputation: 35
Except1onX is on the way to become something
Re: Shellcode converter

Quote:
Originally Posted by crazydevil360 View Post
Every shell code has endiannes. But it is not having

Endiannes are like

data is reperesented backwards

like my data is hello world

but in the endiannes the hello world is look like this

dlrow olleh

Sorry for my Bad english
I didn't understand u a bit but nvm
U have big endian and little endian depending on IA32 machine u r using.

It supposed to be reversed. I mean from hello world to dlrow olleh.
__________________
Enter Username:
Enter Password:
Wooo – The username and password are correct! exiting

Last edited by Except1onX; 25th December 2009 at 19:25.
Reply With Quote
  #10  
Old 26th December 2009, 15:30
MaXe's Avatar
The BOFH
 
Join Date: Jun 2008
Location: Sweden - Ljusdal
Posts: 2,718
Blog Entries: 31
Rep Power: 10
Reputation: 146
MaXe will become a Token soonMaXe will become a Token soon
Re: Shellcode converter

DEADBEEF (Machine Code) will become FE EB AD DE in Little Endian.

Example:
\xDE \xAD \xBE \xEF will become: \xFE \xBE \xAD \xDE in Little Endian :-)

It's very important to note, that the Hexidecimal characters were NOT
reversed such as: \xEF \xEB \xDA \xED in Little Endian, no idea how big
endian systems works since I've never used it for anything xD

The conversion method shouldn't be hard though :-)

Could a 2.0 version of your program, perhaps accept \x00 as input to be
converted to little endian or big endian? And perhaps \n \r as well? ;-)

Perhaps just make the Shellcode field editable? :-D
__________________
Code:
                                ____/____\_________________
                      \|/      | OMG IT'S TEH LEET STORY!! |
    /*\         /\    -*-      |______  ________/\_________|
   // \\       /  \   /|\        /    \/    \  /  \
  /// \\\     /    \            /            \/    \
   // \\     /      \          /      \o/     \     \
    | |     /        \        /        |       \     \
 ___| |____/          \______/________/ \_______\_____\_________
          /     o      \
               #"=-
               /\
 __________________________________________________________
    On a mission, to find the lost member of Teh Unkwon.. 
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
English Shellcode - Whitepaper MaXe Offensive Guides & Information 1 25th November 2009 21:09
Linux x86 Shellcode Obfuscator MaXe Exploits, Vulnerabilities & PoCs 0 6th January 2009 11:52
10 second MB Converter macd3v Perl // Python 3 2nd January 2009 05:01


All times are GMT +2. The time now is 05:40.
Copyright ©2007 - Forever, InterN0T & Teh Unkwon

Hosted by 1and1