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

You are here: Home
EH-Net
May 24, 2013, 04:26:04 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 ... 24
16  Resources / Tutorials / Re: introduce me exploitation books on: February 04, 2013, 07:35:56 AM
Hey, take a look at the "Open Security Training" courses, esp. "Into to Software Exploits" by Corey K., they are a good place to start.

http://opensecuritytraining.info/IntroductionToSoftwareExploits.html

Goooood!

Thanks i am really more comfortable with videos but its needs a gigantic internet bandwidth but its ok thanks.

is exploits are written in C or not??   
17  Resources / Tutorials / Re: introduce me exploitation books on: February 04, 2013, 07:31:31 AM
+1 for Hacking:AoE

Also hit up SecurityTube for assembly and exploitation instruction. Corelan and The Grey Corner have excellent tutorials as well.

Man thanks for your answer but i am busy in these days i don't have enough time to learn a super hard programming language called assembly!!!!! but thanks again maybe i'll go for it later.
18  Resources / Tutorials / Re: introduce me exploitation books on: February 04, 2013, 07:29:25 AM
If you're looking for a book, Hacking: The Art of Exploitation is an excellent one that covers exploitation of Linux programs in C. You'll also find numerous exploitation tutorials on Google.

Hey Super kojiman I've bought the book its great man great!! It even teachs C programming language to the audience!! Thanks again.
19  Resources / Tutorials / Re: introduce me exploitation books on: February 02, 2013, 11:15:16 PM
If you're looking for a book, Hacking: The Art of Exploitation is an excellent one that covers exploitation of Linux programs in C. You'll also find numerous exploitation tutorials on Google.

Thanks kojiman. Is it good for beginner like me?
20  Resources / Tutorials / introduce me exploitation books on: February 02, 2013, 10:20:43 PM
Hi there.
I am really busy in these days i can't use this forum like before but i'll be back soon.

Well, i am learning c programming at Harvard unversity cs50 course. After some weeks I've developed some ciphers and ...

Now i know the basics about c. So please let me know if there is any books out there about writing exploits only with c that i can study after this course?

Thank you so much
21  Ethical Hacking Discussions and Related Certifications / Programming / Re: Newbie at C help on: January 09, 2013, 12:57:51 PM
Hey,

You can do this in many, many different ways. Here are two working examples:

Code:
#include <stdio.h>

int main(void)
{   
    char chr = 'a';

    for(int i=0; i<2; i++)
    {
printf("%c", chr);
    }

    return 0;
}
Loops twice and there prints the value of 'chr' twice. Notice I removed the the new line character "\n" (which you can add later)

Code:
#include <stdio.h>

int main(void)
{   
    char chr = 'a';
    printf("%c%c", chr, chr);

    return 0;
}
Another variation, without the loop.

I used to teach C and C++ at a College. So I would be happy to give you a hand!



Hi there whats up? Man for my program maybe i need to print it more than 1000 times two was an exmaple so loop is better but i need to use another loop too so it may cause some confilict too any way what about the second one? Thx so much
22  Ethical Hacking Discussions and Related Certifications / Programming / Newbie at C help on: January 09, 2013, 11:27:26 AM
Hi there
I'm learning C language and i am so new in this world. so i have two problems the first one is i need to print a char two times in a line without using printf twice and i used this code:

Code:
#include <stdio.h>

int main(void)
{   
    char chr = 'a';
    printf("%2c\n", chr);
    return 0;
}


as you know the %2 won't print 'a' two times it will show it like this in output "  a" (with 2 spaces at first) and it is not bad i will need it too
but i need to declare a variable for it instead of %2 i need something like this:

Code:
#include <stdio.h>

int main(void)
{   
    int i = 2;
    char chr = 'a';
    printf("%ic\n", chr);
    return 0;
}



but it is not correct so can you please resolve these two problems god is bless you
regards cyber.spirit

23  Ethical Hacking Discussions and Related Certifications / Web Applications / Re: Practicing Web Attacks on: January 02, 2013, 01:30:24 PM
De-ice.net and hackerdemia are great disks too
24  Resources / Career Central / Re: Question about penetration testing specialties on: January 02, 2013, 01:26:12 PM
As a pentester it is better to learn both but i prefer to learn net pentesting first then app pentesting
25  Ethical Hacking Discussions and Related Certifications / Other / Re: Where are you from? on: January 02, 2013, 01:22:50 PM
I am from Iran/ Tehran
26  Resources / Tutorials / Re: free cambridge certificates!!! on: December 27, 2012, 12:12:41 AM
What SecurityMonkey meant is that the HR won't appreciate them, so in other words, the won't get you a job or anything.

Come on. Can you really find job with a brainbench's certificates? They even sell their certs however most of people don't know what is brain bench. i don't want to defend ciutesting.com or appreciate. I just wanna say its a good opportunity to get certified for free.
27  Resources / Tutorials / Re: free cambridge certificates!!! on: December 26, 2012, 02:45:45 PM
It looks interesting but I question the value in the real world....

Man they are just cambridge's partners and and this site is not the only site that gives cambridge's cert so its not fake and the exam is hard. So it has value.

I took internet associate and security associate exams. The sec exam was hard but i passed both of them and i got certified completely free and i didn't lose anything!!!!! If it was not free we could say its scam
28  Resources / Tutorials / Re: free cambridge certificates!!! on: December 24, 2012, 02:15:01 PM
It seems no one is interested i think. However i got certified in internet and security majors it is great and free.
29  Resources / Tutorials / free cambridge certificates!!! on: December 23, 2012, 02:20:36 PM
Hi there,
I'm sad because i busy now i cant be active in this forum like before but today i want to give a way that you can earn free certificate from cambridge unversity.

If you know any site that gives us some free certs about IT let me know.

It has good majors about IT:

www.ciutesting.com/free/
30  Ethical Hacking Discussions and Related Certifications / Network Pen Testing / Re: Online Pentest Lab on: December 13, 2012, 12:03:46 AM
eLearnSecurity has also a "FREE, community based project" which "host and share vulnerable web application code for educational and research purposes", see here and here.


+1 man great website i'll go there
Pages: 1 [2] 3 4 ... 24
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.