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

You are here: Home
EH-Net
May 23, 2013, 01:15:02 AM *
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 ... 17
46  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: CREST Information on: March 27, 2013, 04:48:13 PM
I guess this goes back to the question in the original post then: How do you prepare for the CRT exam?

I'm also from the UK, and am also working towards a career in Penetration testing. I'm currently working on the OSCP, and once I've got that I'm going for CRT.
 
I've been using the crest-technical-syllabus to fill in any gaps in my knowledge.

I hear that the 7safe course is pretty good http://www.7safe.com/ethical_hacking_course-technical_hands-on.htm for prep work.

I took this recently, and was really impressed with the quality of both the materials and the instructors. You've already done the CAST so I guess you know that already.

UKSecurityGuy's advice is spot on from what I've seen so far researching jobs in the UK.

What kind of salary ranges do "junior" pentesters command?

From what I've seen this can vary considerably depending on the company and your experience.

47  Resources / Tools / Re: Remote deployment tools on: March 22, 2013, 04:18:08 AM
Try:

Code:
select * from Win32_OperatingSystem WHERE Caption LIKE "%Server 2008%"

ProductType 1 is for Client OS, If you're targeting Domain Controllers (2) and Member Servers (3):

Code:
select * from Win32_OperatingSystem WHERE Version LIKE "6.1%" AND ( ProductType = "2" or ProductType = "3" )

The above can be shortened to:

Code:
select * from Win32_OperatingSystem WHERE Version LIKE "6.1%" and ProductType <> "1"
48  Resources / Tools / ThreatAgent Drone - passive Open Source Intelligence (OSINT) on: March 20, 2013, 03:19:32 PM
Quote
ThreatAgent Drone™ bootstraps security assessments by providing Attack Surface reports for Humans

Drone takes a different approach when it comes to passive Open Source Intelligence (OSINT). It is built provide actionable intelligence on limited sources, not trying to collect "all the things". My belief is that you can be just as effective on social engineering, penetration testing, and user awareness training with smaller sets of data.

An example of smaller data sets is Drone only looks through the top 100 search results for LinkedIn. Sure there could be thousands of results for any organization, but 100 will suffice for an successful attack. Drone also take a similar approach with hosts, it only tries to identify the low hanging fruit and attack scenarios that are likely to happen.

Drone shouldn't be viewed as a final product when it comes to a security assessment or attack surface. The attack surface report can be used to bootstrap assessments and their reports. Drone can also be used to educate students, organizations, and especially management on attack surface, threat modeling, and OSINT.

Drone intentionally offers less in order to provide more value which is a key principle taught in Rework. I believe the organizations are inundated with too much information and struggle to make decisions to improve security. Too many tools focus on scenarios that are "highly" unlikely to ever happen. Sometimes less is better.

Instead of building tools that provide information to feed into other tools, I'm building tools for humans. You can follow the journey at www.threatagent.com.

Source: https://www.threatagent.com/

A short blog post from trustedsec on ThreatAgent Drone:

https://www.trustedsec.com/march-2013/threat-agent-a-smart-profiler-for-us-penetration-testers/
49  Ethical Hacking Discussions and Related Certifications / Other / Internet Census 2012: Port scanning /0 using insecure embedded devices on: March 19, 2013, 03:32:00 PM
Although this is clearly on the wrong side of ethics/legality, an anonymous researcher built a botnet to scan the enire IPv4 address space. It's an interesting read.

Quote
Two years ago while spending some time with the Nmap Scripting Engine (NSE) someone mentioned that we should try the classic telnet login root:root on random IP addresses. This was meant as a joke, but was given a try. We started scanning and quickly realized that there should be several thousand unprotected devices on the Internet.

After completing the scan of roughly one hundred thousand IP addresses, we realized the number of insecure devices must be at least one hundred thousand. Starting with one device and assuming a scan speed of ten IP addresses per second, it should find the next open device within one hour. The scan rate would be doubled if we deployed a scanner to the newly found device. After doubling the scan rate in this way about 16.5 times, all unprotected devices would be found; this would take only 16.5 hours. Additionally, with one hundred thousand devices scanning at ten probes per second we would have a distributed port scanner to port scan the entire IPv4 Internet within one hour.

http://internetcensus2012.github.com/InternetCensus2012/paper.html
50  Ethical Hacking Discussions and Related Certifications / Cyber Warfare / Re: Symantec CRC on: March 18, 2013, 04:40:13 PM
I am, but work commitments are getting in the way at the moment. Sad

Despite hearing online mentioned several times, from what I've seen so far all the events require you to be there.
51  Ethical Hacking Discussions and Related Certifications / Mobile / Re: Locked iPhone on: March 18, 2013, 04:03:48 PM
At least, I have learn quite a few things along the way...

Same here, I know now considerably more about iOS security than I did last week.

Ah, turns out I was wrong. You can't do an offline attack because you need to extract the hardware key.

Elcomsoft also offer an iOS Forensic Toolkit which can extract the keys, however, it's availability is restricted to select government entities (such as law enforcement, forensic organizations and intelligence agencies).

