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 23 guests and 1 member online
 
Free Business and Tech Magazines and eBooks

You are here: Home
EH-Net
May 21, 2013, 08:25:47 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
1  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Ethical IRC Channel? on: February 05, 2013, 10:35:26 PM
freenode themselves have some general info relating to SSL , i.e.
http://freenode.net/irc_servers.shtml#ssl
http://freenode.net/faq.shtml#sslaccess
2  Ethical Hacking Discussions and Related Certifications / Forensics / Re: How to find a file time stamps on: February 05, 2013, 09:35:37 PM
normal ls -l will give mtime, but you can get atime with ls -lu and ctime with ls -lc
It may also depend on what filesystem is in use, not just how the file was copied.
3  Ethical Hacking Discussions and Related Certifications / Malware / Re: Analysis of the FinFisher Lawful Interception Malware on: August 14, 2012, 08:22:07 PM
Hmm check again.  Looks to me like the block is registered by the telco in Canberra, and that IP isn't located there.
4  EH-Net / Greetings / Re: Another new guy on: April 12, 2012, 05:37:23 PM
Welcome Deadpool614.  Good luck with your studies.
Another suggestion/idea for a scripting language to learn: Lua.  I don't know it myself, but may be worthwhile, for Nmap scripting.  Python is great and I much prefer it to Perl.  Not sure how good it is, but there's a book Dive Into Python available free online.
5  Ethical Hacking Discussions and Related Certifications / General Certification / Re: The hardest certification you have ever done? on: February 03, 2011, 08:49:47 PM
Another non security one.  Presumably 'done' doesn't necessitate passing.
Optivity for HP OpenView.  But I started the 3-day course on the 3rd day.
6  Ethical Hacking Discussions and Related Certifications / General Certification / Re: Are GIAC (SANS) certifications too easy? on: December 21, 2010, 08:42:40 PM
Hi Dark Knight.
I think you're right; you can now do GIAC certifications without writing a paper, and that gives you the "Silver" type of certification.

Gold requires you do a paper - see http://www.giac.org/gold/

There's also Platinum/Expert - http://www.giac.org/gsx.php
7  Ethical Hacking Discussions and Related Certifications / Malware / Re: Is there a virus program that will make my computer run well? on: March 03, 2010, 08:41:21 PM
Just wanted to mention, the idea of good viruses, goes back much further.  Dr Fred Cohen wrote some interesting papers about it.  Most AV companies won't even consider the possibility, because part of what they are selling is trust. 
That said, the Morris worm is a classic example of why even a good/research worm, might not be a good idea.  No matter how careful people are, only testing a worm on a private network, lysine deficiency type stuff..  Things can still go wrong.  Particularly when on the Internet, it's a lot harder to guess/programatically determine what OS a host is running, what strange drivers/other malware/other network apps are running etc., and be sure that your worm will run as you want.
8  Ethical Hacking Discussions and Related Certifications / General Certification / Re: Advice for a Network Security career plan on: January 18, 2010, 07:24:58 AM
This is just my impression, but I believe CISSP is meant to be a more general, risk management type course.  Yes it's long, difficult and expensive, but if you are interested in technical skills, it may not be so helpful anyway.  I would perhaps look at GSEC (vendor neutral, which is always a plus I think), or CCNA.  As much as it bugs me that a lot of people, primarily recruitment staff and managers, see Cisco certifications as being security-related, they will help you get jobs.  A CCNA should get you a reasonable networking job, which you can leverage to find a security-related position, and perhaps look at doing more specific security certs then.
Good luck!
9  Ethical Hacking Discussions and Related Certifications / Other / Re: What is the Best Version of Linux? on: May 11, 2009, 06:20:21 PM
Backtrack based on Ubuntu?  Since when?  It's based on SLAX.  Version 3 is anyway.  Personally, I don't like Ubuntu, but I will concede it's a good distro for those who are new to Linux and it's easy to install.  Slackware, Arch, Fedora and OpenSUSE are all worth consideration for a desktop Linux system.
10  Ethical Hacking Discussions and Related Certifications / Programming / Re: [Python] Parsing text from a webpage on: January 28, 2009, 12:02:30 AM
I'm new to Python too, but how about this?
Same as yours, but it should strip out HTML tags.

import urllib2, sre, re, sys, string

def remove_html_tags(data):
   p = re.compile(r'<[^<]*?>')
   return p.sub('', data)

print "Enter The website: "
url = raw_input()

response = urllib2.urlopen(url)
data = remove_html_tags(response.read())

print "search word"
topic = raw_input()

matches = re.findall(topic, data)
print matches

11  Ethical Hacking Discussions and Related Certifications / Malware / Re: Security related issues on: January 25, 2009, 08:31:20 PM
Maybe this is partly a personal thing, but I think that it's almost always a bad idea to reinstall/format.  If it's a production box and you really need its functionality, I'd suggest you do something like restore from images/backups a duplicate system, or swap drives, so you haven't messed with the infected volume.  You can then get some resources onto identifying exactly what it was infected with and more importantly how, so you can ensure you won't get infected again.  Might also be worthwhile keeping evidence so you can if not pursue legal avenues, have samples of malware which you can send to your AV vendor.  I always find it odd that so many large corporates pay lots of $ for AV services, and don't bother sending in samples.  It's not helpful bitching about vendors not finding all malware, if you don't make sure they know which malware they don't find. 
If you reinstall, there's a very good chance, that the reinstalled machine will get reinfected; note it's possible for malware to survive a reinstall.
12  Ethical Hacking Discussions and Related Certifications / Forensics / Re: Any good network based solutions for blog monitoring? on: January 13, 2009, 01:14:25 AM
That's what an acceptable use policy is all about.  Note too, that as far as I'm aware, the laws between different countries vary considerable regarding how much monitoring is allowed, and whether or not the company has to have some just cause for doing a thorough audit of an employee's machine etc.
IDS rules won't be perfect.  You only have to look at spam filtering to see how limited machines can sometimes be at matching patterns etc without proper context!
13  Ethical Hacking Discussions and Related Certifications / Malware / Re: uninstall trend mciro officescan clients on: January 08, 2009, 06:17:47 PM
Can't you do it with the administrator console?
Which is described I think in Solution ID 1035148 on Trend's support site.
14  Ethical Hacking Discussions and Related Certifications / Web Applications / Re: Determine URL from IP address on: January 08, 2009, 06:09:17 PM
Hi Scott,

You may be able to use a tool to 'fuzz' the pages under the main site, or spider the site, which might work if there are references to http://aaaa/bbbb/* from http://aaaa/*
15  Ethical Hacking Discussions and Related Certifications / Malware / Re: Autoplay when i try to open the drive. on: January 03, 2009, 04:52:36 PM
Hi,
I know it's a bit of a smart alec response, but I think it's still valid:
Have you considered using anti-virus software? :-)
If you can, run it from a Live CD or floppy so that if there's malware on the Windows box, it won't be resident in memory when you do the scan.
Pages: [1] 2
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 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.