Image
 
linkedin_logo.png rss_logo.jpg
twitter_logo.png youtube_logo.jpg
Latest Additions
 
EH-Net Login
Welcome Guest.






Lost Password?
No account yet? Register
Who's Online
We have 43 guests online
 
Advertisement

You are here: Home arrow Ethical Hacking Discussions and Related Certificationsarrow Otherarrow I Need Money And Experience
EH-Net
May 24, 2013, 05:03:14 PM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Go back to The Ethical Hacker Network Online Magazine Home Page
 
   Home   Help Calendar Login Register  
Pages: [1] 2   Go Down
  Print  
Author Topic: I Need Money And Experience  (Read 9234 times)
0 Members and 1 Guest are viewing this topic.
hitmen
Newbie
*
Offline Offline

Posts: 5


View Profile
« on: May 18, 2011, 04:22:33 AM »

Not sure if this is supposed to go here but anyway..

I just got my CCNA Cisco Certified Network Associate and I want to be a hacker at least part time. I wish to earn some side income. What should I do next.

Are there any site where one can hack for profit legally? 
Logged
millwalll
Guest
« Reply #1 on: May 18, 2011, 07:51:40 AM »

Hi hitmen,

First of all welcome to the site. I would say please you the search function on the site as this question has been asked many times and there are many good answer to it.

Well done on passing the CCNA this is a good start to learning to become a Ethical Hacker. However your journey has only started I am afraid to say working as Penetration tester is not a easy task and takes many years to be at a level where you can be self employed.

The best way to get experience is set up your own Lab where you can try news tools and practice then maybe try get a job as Junior Penetration tester where a company will be willing to train you more.

If you have money there are lots security courses online that will help your get expierence OSWP,OSCP and Hackingdojo to name a few.

I would also say being a Ethical hacker is a full time job there is so much to learn and in order to get work you have to try keep ahead of the game. If you only trying to do it for bit extra cash I would not recommended wasting your time and stick to setting up networks. 
Logged
sil
Hero Member
*****
Offline Offline

Posts: 549



View Profile WWW
« Reply #2 on: May 18, 2011, 02:19:22 PM »



Code:
links -dump "http://blog.tsa.gov/2008/10/zero-tolerance.html" | awk 'NR==2026 {print $5}'

Logged

lorddicranius
Sr. Member
****
Offline Offline

Posts: 447



View Profile WWW
« Reply #3 on: May 18, 2011, 03:05:29 PM »



Code:
links -dump "http://blog.tsa.gov/2008/10/zero-tolerance.html" | awk 'NR==2026 {print $5}'



lol Nice.  Totally saving that.
Logged

GSEC, eCPPT, Sec+
tturner
Sr. Member
****
Offline Offline

Posts: 432


View Profile WWW
« Reply #4 on: May 19, 2011, 07:45:41 AM »

Thanks for the laugh Sil. Gave me an excuse to play with awk a bit this morning. I really need to learn awk a bit better. Had not used NR before but I'm sure I will now.
Logged

Certifications:
CISSP, CISA, GPEN, GWAPT, GAWN, GCIA, GCIH, GSEC, OPSE, CSWAE, CSTP, VCP

WIP: OSWP, GSSP-JAVA, GXPN

Udacity on hold, again. I suck.

http://sentinel24.com/blog  @tonylturner http://bsidesorlando.org
sil
Hero Member
*****
Offline Offline

Posts: 549



View Profile WWW
« Reply #5 on: May 19, 2011, 10:44:17 AM »

Pays to know variations of commands. Never know when you may be stuck and unable to use a specific command. This is very true if you ever run into something like Tru64, TrustedSol, SunOS and Solaris pre 8.

Also helps to understand as many commands as possible and the chaining of those commands in the event you're in a situation where you don't have a tool or the ability to install a tool (perhaps HIDS is in place).

E.g., let's assume I needed to do some recon/fingerprinting/bruteforce guessing to check hostnames in a domain. I have zero tools to work with other than whatever commands are available to me on a Linux system. What would I use?

Well, I could use the dictionary file, perhaps try something like:

Code:
grep [a-z] /usr/share/dict/words |\

while read words

do echo $words.hostname.com

done

So I'd have a pretty long list of potential hostnames to check against. t would be pretty ugly and long not to mention noisy. But in practice, I could make:

Code:
grep [a-z] /usr/share/dict/words |\

while read words

do echo "ping -c 1 $words.hostname.com | grep -vi unknown" | sh

done

And there you have it, an instamagic bruteforce hostname finder from scratch. So another practical use for one liners in a McGuyver like environment? How about: GoogleSets + Links + awk

