Messages - Gothi[c] [ switch to compact view ]

Pages: prev1 ... 141 142 143 144 145 [146] 147 148 149 150 151 ... 160next
726
General Software Discussion / Re: ReactOS
« on: June 20, 2006, 12:16 AM »
Yea, I agree... they'll never be able to catch up with Microsoft.. though they've had an opportunity with this lag between XP and Vista.

While I doubt it'll ever be something that's useful to the majority, I do find it an interesting project and I'm sure that they've had a good time and a lot has been learned about Windows internals that wasn't previously known. Therefore, I totally support their effort.. no matter how futile it may be ;).

Deffinitly! Me too. I always think alternative operating systems are very interesting. :)

727
Living Room / Re: Broken Windows Theory
« on: June 20, 2006, 12:01 AM »
Well, the other day on slashdot there was an article entitled: "Gates' Replacement says Microsoft Must Simplify"
linking to this: http://www.theaustralian.news.com.au/story/0,20867,19509645-36375,00.html

I couldn't agree more. Overly complex projects litterally suck the life out of developers. Modularity could be a solution I think.

So we'll see where that goes. There could be some interesting changes ahead. But first we have to survive Vista. :shiver:

728
General Software Discussion / Re: ReactOS
« on: June 19, 2006, 11:50 PM »
The problem with ReactOS/wine/... is that they will always run sooo far behind. Every time Microsoft releases a new API they are going to have to implement it, without reverse engineering the Microsoft code. And they haven't even completed the API's from a decade ago. Good luck :P

729
Post New Requests Here / Re: IDEA: LAN Email monitoring
« on: June 19, 2006, 03:31 AM »
Note that you can also use ethereal with cain, if ettercap looks too difficult. The cain interface is a bit easyer to work with. You can use cain for arp-poisening, and then capture all data in ethereal or any other sniffer.

730
Post New Requests Here / Re: IDEA: LAN Email monitoring
« on: June 19, 2006, 03:28 AM »
by the way, here's the source code for an ettercap filter that will log all email sent over the network to a file, and display a message in the window every time it captures email data. (remember that it needs to be compiled with etterfilter first.)

if (ip.proto == TCP) {
  if (tcp.src == 110 || tcp.src == 25) {
      msg("Captured some email data!");
      log(DATA.data, "C:\\email.log");
  }
}

You can replace the C:\email.log with any file you want to log to, but remember to use double backslashes(\\) because backslash is an escape character in C.



Pages: prev1 ... 141 142 143 144 145 [146] 147 148 149 150 151 ... 160next
Go to full version