Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - dynobird

Pages: [1] 2
1
General Programming / Re: Anyone want to work on a Java project together?
« on: October 21, 2005, 10:32:29 pm »
Well, no one else would like to try out this project?!
Come on join up!

2
General Programming / Re: Anyone want to work on a Java project together?
« on: October 19, 2005, 03:59:44 pm »
Ok, so far it's me and Joe. Anyone else?!
By the way Joe, would you like to get started now?

3
General Programming / Re: Anyone want to work on a Java project together?
« on: October 18, 2005, 03:56:26 pm »
Ok, lets do it!
I'm in, anyone else?

Guys, no offense, but I think this project is doomed to fail.
If you're saying that because you think we will have problems in organizing it...
well we could [democratically] elect a leader who is knowledgeable and good at OOP design.
He could assign us individually (or in pairs, if we have a lot of people) to creating certain components of the program.
This is just an idea, I'm not trying to take the lead, and I don't even want the lead (because I'm probably nowhere near the most knowledgeable here). Which isn't to say that I'm not capable of working on this project as a member; I've become well-read on Java and OOP =p

4
General Programming / Re: Anyone want to work on a Java project together?
« on: October 16, 2005, 05:49:50 pm »
dMSN is a Java client capable of connection to ICQ, AIM, and MSN

No we're not talking about clients alone. We're talking about creating both the client and the server.
So, Instant Messenging program, Java, who wants in?
It would be a nice case of team development, something that is very important in many programming jobs.

5
General Programming / Anyone want to work on a Java project together?
« on: October 16, 2005, 03:40:40 pm »
I was thinking an Instant Messenging Program or an Email program.

6
Botdev / Re: Packet Buffer question
« on: October 07, 2005, 09:13:43 pm »
Ahhhhh =)
Symantec killed one of the WPE .dll's that makes it run so ... I've crossed WPE off my list
On the bright side, Ethereal passes through my antivirus scans just fine =) Except for one problem...
I have to install WinPCap, in order for Ethereal to capture packets, but I have no admin privileges, so I can't install ANY_THING.

So can someone be nice and email me the wpcap.dll file for Ethereal =)? It's the file that Ethereal says I need in order to capture packets.
And, if any of you know, is this the only file outside of the Ethereal download that you need for Ethereal to work?
Thanks in advance

EDIT
My email is dijame@gmail.com


EDIT-2
Nvm, found it off google, sorry for stupid post.

7
Botdev / Re: Packet Buffer question
« on: October 05, 2005, 03:31:06 pm »
Oh, erm, stupid mistake by me ;\
It's fixed now.
Thanks for sticking with me Tuberload.

I have another question, sort of unrelated, but for the sake of thread conservation I'll post it here:
Can anyone point me to a free, reliable packet logger? By reliable I mean efficient as well as no viruses, trojans, backdoors, etc...
Someone in the past pointed me to a good packet logger but when I googled it people said it had a trojan, so I want to get some advice on which to get before downloading one.

8
Botdev / Re: Packet Buffer question
« on: October 04, 2005, 11:20:44 pm »
I tried passing it in hex, but it didn't work. Perhaps I need to cast it into an int? Like insertDword((int)0x13) ...
Sorry that I ask this question without trying out for myself but I don't have access to compiling right now =\ (or for a day or two)
Ever hear of cyber patrol?

9
Botdev / Re: Packet Buffer question
« on: October 04, 2005, 10:24:11 pm »
Sorry, forgot to mention that it was java, that's why there are no pointers.
As for the int that you pass to the function, if I was to send the Dword 0x 00 00 00 13
Then... would I send to the function 19 as the base 10 int? If that's true then I'll make a hex-decimal converter but...
I want to make sure that this is the case.

10
Botdev / Packet Buffer question
« on: October 04, 2005, 07:42:11 pm »
Here's a method in the packet buffer I'm using:
Code: [Select]
public void InsertDword(int dWordheader){
        addByte((byte)((dWordheader & 0x000000FF) >> 0));
        addByte((byte)((dWordheader & 0x0000FF00) >> 8));
        addByte((byte)((dWordheader & 0x00FF0000) >> 16));
        addByte((byte)((dWordheader & 0xFF000000) >> 24));
}

