vote up -3 vote down star
1

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

flag

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 at 13:37
I assume you want to scan for vulnerabilities so they can be fixed, not exploited? – Scott Langham Feb 15 at 13:38
@cpp: elaborate on your question, as to why... – Aaron Feb 15 at 16:31
If you don't even know where to start, you are not going to succeed in creating such applications... – Kaitsuli Jun 22 at 21:50

5 Answers

vote up 1 vote down

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|flag
vote up 0 vote down

Ah comon, LISP ;-)

scnr

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

link|flag
vote up 0 vote down

** a

  • assembly

**

link|flag
vote up 3 vote down

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|flag
vote up 3 vote down

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|flag

Your Answer

Get an OpenID
or

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