|
EH-Net
|
|
May 23, 2013, 04:33:54 PM
|
Show Posts
|
|
Pages: 1 ... 5 6 [7] 8 9 ... 30
|
|
92
|
Ethical Hacking Discussions and Related Certifications / Programming / Re: Open source security projects to participate in?
|
on: February 01, 2012, 04:10:39 PM
|
Sometimes games make learning fun  Totally agree! Games help me a lot. It gets out of the theoretical stuff or examples just for the sake of examples into showing application. I learn the techniques/theories a lot easier when I can actually see practical application. Show me theory, ehh I'll understand its application eventually. Show me one application, my mind will run rampant with different ideas of how the technique can be applied elsewhere  I forgot to mention you can also get BackTrack and just search it for python programs.
Funny you mentioned that, I just thought of that this morning, but gotta wait til I get home tonight to see what I can find  And thanks for mentioning Scapy. I had taken a look at that before, but was a little discourage because I didn't understand Python at the time. So I set it aside until I learned Python, but it slipped my mind! I'm looking to learn some other languages in the future, so these other suggestions for Powershell, Ruby, etc will come in handy soon enough 
|
|
|
|
|
93
|
Ethical Hacking Discussions and Related Certifications / Security / Re: SANS security courses too expensive?
|
on: February 01, 2012, 12:08:26 AM
|
From reading about the program, not everybody gets selected. How many people they select for each room depends on how many classes they are teaching and how many people are attending the event. And as tturner mentioned, STI students get priority. 2nd page of this document ( http://www.sans.org/security-training/volguidelines.pdf) shows the priority listing: STI students, people who have facilitated previously, then first timers. I've applied twice. I didn't get chosen for the first event (one of the big SANS events that was half way across the country), and I'm still waiting to hear back on my 2nd application (community SANS event right here in town). We'll see what happens!
|
|
|
|
|
97
|
Ethical Hacking Discussions and Related Certifications / General Certification / Re: Is it true?
|
on: January 30, 2012, 11:44:18 PM
|
|
I've never heard a number put on how many tools there are. I'm curious as to where they got that number, or how they came up with it. Not sure how'd they come up with a number like that either. Or if they account for custom tools people make and throw up on their sites that aren't that widely used. Or if they differentiate between tools created/used by blackhats or ones created/used by pentesters (LOIC vs Metasploit). Or tools that aren't even being supported/updated/used anymore.
Hmm...curious. But I don't doubt that there was a bit of exaggeration used there.
|
|
|
|
|
98
|
Ethical Hacking Discussions and Related Certifications / Programming / Open source security projects to participate in?
|
on: January 30, 2012, 09:01:05 PM
|
After years of trying, I've finally sat down and am learning to program (outside of HTML and a little bit of Javascript I've retained from high school). Only this time I feel like I'm actually getting somewhere! I feel like I'm actually starting to grasp it, which I'm really excited about. I've taken up Python as I've seen it recommended most places as a great starting place. I've wanted to help out a security project in some way, but lack of programming skills has kept me from doing much. Now that I'm getting somewhere with my programming, I'm looking to help again. I've read that most people start out helping with documentation and I'm totally cool with that. If anybody has any open source security projects/tools that they know is looking for help (Python-based), please let me know  I read a blog post somewhere with a short list of projects that were looking for help, but I can't seem to remember where I read that and didn't bookmark it 
|
|
|
|
|
100
|
Ethical Hacking Discussions and Related Certifications / Programming / Re: Bit a trouble with a script to parse out specific lines in text file
|
on: January 25, 2012, 05:05:53 PM
|
I'm not into working with files yet in my programming learning yet, but can you identify line numbers of the lines you find "AUTHORITY-CHECK<CRLF>" on? For example, as your script is searching through the text file, it finds "AUTHORITY-CHECK<CRLF>" on line 5. If so, maybe you can check that line number + 1 to see if the next line (5 + 1) begins with "OBJECT..." (if "line number matching "AUTHORITY-CHECK" + 1 startswith "OBJECT"). And if it does, then strip off the carriage return on the "AUTHORITY-CHECK" line and print both of the lines together as one. (print(line 5, 5+1)). I hope that makes sense  I'm studying my Python material right now and the stuff I'm learning has me thinking about this thread again haha
|
|
|
|
|
Loading...
|