I've never seen this "notation" before, what do the & and >> operators mean?
And as for the int, do I send it an int in base 10? Or do I send it the actual "header" or w/e, like
for the byte 0x13 would I send it as 13 for hex or 19 for base 10?

11
General Programming / Re: Oscar Protocol Question
« on: October 03, 2005, 08:36:56 pm »
Sorry, I think I'm just going to do an MD5 login. But, to keep this thread from being a useless waste of memory...

Oscar Protocol, MD5 Login
Likes/Dislikes?

12
General Programming / Oscar Protocol Question
« on: October 03, 2005, 08:28:38 pm »
I'm making an aim bot in java and i have a question about oscar protocol relating to the login. It requires you to roast your password, and I get the concept of this, but I have no idea how to do it. Probably because when I read the explanation explained in the documentation (and on every other site I've googled, which just copies some documentation that aol released) it's in GREEK!. Like, I don't understand this:

Code: [Select]
"Roasting is performed by first xoring each byte in the password with the equivalent modulo byte in the roasting array ( 0xF3, 0x26, 0x81, 0xC4, 0x39, 0x86, 0xDB, 0x92, 0x71, 0xA3, 0xB9, 0xE6, 0x53, 0x7A, 0x95, 0x7C )"
xoring rings a bell, from something I've read, but it doesn't make sense to me in this context. What does the above quote mean? It's taken out of context from here.
 

13
General Programming / Re: [C/C++] Joe vs Ergot: Code wars!
« on: October 01, 2005, 06:30:45 pm »
Here's my solution in Java :P (sorry, don't have a good c++ compiler atm, and can't install w/o dad being home.. I have no privileges... )
It's sorta long but it has good explanations.
And it doesn't let anyone flip my program out =p
Code: [Select]
/*
 * Main.java
 * Created on October 1, 2005, 6:17 PM
 * @author Andy
 */

/*
 * Binary -> Base10 Converter
 */

package binconv;

public class Main {
   
    static char[] binary;
    static String binaryStr;
   
    public static boolean isBinary() {
        for (int i = 0; i < binary.length; i++) {
            if (binary[i] != '1' && binary[i] != '0')
                return false;
        }
        return true;
    }
   
    public static void main(String[] args) {
        final int AGAIN = 1;
        final int END = 2;
        int decision;
        EasyReader in = new EasyReader(); // EasyReader and EasyWriter == best IO classes in Java!!
        System.out.println("INSTRUCTIONS:" +
                "Write a number in binary and it will be converted to base ten." +
                "Don't try to flip out my program I prevented you from writing 0 > n > 1");
       
        do { // repeat binary converter while user wants to
            do { // if user gives non-binary number, repeat
                System.out.println("Binary number: ");
                binaryStr = in.readLine();
                binary = binaryStr.toCharArray();
            }
            while(!isBinary());

            int digits = binary.length;
            int accum = 0;
            int add = 1; // the value of 2^n that i will add

            for (int i = 0; i < digits; i++)
                if (i > 0)
                    add = add * 2;
            for (int j = 0; j < digits; j++) {
                if (binary[j] == '1')
                    accum += add;
                add = add / 2;
            }
         
            System.out.println("Binary: " + binaryStr + " = Base 10: " + accum);
            do { // if user doesn't give a valid answer, repeat
                System.out.println("Again? 1. Yes 2. No");
                decision = in.readInt();
            }
            while (decision != AGAIN && decision != END);
        }
        while (decision == AGAIN);
    }
}

14
General Discussion / Re: uber newb question
« on: October 01, 2005, 12:15:19 pm »
ahh i got it thx

15
General Discussion / uber newb question
« on: October 01, 2005, 11:59:33 am »
I want to email a folder to a friend. But attachments (at least on gmail) can only take the form of a file type. So I guess the logical conclusion would be to "contract (or whatever you call it) the files", send them as that one "contraction (.rar, .zip, or w/e)," so then he can extract it and I won't have to send the files individually (there are many). But how do I do this? And is there an easier way?

Pages: [1] 2