up vote 6 down vote favorite
2
share [g+] share [fb]

As stated in the title, what is the best language for coding hacker tools? For example, brute forcers, vulnerability scanners, and others.

link|improve this question

0% accept rate
Maybe if you say a legitimate reason for your question you wouldn't be downvoted so much. (I didn't downvote though.) – Hosam Aly Feb 15 '09 at 13:37
I assume you want to scan for vulnerabilities so they can be fixed, not exploited? – Scott Langham Feb 15 '09 at 13:38
@cpp: elaborate on your question, as to why... – Aaron Feb 15 '09 at 16:31
1  
If you don't even know where to start, you are not going to succeed in creating such applications... – rFactor Jun 22 '09 at 21:50
2  
@HosamAly, @ScottLangham, @Aaron - This is a great question, and any reason for doing this is legitimate. What kind of programmer is afraid of vulnerability scanners. Are you writing vulnerable software? If so, I recommend you rethink your profession. – ecounysis Jan 1 '11 at 6:25
feedback

protected by Michael Petrotta Feb 19 '11 at 22:50

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

11 Answers

Any really. Computer security tools are written in many languages.

Low-level tools that need to do networky stuff (e.g. nmap) are usually written in C or C++ as that gives them best access to low level libraries.

Perl is often used for security applications which involve lots of string pattern matching (as that is its conventional area of strength).

link|improve this answer
feedback

To list a few of the most popular tools

  • Nmap (the best Security Scanner there is): C++ and Lua
  • Nessus (Vulnerability Assessment tool): C++
  • Metasploit (Exploitation Framework): Ruby

in answer to your question its really depends on what your doing, if your creating tools for a research project or for some proper other legit reason, C++ is probably the best choice as it has easy integration with lots of pre-existing for crafting packets etc. If your just creating something for the hell of it most of the scrIpt kIddi3 tools are written in perl and batch.

link|improve this answer
feedback

It's often a combination, and the answer depends on what you want to do. Let me give you an example. To get access to a website as an administrator you might need to use cross-site scripting attacks for which a good understanding of cookies, javascript and HTML parsing is needed.

This might give you access to more settings which aren't so well protected to feed SQL into the database which could give you access to more data.

On gaining passwords you might want to scan computers to see if any of these passwords can be reused in which case a language with good and easy to use string-handling and network libraries would be handy, maybe Perl, or C#.

And finally to get buffer overflow attacks to work, you need to understand how pointers, the memory model and so on for your target machine work, which might really need C or Assembler.

Assembler wouldn't help much with XSS, but Javascript isn't going to help much with buffer overflows.

So I guess to summarise: JavaScript, SQL, CSS, Html (especially parsing and escapes), Perl, C, Assembler, and Windows and Unix system programming will give you a "good" start :-). Or the alternative is just Google "script kiddie".

link|improve this answer
feedback

Ah comon, LISP ;-)

scnr

Read http://www.catb.org/~esr/faqs/hacker-howto.html#skills1 :-)

link|improve this answer
feedback

For the security programs the best and essential languages are C , python , perl and assembly

link|improve this answer
feedback

The best hacker programming languages are: Assembly+C+Python+Ruby :)

You can build everything by using them, Sure !

link|improve this answer
feedback

** a

  • assembly

**

link|improve this answer
asm is only useful for shellcode. – Rook Jul 3 '10 at 6:49
feedback

A lot of exploits are written in Python or ruby. The Metasploit exploit framework was originally written in python, it has sense been entirely rewritten in Ruby. Metasploit is by far the largest Ruby project by lines of code.

link|improve this answer
feedback

From what I know a little, a combination of C and Assembly Language(TASM to be precise) is the best.

link|improve this answer
feedback

Best language for hacking?...

Machine language!!!

link|improve this answer
feedback

Its just C and perl. most security related programes are writtern in c and perl

C library is good veryyy good

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.