It looks like Elcomsoft has a commercial tool too: http://www.elcomsoft.com/eppb.html That might be worth a shot if nothing else works and the photos are worth $80 to her.

AFAIK this works on a backup of the device, not the physical device.

52  Resources / Tools / Re: Remote deployment tools on: March 17, 2013, 05:50:14 PM
If all you're doing is registry changes, just use group policy: http://technet.microsoft.com/en-us/library/cc753092.aspx

That's much easier to manage.

+1



53  Resources / Tools / Re: Remote deployment tools on: March 17, 2013, 04:13:55 PM
Assuming you have an up to date version of PsExec.

If you try running PsExec from an elevated cmd prompt (using administrative credentials for the remote system) and use the -h parameter do you still get access denied?

Code:
-h         If the target system is Vista or higher, has the process
           run with the account's elevated token, if available.

54  Ethical Hacking Discussions and Related Certifications / Mobile / Re: Locked iPhone on: March 16, 2013, 11:34:01 AM
Did she use iCloud for backup?

Unfortunately to use iCloud you need iOS 5 or higher, this isn't available for the iPhone 3G.
55  Resources / Tools / Re: Remote deployment tools on: March 16, 2013, 09:02:40 AM
PsExec should still work on Windows Server 2008, although if UAC is enabled it'll change the way you run PsExec.

What is the problem you are having?

Windows Powershell can also be used for remote installs.
56  Ethical Hacking Discussions and Related Certifications / Mobile / Re: Locked iPhone on: March 15, 2013, 11:29:12 AM
I was looking through these last night, you might find something of use in here:

iOS hacking resource collection



57  Ethical Hacking Discussions and Related Certifications / Mobile / Re: Locked iPhone on: March 14, 2013, 03:24:22 PM
Unfortunately, from what I've been able to find (as I'm sure you have), given the circumstances, your friend needs to start considering those pictures lost.Sad

I hope to be proved wrong!
58  Resources / Links to cool sites. / Re: Kali Linux 1.0 on: March 13, 2013, 03:09:09 PM
I downloaded the VMWare image. When I tried to open it using my VMware Workstation 8.0.4 on Win 7 pro 64 bits I received the following error.

"The configuration file "D:\VMware\kali-linux-1.0-i386-gnome-vm\kali-linux-i386-gnome-vm.vmx" was created by a VMware product that is incompatible with this version of VMware Workstation and cannot be used.

Cannot open the configuration file D:\VMware\kali-linux-1.0-i386-gnome-vm\kali-linux-i386-gnome-vm.vmx."

"Cannot find a valid peer process to connect to."

I'll try at home with a newer version of VMware.

Try editing the "virtualHW.version =" line in the .vmx file to your version.
59  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Using Metasploit on Kali Linux, the Evolution of BackTrack - Live webcast on: March 13, 2013, 10:53:18 AM
Quote
Rapid7 are offering a free webcast on Using Metasploit on Kali Linux, the Evolution of BackTrack Thursday 21st March 2013 at 3:00PM ET:

In this webinar for IT administrators and security professionals, Mati Aharoni, Devon Kearns, and HD Moore will talk about Metasploit on Kali Linux, the evolution of the popular BackTrack Linux, a free security auditing operating system and toolkit.

Kali Linux incorporates more than 300 penetration testing and security auditing programs with a Linux operating system, delivering an all-in-one solution that enables IT administrators and security professionals to test the effectiveness of risk mitigation strategies.

Responding to the strong community demand for Metasploit on BackTrack Linux, Rapid7 reengineered Metasploit in accordance with the Debian standards on which Kali Linux is built. Metasploit users now benefit from a more integrated and robust experience with the toolkit, as well as Rapid7 technical support for Metasploit Pro users.

The webinar will include a live demo.
Participants will learn:

    How taking an offensive approach can help your defensive security
    What’s new in Kali Linux compared to BackTrack
    How to successfully use Metasploit on Kali Linux
    Tips & tricks for successful security auditing with BackTrack

Speakers:

    Mati Aharoni aka muts, Lead Trainer & Developer, Offensive Security
    Devon Kearns aka dookie2000ca, Technical Operations, Offensive Security
    HD Moore aka HD Moore, Chief Security Officer, Rapid7


http://information.rapid7.com/kali-linux-webcast-registration.html?LS=1794076&CS=web
60  Resources / Tools / CrackStation's Password Cracking Dictionary on: March 12, 2013, 04:52:19 PM
I haven't used this personally, but it may be of interest to someone:

Quote
4.2 GiB compressed. 15 GiB uncompressed.
1,493,677,782 words

http://57un.wordpress.com/2013/03/09/a-big-password-cracking-wordlist/

Quote
What's in the list?

The list contains every wordlist, dictionary, and password database leak that I could find on the internet (and I spent a LOT of time looking). It also contains every word in the Wikipedia databases (pages-articles, retrieved 2010, all languages) as well as lots of books from Project Gutenberg. It also includes the passwords from some low-profile database breaches that were being sold in the underground years ago.

http://crackstation.net/buy-crackstation-wordlist-password-cracking-dictionary.htm
Pages: 1 2 3 [4] 5 6 ... 17
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.087 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.