Code:
links -dump "http://labs.google.com/sets?hl=en&q1=alpha&q2=omega&q3=&q4=&q5=&btn=Large+Set" |\
awk '!/[A-Z]/,!/\ /{print "ping -c 1 "$2".domain.com"}'|\
grep -vi "1 \." | sh


Same applies for scanning when a scanner is not an option:

$BSDs (free/open/etc)

Code:
jot - 1 10 | sort -u | sed 's:^:ping -c 1 192.168.1.:g' | sh

$Linux

Code:
seq 1 10 | sed 's:^:ping -c 1 192.168.1.:g' | sh

For kicks and giggles, you could hide a vast majority of crap in plain sight as an SSL cert Wink
Logged

sil
Hero Member
*****
Offline Offline

Posts: 549



View Profile WWW
« Reply #6 on: May 19, 2011, 11:13:20 AM »

wget -qO - www.infiltrated.net/scripts/bogusethicalhackercert.txt

....

wget -qO - www.infiltrated.net/scripts/bogusethicalhackercert.txt | sed -n '8,11p' | python -c "import sys; print sys.stdin.read().decode('base64')"

Hiding in plain site Wink Most admins would ignore this file if it were named something like /etc/ssl/domain.pem

Code:
$ more /etc/ssl/domain.pem
-----BEGIN CERTIFICATE-----
CzAJBgNVBAgTAlRYMRAwDgYDVQQHEwdIb3VzdG9uMQ8wDQYDVQQKEwZGc2NrZXIxFDASBgNVBAsT
bTEkMCIGCSqGSIb3DQEJARYVcG9zdG1hc3RlckBmc2NrZXIuY29tMIGfMA0GCSqGMIICvzCCAiig
VQQGEwJVUzELMAkGA1UECBMCVFgxEDAOBgNVBAcTB0hvdXN0b24xDzANBgNVBAoTBkZzY2tlcjEU
c2NrZXIuY29tMSQwIgYJKoZIhvcNAQkBFhVwb3N0bWFzdGVyQGZzY2tlci5jb20wHhcNMTAwMzA2
imwLmQIDAQABoxUwEzARBglghkgBhvhCAQEEBAMCBkAwDQYJKoZIhvcNAQEEBQADgYEACa1BoZTm
EoUkocRo6DfWFn43bNzoqaHF1a7QC72wxAnsnKIxc4g38TXjd9t/bM/zey/9yLBnEoUkocRo6DfW
CmxpbmtzIC1kdW1wICJodHRwOi8vbGFicy5nb29nbGUuY29tL3NldHM/aGw9ZW4mcTE9YWxwaGEm
cTI9b21lZ2EmcTM9JnE0PSZxNT0mYnRuPUxhcmdlK1NldCIgfGF3ayAnIS9bQS1aXS8sIS9cIC97
cHJpbnQgInBpbmcgLWMgMSAiIi5kb21haW4uY29tIn0nfGdyZXAgLXZpICIxIFwuIiB8IHNoIAo=

-----END CERTIFICATE-----

When needed, parse out the lines you want: sed -n '8,11p' /path/to/certs decode it and you're good to go
Logged

lorddicranius
Sr. Member
****
Offline Offline

Posts: 447



View Profile WWW
« Reply #7 on: May 19, 2011, 11:17:06 AM »

Stringing commands together like this is something that was just brought to light for me during a recent HackingDojo class.  Once you start diving into it, it's really amazing what you can do.

Thanks for those examples, sil.  Some more commands for me to analyze and learn Smiley
Logged

GSEC, eCPPT, Sec+
sil
Hero Member
*****
Offline Offline

Posts: 549



View Profile WWW
« Reply #8 on: May 19, 2011, 11:25:39 AM »

