Home
Calendar
Certifications
Columns
Features
Forum
Resources
Vitals
Latest Additions
April 2013 Free Giveaway Sponsor - eLearnSecurity
Human Intelligence to Navigate the Security Data Deluge
February 2013 Free Giveaway Winner of SANS CyberCon Training
Interview: Bugcrowd Founders on Herding Ninjas for Crowdsourced Bug Bounties
Network Forensics: The Tree in the Forest
March 2013 Free Giveaway Sponsor - Mile2
Book Review: Violent Python
February 2013 Free Giveaway Sponsor - SANS
Holiday 2012 Free Giveaway Winner of Metasploit Pro by Rapid7
Course Review: SANS FOR408 Computer Forensic Investigations – Windows In-Depth
The Security Consulting Sugar High
Tutorial: Fun with SMB on the Command Line
Interview: Ilia Kolochenko, CEO of High-Tech Bridge
October 2012 Free Giveaway Winner of LearningGate Training
The Broken: Assessing Corporate Security in 2012 to Make a Better 2013
EH-Net Login
Welcome Guest.
Username:
Password:
Remember me
Lost Password?
No account yet?
Register
Who's Online
We have 57 guests and 1 member online
Free Business and Tech Magazines and eBooks
You are here:
Home
Ethical Hacking Discussions and Related Certifications
Programming
Relevant programming languages for Ethical Hackers
EH-Net
May 19, 2013, 07:09:02 AM
Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email?
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News
: Go back to The Ethical Hacker Network Online Magazine
Home Page
Home
Help
Calendar
Login
Register
EH-Net
>
Ethical Hacking Discussions and Related Certifications
>
Programming
(Moderator:
don
) >
Relevant programming languages for Ethical Hackers
Pages: [
1
]
Go Down
« previous
next »
Print
Author
Topic: Relevant programming languages for Ethical Hackers (Read 14314 times)
0 Members and 1 Guest are viewing this topic.
skiglades
Newbie
Offline
Posts: 4
Relevant programming languages for Ethical Hackers
«
on:
March 19, 2009, 02:49:26 PM »
Hi everyone,
I'm looking to get some input on what is (in your opinion) the most relevant and useful programming language for an Ethical Hacker.
I have experience with Network Pen testing, some web app experience, and *nix experience. I have some basic understanding of what exploits are doing when executed.
I just purchased a book on perl and thought I would start there; input from the community will keep me on track.
Thanks!
«
Last Edit: March 19, 2009, 06:17:41 PM by skiglades
»
Logged
Ketchup
Hero Member
Offline
Posts: 1021
Re: Relevant programming languages for Ethical Hackers
«
Reply #1 on:
March 19, 2009, 04:29:14 PM »
Perl is good. SQL is a must. I recommend C/C++ as well. Much of the software is written in C/C++. Assembly is great to know as well. Any sort of shell scripting will go a long way.
Logged
~~~~~~~~~~~~~~
Ketchup
timmedin
Sr. Member
Offline
Posts: 469
Re: Relevant programming languages for Ethical Hackers
«
Reply #2 on:
March 19, 2009, 05:11:04 PM »
Quote from: Ketchup on March 19, 2009, 04:29:14 PM
Perl is good. SQL is a must. I recommend C/C++ as well. Much of the software is written in C/C++. Assembly is great to know as well. Any sort of shell scripting will go a long way.
Iwas going to say the same thing as Ketchup but he beat me to it, but I'd add python to the list.
Logged
twitter.com/timmedin |
http://blog.securitywhole.com
NickFnord
Full Member
Offline
Posts: 117
Re: Relevant programming languages for Ethical Hackers
«
Reply #3 on:
March 19, 2009, 05:50:32 PM »
I second python - only learned it this year but after forcing myself to learn perl, python feels like cheating it's so useful and quick to develop in.
Logged
LSOChris
Guest
Re: Relevant programming languages for Ethical Hackers
«
Reply #4 on:
March 19, 2009, 05:51:41 PM »
-a scripting language(s): perl, python, ruby
- sql then syntax for various databases
- javascript for web
- low level and high level languages...so assembly & some sort of C, you can also throw VB too.
oh an English, because alot of the stuff you need can be found if you just search for it.
Logged
skiglades
Newbie
Offline
Posts: 4
Re: Relevant programming languages for Ethical Hackers
«
Reply #5 on:
March 19, 2009, 06:05:02 PM »
Does anyone have a preference between Perl and Python? Any positives / negatives, or situations where one is impractical?
SQL I agree with completely.
I can agree with Javascript to a point I suppose. Are there situations where you would be writing something in Javascript, or would it be beneficial for just understanding the code when looking at a web app?
Logged
Dark_Knight
Sr. Member
Offline
Posts: 292
Re: Relevant programming languages for Ethical Hackers
«
Reply #6 on:
March 19, 2009, 06:22:40 PM »
Quote from: skiglades on March 19, 2009, 06:05:02 PM
Does anyone have a preference between Perl and Python? Any positives / negatives, or situations where one is impractical?
SQL I agree with completely.
I can agree with Javascript to a point I suppose.
Are there situations where you would be writing something in Javascript, or would it be beneficial for just understanding the code when looking at a web app?
XSS attacks, cookie stealing etc javascript come in handy
Logged
CEH, OSCP, GPEN, GWAPT, GCIA
http://sector876.blogspot.com
NickFnord
Full Member
Offline
Posts: 117
Re: Relevant programming languages for Ethical Hackers
«
Reply #7 on:
March 19, 2009, 06:24:19 PM »
I have a personal preference for python - it's easier to read (IMHO) and can still do a lot of the things that perl can do. perl was originally made as a text parsing language so it's very good at that sort of thing.
I only use either for ad-hoc once-off type scripts or write-and-forget type jobs so for me they're equal in functionality with python getting huge marks for ease of maintenance but someone who uses them every day may have a different oppinion.
Logged
jason
Hero Member
Offline
Posts: 1012
Re: Relevant programming languages for Ethical Hackers
«
Reply #8 on:
March 19, 2009, 08:02:14 PM »
Perl and python. I've used perl for quite some time, to the point where I even use it for relatively major programming projects. Python is a more recent addition for me and is very handy for banging things out quickly. There are some places where it makes a a better utility language than perl even.
Logged
skiglades
Newbie
Offline
Posts: 4
Re: Relevant programming languages for Ethical Hackers
«
Reply #9 on:
March 20, 2009, 08:23:40 AM »
Thanks for the great feedback everyone.
Is there an overall, personal preference between C and C++?
I may move towards learning Python since the general consensus is that it's a little easier to learn. Since I've haven't yet learned Perl or Python, Python seems like a logical place to start.
Personally I see a lot of MS-SQL when testing. If I follow that road, does it make sense to familiarize yourself with MS-SQL
and
my-SQL? Of course there is some generic injection syntax that works over both types of database, but does it make sense to concentrate on one or gain an understanding of both?
Thanks
Logged
Ketchup
Hero Member
Offline
Posts: 1021
Re: Relevant programming languages for Ethical Hackers
«
Reply #10 on:
March 20, 2009, 09:09:19 AM »
Quote
Is there an overall, personal preference between C and C++?
I think that you need both. I would start with C and learn how memory is allocated and destroyed. Learn about types, pointers, and so on. Much of the software, especially in Nix is still written in plain C.
After you master C, move on to C++ and learn the object oriented nature of the language. It will be a quick pickup if you can grasp OOP.
Quote
Personally I see a lot of MS-SQL when testing. If I follow that road, does it make sense to familiarize yourself with MS-SQL
and
my-SQL? Of course there is some generic injection syntax that works over both types of database, but does it make sense to concentrate on one or gain an understanding of both?
I think you should learn SQL. Before you move on to specifics in MSSQL, Oracle, or MySQL, you have to understand the concepts. I would recommend becoming comfortable with doing SQL Injection on the three above. Each RDBMS is going to have its own stored procedures, views, and functions. The syntax is different, despite accomplishing pretty much the same task. Those are the most common database engines.
Logged
~~~~~~~~~~~~~~
Ketchup
skiglades
Newbie
Offline
Posts: 4
Re: Relevant programming languages for Ethical Hackers
«
Reply #11 on:
March 20, 2009, 10:27:26 AM »
Quote from: Ketchup on March 20, 2009, 09:09:19 AM
I would start with C and learn how memory is allocated and destroyed. Learn about types, pointers, and so on. Much of the software, especially in Nix is still written in plain C.
After you master C, move on to C++ and learn the object oriented nature of the language. It will be a quick pickup if you can grasp OOP.
That makes sense. I picked up "Hacking: The art of exploitation" and was a bit overwhelmed. I'm sure some knowledge of C would help me understand those concepts.
Logged
NickFnord
Full Member
Offline
Posts: 117
Re: Relevant programming languages for Ethical Hackers
«
Reply #12 on:
March 20, 2009, 12:02:45 PM »
Quote from: skiglades on March 20, 2009, 08:23:40 AM
Personally I see a lot of MS-SQL when testing. If I follow that road, does it make sense to familiarize yourself with MS-SQL
and
my-SQL? Of course there is some generic injection syntax that works over both types of database, but does it make sense to concentrate on one or gain an understanding of both?
Thanks
I'd say the more important thing is to understand "how databases work" i.e. database theory, learn about different types of statements, what a union does, what group by and having clauses do etc. once you know this, then you just need to find the specific syntax for whichever RDBMS you're working with.
having said that, it's pretty much the same for all programming languages - learn the fundamentals - varialbes, pointers, loops, conditional statements, functions etc. then you should be able to pick up any language with minimal effort. next step up from that is getting your head arround object oriented concepts, but that's not too hard either.
Logged
Ketchup
Hero Member
Offline
Posts: 1021
Re: Relevant programming languages for Ethical Hackers
«
Reply #13 on:
March 20, 2009, 12:11:08 PM »
Quote
I picked up "Hacking: The art of exploitation"
That's a great book in my opinion. I would definitely go back and re-read it after you better understand the programming languages.
Logged
~~~~~~~~~~~~~~
Ketchup
quan991
Newbie
Offline
Posts: 7
Re: Relevant programming languages for Ethical Hackers
«
Reply #14 on:
May 25, 2009, 11:42:39 PM »
I would say Assembly, C and a couple scripting languages (the more the better) .
But I think it depends on what you want to specialize in,
i.e. using tools/command line scripting attacks, etc.. or exploit development/analysis & reversing, in which case Assembly & C are a must.
Logged
Pages: [
1
]
Go Up
Print
« previous
next »
Jump to:
Please select a destination:
-----------------------------
EH-Net
-----------------------------
=> Calendar Of Events
===> ChicagoCon 2007
===> ChicagoCon 2008s
===> ChicagoCon 2008f
===> ChicagoCon 2009s
=> Ethical Hacktivism
=> News Items and General Discussion About EH-Net
===> Greetings
=> Special Events
-----------------------------
Ethical Hacking Discussions and Related Certifications
-----------------------------
=> General Certification
===> Networking
===> OS
===> Security
=> Compliance, Regulations & Standards
=> Control Systems
=> Cyber Warfare
=> Forensics
===> CCE / MCCE - (Master) Certified Computer Examiner
===> CHFI - Computer Hacking Forensic Investigator
===> EnCE - EnCase® Certified Examiner
===> GCFA - GIAC Certified Forensics Analyst
=> Hardware
=> Incident Response
===> CSIH - Computer Security Incident Handler
===> GCIH - GIAC Certified Incident Handler
=> Malware
===> Advisories
=> Mobile
=> Network Pen Testing
===> CEH - Certified Ethical Hacker
===> CPTC - Certified Penetration Testing Consultant
===> CPTE - Certified Penetration Testing Engineer
===> CSTA - Certified Security Testing Associate
===> eCPPT - eLearnSecurity Certified Professional Penetration Tester
===> ECSA - EC-Council Certified Security Analyst
===> GPEN - GIAC Certified Penetration Tester
===> OSCP - Offensive Security Certified Professional
=> Physical Security
=> Programming
=> Social Engineering
=> Web Applications
=> Wireless
===> CWNP Certs
===> GAWN - GIAC Assessing Wireless Networks
===> OSWP - Offensive Security Wireless Professional
=> Other
-----------------------------
Columns
-----------------------------
=> Editor-In-Chief
=> Andress
=> Gates
=> Haddix
=> Hadnagy
=> Heffner
=> Hoffman
=> Linn
=> RichM
=> Murray
=> J. Peltier
=> Weidman
=> Wilson
-----------------------------
Features
-----------------------------
=> /root
=> Book Reviews
=> Opinions
=> Skillz
===> Examples
===> May 06 - Star Hacks, Episode V: The Empire Hacks Back
===> July 06 - Hack Bill!
===> Sept 06 - Netcat in the Hat
===> Nov 06 - Hitch-Hackers Guide to the Galaxy
===> Dec 06 - A Christmas (Hacking) Story
===> Feb 07 - Charlottes Web Site
===> April 07 - Microsoft Office Space
===> June 07 - Serenity Hack
===> Oct 07 - Worst. Ethical. Hacker. Challenge. Ever.
===> Dec 07 - Frosty the Snow Crash
===> March 2008 - It Happened One Friday
===> Oct 2008 - Scooby Doo and the Crypto Caper
===> Dec 08 - Santa Claus Is Hacking to Town
===> Feb 2009 - Brady Bunch Boondoggle
===> July 2009 - Prison Break
===> October 2009 - SSHliders
===> December 2009 - Miracle on Thirty-Hack Street
===> December 2010 - The Nightmare Before Charlie Browns Christmas
-----------------------------
Resources
-----------------------------
=> Career Central
===> Looking For Work
===> Looking To Hire
=> Links to cool sites.
=> Mass Media
=> News from the Outside World
=> Tools
=> Tutorials
===> Tutorial Requests
Loading...
Exclusive Deal
SANSFIRE 2013
June 15 - 22
5% Off
w/ Code
:
EHN_5
SANS Deals 4 EH-Netters
5% OFF
Any
SANS Course
in Any Format!
Coupon Code:
EHN_5
Including
SANS Rocky Mountain 2013
&
SANS Boston 2013
Polls
Compared to this year, 2013 will be:
Great!
Better.
About the same.
Little worse.
FUBAR!
Recent Forum Topics
General Certification
: CPT Practical Submission
(0) by
z28power4u
OSCP - Offensive Security Certified Professional
: Class Scheduled 6/8 - Linux n00b
(5) by
MrTuxracer
Career Central
: Starter cert?
(0) by
Alert
Web Applications
: Nessus and Nikto
(4) by
Seen
Tutorials
: Need guidance
(7) by
impelse
Malware
: EICAR?
(2) by
SephStorm
Network Pen Testing
: Cracking salted MD5 hash
(4) by
n37sh@rk
CEH - Certified Ethical Hacker
: Passed my C|EH
(3) by
n37sh@rk
Mass Media
: EC-council hacked, irony at his best?
(0) by
j0rDy
Web Applications
: SQL Injection into an INSERT statement.
(6) by
eyenit0
Network Pen Testing
: Solution for sipXtapi INVITE Message CSeq Field Header Remote Overflow
(1) by
m0wgli
Web Applications
: dns
(2) by
H1t M0nk3y
Other
: BSides Boston
(0) by
3xban
Career Central
: InfoSec in Central, FL
(2) by
tturner
Web Applications
: Web vulnerability scanner
(4) by
H1t M0nk3y
EH-Net News Feeds
Latest Additions
Privacy Notice
for TDCC & All Properties
© 2013 The Ethical Hacker Network
Joomla!
is Free Software released under the GNU/GPL License.