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

You are here: Home
EH-Net
May 23, 2013, 11:07:50 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 ... 69
1  Ethical Hacking Discussions and Related Certifications / Other / Re: Cyber Challenge Games on: February 26, 2013, 07:44:41 PM
#5 took me a while.  That was fun Smiley
2  Ethical Hacking Discussions and Related Certifications / Other / Re: Cyber Challenge Games on: February 26, 2013, 11:42:27 AM
I got a server 500 error on a few of them too.   Fun challenges though.
3  Ethical Hacking Discussions and Related Certifications / Web Applications / Re: OWASP Top 10 2013 on: February 25, 2013, 03:44:31 PM
Yep, this seems pretty spot on to me as well. 
4  Ethical Hacking Discussions and Related Certifications / Other / Re: Tech books - physical or digital? on: February 11, 2013, 01:02:34 PM
I am definitely more a fan of ebooks.  I have a Kindle and it works well for reading the books cover to cover, like others have said.  I also make use of Calibre and convert the books to PDF.  I can then search them for what I need.   It's just not practical to carry print books anymore.
5  Ethical Hacking Discussions and Related Certifications / Web Applications / Re: Need some MYSQL practical Resources on: February 06, 2013, 09:36:04 AM
This is always a good start:

http://www.w3schools.com/sql/default.asp

I would also suggest reading as much as you can on SQL Injection.  There are a ton of varieties of this attack and a ton of Internet resources to go along with it. 

https://www.owasp.org/index.php/SQL_Injection

http://www.youtube.com/watch?v=rdyQoUNeXSg

6  Ethical Hacking Discussions and Related Certifications / Forensics / Re: Web site forensics on: February 05, 2013, 10:01:17 PM
This one is actually tough.  In forensics, we have live system analysis and dead-box forensics.  In order to do a complete investigation of a hacking/malware attack, you would want to capture RAM, other volatile information, and a forensic image of the box.  This is really the best evidence for an analysis.  Unfortunately, many Word Press, Joomla, and other CMS sites are run on shared hosting.  You will not get access to the actual server (or the virtual machine) in most cases. 

In that case you are stuck with log files and the malware itself.  Most Word Press compromises are designed to redirect you somewhere.  Although, some will aim for complete access.  You would want to look at the MySQL database and the code base.  Chances are you will find some malicious (and obfuscated) javascript code.  You may also see a ton of strange content stored in the database, fragments of SQLi or other attacks.  You can look at log files and database logs for the source of the injected files.  Most of the time, you will hit a proxy though. 
7  Ethical Hacking Discussions and Related Certifications / OSCP - Offensive Security Certified Professional / Re: I passed OSCP !! on: February 05, 2013, 09:53:00 PM
Congratulations and way to stick with it!
8  Ethical Hacking Discussions and Related Certifications / Forensics / Re: How to find a file time stamps on: February 05, 2013, 09:51:35 PM
Unless you specifically used a copy utility that preserved the MAC times of the file, you can't trust the file was copied with metadata preserved.  You are also not sure if it is the same file unless you have cryptographic hashes of both, the source and the destination, to support this. 

Your best bet is to analyze the original file, or rather a forensically sound copy, of it. (You don't to work with the original evidence as a rule of thumb.)  As others have already stated, there are a ton of utilities that will give you the metadata of the file.  You may also want to look at autopsy and sluethkit (http://www.sleuthkit.org/autopsy/). 
9  Columns / Andress / Re: [Article]-Course Review: SANS FOR408 Computer Forensic Investigations – Windows In-Depth on: January 25, 2013, 09:28:38 PM
Jason, thanks for the detailed review.  You were certainly very thorough in your description of the activities.  This sounds like a good introduction to forensic analysis.  It appears that it was limited to Windows forensics, but had some great topics on the subject.  Prefetch files, link files, and the tons of registry artifacts can keep an investigator busy Smiley 

It seems that people are pushing FTK these days.  Access Data has some nice tools, but for some reason many investigators become dependent on FTK and never seek other options.  This could lead to quite a few missed artifacts that FTK doesn't handle well, like Shadow Copies on Windows 7.

I am looking forward to your review of the Advanced Forensics course from SANS.  This is where the magic will happen Smiley
10  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Evading Anti-virus Detection with Metasploit - Live Webcast on: January 24, 2013, 02:24:27 PM
It happened.  It was a bit of a advertisement for Metasploit Pro, but good info still. 
11  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Wireshark - dissecting OpenVPN traffic on: January 24, 2013, 02:07:16 PM
I just wanted to let you know that the packet-openvpn.c is already in the svn tree.  I was able to compile wireshark in Linux (haven't tried on Windows).   I was able to detect and dissect the OpenVPN packets in my capture without many issues.  I love that you provided an option to change the port assignments for the protocol, since mine runs over a non-standard TCP port. 

My only issue is that some of the SSL / TLS key negotiation gets lost.  That's easily remedied by switching the decoding to SSL though. 

Thank you for the great work on this!
12  EH-Net / Ethical Hacktivism / Re: EH perception of Anonymous on: January 23, 2013, 11:36:33 AM
I personally think that they have some good causes they take up from time to time.  They are also misguided and juvenile at other times.  It's certainly a new breed of hacker groups.
13  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Wireshark - dissecting OpenVPN traffic on: January 23, 2013, 11:34:53 AM
Wow, this is exactly what I needed Smiley
14  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Wireshark - dissecting OpenVPN traffic on: January 22, 2013, 10:56:26 PM
Hey everyone,

I figured I would post another question that I have been stumped on.  I have a packet capture of an SSL VPN session.  The SSL VPN is basically a slightly modified implementation of OpenVPN over TCP.   

I am working in Wireshark to try to dissect and decode the captured data.  I have the private key files used for the key exchange.  I am working now to retrieve the session key (which seem to change every few KB). I am just missing a dissector for OpenVPN.  It looks like the Wireshark team has had requests for one.  Has anyone successfully been able to decode OpenVPN traffic in Wireshark? 
15  Ethical Hacking Discussions and Related Certifications / Security / Re: Training recommendation for developers on: January 22, 2013, 10:51:19 PM
Thanks everyone.  I wish I could do SANS, but I don't have the budget for it.  I am also working with someone who needs a class-room environment to maximize the results from the training.  He doesn't absorb as well from books. 

I will definitely check out eLearnSecurity to see if I can make that work. 
Pages: [1] 2 3 ... 69
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.069 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
 
         
Advertisement

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