|
EH-Net
|
|
May 26, 2013, 03:14:42 AM
|
Show Posts
|
|
Pages: 1 [2] 3 4 ... 40
|
|
16
|
Resources / News from the Outside World / Re: Serious Remote PHP Bug Accidentally Disclosed
|
on: May 04, 2012, 03:35:01 AM
|
|
first of all, props to eindbazen, i know some of them personally and they are hardcore. The vulnerability is indeed quite simple, but do not forget that the situation has to be just right, you have to actually run PHP in CGI. But still, kudo's to eindbazen for finding it and trying to disclose it responsibly (they discovered this vulnerability in januari and reported it several times), if they only checked the private box...
|
|
|
|
|
18
|
Resources / Career Central / Re: Keywords to use when searching for security jobs..
|
on: May 01, 2012, 02:53:52 AM
|
I recently started a computer forensic internship, so I am gaining the oh so valuable experience...but I still can't decide if I want to have a career in computer forensics or pentesting. I've been searching keywords of CF and pentest jobs on Dice, Indeed, and Simply Hired and there are a few things that scare me about the two fields.
#1. The number of jobs for each CF and Pentration testing. I would hate to spend so much time and effort on learning and certs, to find I can't land a job in the field I love.
**What's your opinion on the career outlook for either job?
i would not worry so much about that. there is still a high demand for security specialists in the pentesting and forensic field. Also if you are motivated to get such a job, maybe you should take a step back and take a job that eventually lead you to your ultimate goal. remember that sometimes taking a step back get you to your ultimate goal. #2. Salary; I know money isn't everything but I definitely want to make a good living for myself and future family. When I google "computer forensic" and "penetration tester" salaries, I get different numbers from every website.
**I know it depends on so many factors, but from your experience how much should a professional with 0-5 years make per year?
This differs alot per country, heck even per state if you are located in the US. just do some research on different forum's and see if it is equal to other specialized IT jobs. Even if we have a somewhat different occupation, down the line we are still "just" an specialized IT employee. #3. Here are the words I use to search for jobs, let me know if there are some words I should add. **CF: EnCE, GCFA, GCFE, GREM, EnCase, FTK, CCE, CHFI, computer forensics, digital forensics **Pentesting: OSCP, OSCE, GPEN, GWAPT, metasploit, CISSP, pentration tester, ethical hacker, backtrack, wireshark, CEH, vulnerability Please add any other comments that could help, thanks again everybody  . This seems about right, but remember because it is such a niche market most organizations use other ways to seek there employees, think of conferences where there are boothstands, a great place is to look for organizations that are specialized in the pentesting or forensic working field and look at there website, if there are any openings they surely will be noted there and ofcourse forums/board like these (see the pentest request in san francisco posted a few days ago). Go ahead and search the web and do not rely on sites like monsterboard or whatever they use most in your country.
|
|
|
|
|
19
|
Ethical Hacking Discussions and Related Certifications / Programming / Re: spit out all users and passwords in MySQL DB?
|
on: April 26, 2012, 04:49:20 AM
|
If I run: ') AND (select * from information_schema)-- (((1=1
I get the error "table glocken_emil.information_schema doesn't exist" so it would appear that they have appended glocken_emil to all of the tables here. I guess that tells me a little bit about the structure...
hmm, from here you can go two ways: try to guess the correct information.schema tablename (which could be glocken_emil.information_schema) or try to guess other tables like glocken_emil.users. come to think of it, the error gets me thinking, it looks like the query is being modified to access a table with the tablename 'glocken_emil.*'. again it has been a while but you can try to use the brute forcer in sqlmap (where you define the prefix as glocken_emil) and see if you can get some tablenames.
|
|
|
|
|
20
|
Ethical Hacking Discussions and Related Certifications / Wireless / Re: Differences between CWSP and OSWP
|
on: April 25, 2012, 03:12:00 AM
|
If your interest is in enterprise wireless, CWSP is your undoubtedly your cert of choice. OSWP features on cracking WEP/WPA-PSK, rainbow table generation, GPS mapping, client attacks (karmetasploit), etc. This is all obviously good information to know if you manage wireless networks, but the CWSP takes you through the entire process of planning, designing, implementing, monitoring, etc. I took the exam a version back, but I remember it being very heavy on all the different EAP types.
Edit: I did the OSWP about a month ago and have been meaning to post a review on my blog. I'll try to get that up sometime this week.
Well said, if you do not want to drift off from the ethical hacking side OSWP is a good choice.
|
|
|
|
|
24
|
Ethical Hacking Discussions and Related Certifications / Programming / Re: SQL / OS / LDAP Injection
|
on: April 20, 2012, 02:23:29 AM
|
If you want to learn more about the nature of these attacks i suggest you look at the very first disclosure of the vulnerabilitiy. A nice example would be smashing the stack for fun and profit regarding to buffer overflows ( http://insecure.org/stf/smashstack.html) which gives great information about how the attack actually works. Now there are several sites and papers that outline these attacks for you. Almost all show you the how, but most are missing the why, which i think you are looking for. after some googling i saw that even wikipedia has a nice writeup explaining SQL-injection. i guess the underground is not the only place any more to find such information. Oh and remember that OWASP has alot of information also.
|
|
|
|
|
25
|
Resources / Career Central / Re: Pre sales!
|
on: April 20, 2012, 02:14:01 AM
|
|
hm, pre-sales sounds to me you will spent more time talking about security than actually doing it. ofcourse sales employee's have to have knowledge of the products they sell, which means they will have some level of technical understanding, but performing for example an security assessment will not happen.
Depending on your goals and experience, landing a job like this could position you in a situation where you are able to grow to your ultimate goal, unless this is it, which i can not imagine because of you being on EH.net. So figure out what options you have within the company which will get you to your goal and base your decision on that. Good luck!
|
|
|
|
|
28
|
Ethical Hacking Discussions and Related Certifications / Programming / Re: spit out all users and passwords in MySQL DB?
|
on: April 18, 2012, 02:43:58 AM
|
|
its been a while, but let me try this.
the key is to know which tables and columns are containing the information you want, you can get these by requesting the information.schema database. When you have insufficient rights to access the information.schema database you can try two things, guess the names or brute force them.
in the end you want to inject a request like this:
UNION SELECT password FROM users where login_name='admin'--
there are several good sql injection tutorials out there which you can use for more information. good luck!
|
|
|
|
|
Loading...
|