Also (and I'm sorry for sniper like posting... actually working while I post), these examples work when you need to bypass DLP. In order to understand why, you need to understand the *gist* of 99% of DLP systems.

DLP focuses on the following:
Data in Motion (monitors data being sent in and out)
Data at Rest (data being stored)
Data in Use (agents prevent printing and transferring)

Data in Motion - Fail. Guess what, I don't need to send data out using more. I can copy and paste it from the terminal.

Data at Rest - Fine. I set off a trigger. What did I do with the data though? Most systems won't understand what occurred in the event of copying from my terminal to a file on my machine. "ALERT, ALERT, someone accessed a file!!!" So what. There would never be a file created while I copy over the data. Incident Responders (most) would think of it as an anomaly. TRUST ME, I've had to explain this to a few now.

DiU - I don't need to print or transfer it off of the machine. All I need is to pipe it to more.

For those doing some metasploiting, try it next time. Makes for fun anti-incident response WTF Happened?! I think Crapafee has their DLP as a beta. Install an agent on a Windows machine and watch it fail miserably Wink
Logged

don
Editor-In-Chief
Administrator
Hero Member
*****
Offline Offline

Posts: 4168


Editor-In-Chief


View Profile WWW
« Reply #9 on: May 19, 2011, 11:37:54 AM »


Not sure if this is supposed to go here but anyway..

I just got my CCNA Cisco Certified Network Associate and I want to be a hacker at least part time. I wish to earn some side income. What should I do next.

Are there any site where one can hack for profit legally?


To bring us back to the original question, I could use a little clarification. What do you mean by "site where one can hack for profit legally?"

There are plenty on which to practice, but the profit part throws me. Makes me think we're getting close to the unEthical Hacker side of things.

Don
Logged

CISSP, MCSE, CSTA, Security+ SME
BillV
Hero Member
*****
Offline Offline

Posts: 1892


View Profile WWW
« Reply #10 on: May 19, 2011, 03:55:21 PM »

I think the OP is looking for a legitimate, hacker-for-hire type of website.
Logged
chrisj
Hero Member
*****
Offline Offline

Posts: 1163


View Profile WWW
« Reply #11 on: May 19, 2011, 11:50:38 PM »

I think the OP is looking for a legitimate, hacker-for-hire type of website.

I was thinking the same thing. Something like a Hacker version of Rent a Coder
Logged

OSWP, Sec+
3xban
Hero Member
*****
Offline Offline

Posts: 608


View Profile WWW
« Reply #12 on: June 19, 2011, 10:01:07 PM »

For the OP (who probably went on his merry way after not getting the "easy money" answer)... Might want to focus on getting a networking gig, you got your CCNA so put that to use.  Work your way up the ladder.  Network Engineers make decent coin eventually and if you make you way further into the Cisco realm and obtain higher certs you may be making more than the pen testers. 

If you want the six figures well get the experience and shoot for that CISO spot.  If you seriously want to get into full time hacking, well get yourself a lab and start where you might be strongest, networking.  Plenty of exploits out there that attack networking equipment.  Be aware of those, learn how to thwart them and in turn you learn how to execute them as well.  Then move onto trying other tools.
Logged

Certs: GCWN
(@)Dewser
chrisj
Hero Member
*****
Offline Offline

Posts: 1163


View Profile WWW
« Reply #13 on: June 19, 2011, 10:48:27 PM »

For the OP (who probably went on his merry way after not getting the "easy money" answer)... Might want to focus on getting a networking gig, you got your CCNA so put that to use.  Work your way up the ladder.  Network Engineers make decent coin eventually and if you make you way further into the Cisco realm and obtain higher certs you may be making more than the pen testers. 


I'm working as a Network Engineer. It's paying me good too. 75% of my time is spent configuring VPN tunnels via the CLI and making ACL changes the same way. I'm supposed to take on some web app scanning in the future, after we get the new server built. Not sure why us, but we're the ones that do it.

Anyway, that's with an expired CCNA and no need to get any more Cisco Certs. Not that I don't plan on studying. I also want to get some firewalls for my lab to practice the IPSEC VPN tunnel configs for other devices.

My point is: Don't have to hack to be involved in security.
Logged

OSWP, Sec+
3xban
Hero Member
*****
Offline Offline

Posts: 608


View Profile WWW
« Reply #14 on: July 10, 2011, 12:09:39 PM »

Very true, the day I decided to focus on security was the day I realized that I was doing it part time as a system admin and consultant.  But now I have a reason to make it my full time job.  We all practiced security 101 during our early careers, that is if we were doing our jobs right.  But in the case of certain Sys Admin jobs or consulting gigs, the clients just want you to make sure things stay running, and sadly that is all the client wants to pay for no matter how much you push for better security and such.  At least now, when I am asked my opinion on something, as a security consultant, people will listen and usually do.  Then again it has become easier to push security focused projects due to the ever growing breaches being caused by groups such as Anonymous and Lulzsec. 

Security as a profession is certainly not an entry level area, if you want to be good at it, you need to have some experience in those areas you want to protect.  Like building a web server and securing a web server are two different things.  Think about it Cheesy
Logged

Certs: GCWN
(@)Dewser
Pages: [1] 2   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines
Joomla Bridge by JoomlaHacks.com
Valid XHTML 1.0! Valid CSS!
Page created in 0.064 seconds with 24 queries.
 
Exclusive Deal

sansfire13_245x90_cw90.jpg
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:
 
Recent Forum Topics
EH-Net News Feeds
Latest Additions
 
         
Free Business and Tech Magazines and eBooks

© 2013 The Ethical Hacker Network
Joomla! is Free Software released under the GNU/GPL License.