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 39 guests and 1 member online
 
Advertisement

You are here: Home
EH-Net
May 24, 2013, 08:20:28 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  
  Show Posts
Pages: 1 2 3 [4] 5 6 ... 11
46  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Password Security (and my new blog) on: July 04, 2012, 03:32:27 AM
But again if time is limited then you pick your filler for the little spare time you have.  Mine is reverse engineering malware. 

Mine is crypto.  I heart teh maths.
47  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Password Security (and my new blog) on: July 03, 2012, 05:17:17 PM
3xban,

running my own full sites is what lead me to speaking at Bsides Detroit, GrrCON and DerbyCon this year.

I'm also teaching a workshop to a local Security User group (MiSEC) in Aug.

You'd be surprised what doing something for personal learning, and brushing up on skills can lead to.

I'm working full-time and going back to school.  Even a small amount of extra time to maintain a full site would be a deal breaker for me.  Once I'm out of school, I might do that; especially if I need to release code, exploits, etc.
48  Ethical Hacking Discussions and Related Certifications / General Certification / Re: How to become a good hacker? on: July 02, 2012, 02:51:58 PM
Check out this thread:
http://www.ethicalhacker.net/component/option,com_smf/Itemid,54/topic,8775.msg48286/#msg48286

And this article:
http://www.infiltrated.net/pentesting101.html.
49  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Password Security (and my new blog) on: June 30, 2012, 12:33:04 PM
ok buddy congrats but i have a question when u can have a website for free with all features that other sites has, why u still write weblog?

I don't have to do any maintenance or setup.  I can just write, check my stats once in a while, etc.
50  EH-Net / News Items and General Discussion About EH-Net / Re: [Article]-May 2012 Free Giveaway Winner of iSWAT Training by FishNet Security on: June 29, 2012, 03:02:30 PM
Thanks again guys.  I'm pretty excited.
51  EH-Net / News Items and General Discussion About EH-Net / Re: [Article]-May 2012 Free Giveaway Winner of iSWAT Training by FishNet Security on: June 28, 2012, 05:58:31 PM
Thank you very much.
52  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Pen test for Cross-Site Scripting (Expect Header) question. on: June 28, 2012, 05:08:32 PM
It used to be that IE was vulnerable and Firefox was not:

http://blogs.securiteam.com/index.php/archives/628

From the post:

"my site is vulnerable to this form of XSS (if the victim uses IE). What can be done? Everything that normal XSS can do including phishing and… well… everything.
As for fixing this (and yes… I will get around to that), I’m not too sure yet. I know I could create a custom error page but there may be better solutions, I’m asking RSnake about that and I’ll either comment here or just update this post if/when I get that info.

The reason this doesn’t work in firefox is because it doesn’t allow or support the Request header, I’m not sure which."
53  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Password Security (and my new blog) on: June 25, 2012, 12:06:24 AM
Recently, I've had several discussions (online and offline) about password security, password hashing algorithms, and what it is that we're trying to accomplish.  I ended up starting a blog so I had a place to publish everything.  The articles up so far are about password security, but I plan to publish more on other (mostly application) security issues.  I hope that what I've written will be of interests to the folks here.

So far, I've posted about why rainbow tables aren't as powerful as people think, how long passwords actually need to be to withstand an online or offline attack, and an analysis of what we're actually trying to accomplish with salting, stretching, delay timers, expiration etc.

The blog is here: http://bugcharmer.blogspot.com

Feedback is welcome.
54  Ethical Hacking Discussions and Related Certifications / Programming / Re: Java programming on: June 16, 2012, 11:29:41 PM
Don't worry about programming certifications.  Programming certifications carry no weight for most employers.  Whereas many networking jobs will ask for a CCNA or a security job will ask for a CISSP, programming jobs generally require CS degrees and experience and do not look at certifications at all.  If your goal is to be a full-time programmer, try to get a CS degree

Outside of application security, the programming skill that is expected in most security jobs is minimal or is considered a bonus/nice-to-have.  Learn whatever languages interest you and put them to use: automate, build tools, etc. 
55  EH-Net / Special Events / Re: [Article]-Survey of Hacking Movies: Framing the Debate on the Gateway Drug into the Hacking Cult on: June 14, 2012, 10:16:54 AM
I'd personally like to see Programming Perl made into an action-adventure flick. The cost for sets and wardrobe would be cheap  Grin

I'd just hope it was a faithful adaptation.
56  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Enumerating the 'hidden' IP addresses using port 0? on: June 13, 2012, 05:23:14 PM
Correct.
57  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Enumerating the 'hidden' IP addresses using port 0? on: June 13, 2012, 02:45:42 PM
Nessus reports local information as port 0.  Are you scanning this machine remotely or are you running Nessus from the target machine? 

Port 0 is reserved and not used by any (legit) TCP/UDP services.  On Unix, a program can request a dynamic port by specifying port 0; this will tell the API call to select a port.

58  Columns / Editor-In-Chief / Re: Free Rapid7 Webcast: Life's a Breach! Lessons Learned from Recent Breaches on: June 12, 2012, 04:21:02 PM
Here's the lesson: use bcrypt.

The reason the LinkedIn hack resulted in so much criticism is that the passwords were all hashed without any sort of password stretching or salting.  Salting prevents precomputation and forces the attacker to guess each password separately; brute force can't scale for multiple users.  Stretching also destroys rainbow tables and makes brute force much slower.  Some people have criticized LinkedIn for using SHA-1 but that's beside the point.  With salting and stretching, even MD5 would be fine (although I'd use SHA-256 or better).

Nobody should design their own scheme here.  Salting and stretching are already implemented in bcrypt, scrypt, and PBKDF2.  Use one of those.  Scrypt is new, but bcrypt has been in OpenBSD for more than a decade and is pretty widely supported.  PBKDF2 is standardized in RSA's PKCS #5 and in RFC 2898.  Bcrypt and Scrypt appear to be the strongest options.

59  Ethical Hacking Discussions and Related Certifications / General Certification / Re: Certification plans for 2012? on: June 12, 2012, 11:22:34 AM
I've been in school so I haven't had time to focus on certs.  Four classes down so far this year: Forensics, Software Architecture, Network Security, and Security Management.
60  Features / Book Reviews / Re: "TCP/IP Essentials: A Lab-Based Approach", need reviews. on: June 11, 2012, 11:19:39 PM
TCP/IP Illustrated isn't a theory book: it follows sniffs of real traffic throughout.  If the other book helps you, great.  But, you can just setup a few machines and start playing around.  Setup servers for FTP, HTTP, Telnet, SSH and sniff the traffic.  Monitor your ordinary web/email traffic.  Setup a Snort box and monitor traffic with that.  If you have access to Cisco equipment, you can put that into the mix; otherwise, download one of the network sims and practice Cisco commands on that.
Pages: 1 2 3 [4] 5 6 ... 11
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.067 seconds with 21 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.