LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 11-10-2005, 06:30 AM   #1
itz2000
Member
 
Registered: Jul 2005
Distribution: Fedora fc4, fc7, Mandrake 10.1, mandriva06, suse 9.1, Slackware 10.2, 11.0, 12.0,1,2 (Current)]
Posts: 732

Rep: Reputation: 30
compilation?


just a check. AAAA

Last edited by itz2000; 02-21-2011 at 04:52 AM.
 
Old 11-10-2005, 06:37 AM   #2
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
you'd use gcc, and potentially port it to Linux if it wasn't explicitly developed for it. but i'm hardly going to explain how you compile something from a site like astalavista. LQ.org can in no way condone such activity.
 
Old 11-10-2005, 06:40 AM   #3
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Also the program seems a little optimistic to me : )
It just tries passwords from a wordlist file, it is not really a brute force attack
 
Old 11-10-2005, 06:42 AM   #4
itz2000
Member
 
Registered: Jul 2005
Distribution: Fedora fc4, fc7, Mandrake 10.1, mandriva06, suse 9.1, Slackware 10.2, 11.0, 12.0,1,2 (Current)]
Posts: 732

Original Poster
Rep: Reputation: 30
and again... this is history.

Last edited by itz2000; 02-21-2011 at 04:52 AM.
 
Old 11-10-2005, 08:29 AM   #5
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
there is no reason to run this against yourself. you know fully well wether you already have a dictionary based password or not.
 
Old 11-10-2005, 09:47 AM   #6
itz2000
Member
 
Registered: Jul 2005
Distribution: Fedora fc4, fc7, Mandrake 10.1, mandriva06, suse 9.1, Slackware 10.2, 11.0, 12.0,1,2 (Current)]
Posts: 732

Original Poster
Rep: Reputation: 30
#include <stdio.h>
#include <dos.h>
#include <conio.h>

Last edited by itz2000; 02-21-2011 at 04:53 AM.
 
Old 11-10-2005, 09:52 AM   #7
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
you can't. dos.h?? that's for DOS, not linux. you're really doing a school project without them even telling you how to compile your own code??
 
Old 11-10-2005, 10:12 AM   #8
itz2000
Member
 
Registered: Jul 2005
Distribution: Fedora fc4, fc7, Mandrake 10.1, mandriva06, suse 9.1, Slackware 10.2, 11.0, 12.0,1,2 (Current)]
Posts: 732

Original Poster
Rep: Reputation: 30
just a check.

Last edited by itz2000; 02-21-2011 at 04:53 AM.
 
Old 11-10-2005, 10:20 AM   #9
bigearsbilly
Senior Member
 
Registered: Mar 2004
Location: england
Distribution: Mint, Armbian, NetBSD, Puppy, Raspbian
Posts: 3,515

Rep: Reputation: 239Reputation: 239Reputation: 239
conio.h won't work either
 
Old 11-10-2005, 10:59 AM   #10
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
the same project that requires you to do a brute force ftp attact also requires direct parallel port writing?????
 
Old 11-10-2005, 11:11 AM   #11
llama_meme
Member
 
Registered: Nov 2001
Location: London, England
Distribution: Gentoo, FreeBSD
Posts: 590

Rep: Reputation: 30
Quote:
there is no reason to run this against yourself. you know fully well wether you already have a dictionary based password or not.
I'm skeptical of his intentions too, Acid, but to be fair you can't know whether you have a dictionary password except by running a program to check (unless you want to read through an enormous dictionary yourself).

Alex
 
Old 11-10-2005, 11:27 AM   #12
bigearsbilly
Senior Member
 
Registered: Mar 2004
Location: england
Distribution: Mint, Armbian, NetBSD, Puppy, Raspbian
Posts: 3,515

Rep: Reputation: 239Reputation: 239Reputation: 239
he's probably got john in his distro anyway.
 
Old 11-10-2005, 11:44 AM   #13
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
Quote:
Originally posted by llama_meme
I'm skeptical of his intentions too, Acid, but to be fair you can't know whether you have a dictionary password except by running a program to check (unless you want to read through an enormous dictionary yourself).

Alex
or..... grep it.
 
Old 11-10-2005, 11:48 AM   #14
itz2000
Member
 
Registered: Jul 2005
Distribution: Fedora fc4, fc7, Mandrake 10.1, mandriva06, suse 9.1, Slackware 10.2, 11.0, 12.0,1,2 (Current)]
Posts: 732

Original Poster
Rep: Reputation: 30
I'm hosted @ rapidstores.com

Last edited by itz2000; 02-21-2011 at 04:53 AM.
 
Old 11-10-2005, 01:07 PM   #15
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
what happened to your parallel port stuff?

again, you do not need to run a brute force attack against yourself. there is no logic in doing this whatsoever. you already know your password. you already know if it is a good password or not. the point of a brute force attack is to prey on people who set dumb passwords. surely that's not you?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Compilation arunachalam Linux - General 3 11-10-2005 05:11 PM
C Compilation eshwar_ind Programming 6 05-10-2004 01:38 AM
Qt compilation nitin_kataria Programming 1 10-13-2003 04:33 PM
Compilation HoRrIdPrObLeMs Programming 2 03-12-2002 02:52 PM
Compilation mikeshn Programming 2 03-03-2002 10:08 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 05:23 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration