Slashdot Mirror


User: OttoM

OttoM's activity in the archive.

Stories
0
Comments
78
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 78

  1. Re:Installboot bug on OpenBSD 4.0 Pre-orders are Available · · Score: 1

    That only applies to old systems. Newer BIOSes do not have this strict limitation. Acutally reading the text tells you that.

  2. Re:ripoff on OpenBSD 4.0 Pre-orders are Available · · Score: 2, Informative

    European prices INCLUDE 21% VAT.

  3. Re:So petulant and arrogant. on Kernel Trap Interview with Theo de Raadt · · Score: 3, Insightful

    The problem is not the other open source projects. It's the commercial Linux and Unix vendors (and other as well) that use all the benefits of OpenSSH, but do nothing in return. To name a few: IBM, HP, Cisco.

  4. Re:$10,000 doesn't go very far on Mozilla Foundation Donates $10K to OpenSSH · · Score: 1
    Most OpenSSH/OpenBSD developers work for free. They are volunteers, they love what they do.

    Which doesn't mean they do not produce good code. Probably the quality is higher than what you'll see produced by most profesional developers.

    Read some of the background articles to learn what the money will be spend on.

  5. Re:Just Wondering on Heap Protection Mechanism · · Score: 1
    Pages that are returned to the system are cleared before handed out to another program.

    Still, it is a good think to clear confidential data when done with it. Because if the page gets reused within the same program, the data may leak.

    Swapping isn't a problem on OpenBSD since the swap space is encrypted by default.

  6. Re:He deserves it ! on Theo de Raadt gets 2004 FSF Award · · Score: 2, Insightful

    Not true. A lot of upstream providers (sendmail, bind and more) have taken diffs submitted by OpenBSD developers. Apache is an exception.

  7. Re:What do you want? on Which BSD for an Experienced Linux User? · · Score: 2, Informative
    However, from a practical perspective my guess is that there are few attacks on Apache/named/dhcp/ftpd/OpenSSH and whatnot that work on Linux that fail to work on OpenBSD, because OpenBSD modified Apache in a way the Apache project wouldn't accept patches back.

    This clearly shows how uninformed you are. OpenBSD ships its own version of these tools in the base install, and the differences between the stock version and the OpenBSD version are sometimes big. named and dhcp use privilege separation for example, httpd is chrooted by default, etc. etc.

    Your assumption that userland code isn't audited is also false. A large effort has gone into userland, and since auditing is a continuous process, it will go on.

    Some examples: sometimes new classses of attacks are found, and a complete scan of the tree is done for the specific error. Some time ago the whole base tree has been cleaned wrt to strcpy, strcat and sprintf. No more unbounded string operations remain in the tree.

  8. Re:Two things that I don't get on New BSD licensed CVS replacement for OpenBSD · · Score: 2, Informative
    1st: OpenBSD is a developers' system. Having a source code control system is vital to that. Check the OpenBSD goals for details.

    2st: It is a question of priorities. The OpenBSD projecty does not want such an important tool (and a networking tool as well) for their development to be of questionable quality. Other posts provide more info why we think GNU CVS is a security hazard.

  9. Re:BSD License on OpenBSD Project Announces OpenBGPD · · Score: 4, Informative
    In "open source" world you would probably have had N fixes from X different people, each claiming that theirs is the best. If you want to see a real open source mess, check out Zaurus - just as an example there is a large number of libSDL ports, each different, each having different problems, each compatible with different games, none fully usable.

    This is not how OpenBSD works. There's only one place for official errata, and these patches are published only after carefull scrutiny.

    While you may be right for some Open Source projects, the OpenBSD team applies sound engineering techniques.

  10. Re:Upgrade Pain on OpenBSD 3.6 Live · · Score: 1
    How stable is the SMP stuff?

    Quite a generic question, so let's that split up:

    • Is it stable enough to be part of the release? Yes, and according to OpenBSD standards that actually means something.
    • Will there be bugs? Probably.
    • Will these bugs affect you? That's for you to try and decide.
  11. Re:OpenBSD 3.6 released on OpenBSD 3.6 Live · · Score: 3, Informative

    MD5 is still safe for the purpose of file digests. The methods published do not allow the attacker to find a collision for a given digest value. Check this FAQ for some details.

  12. Re:OpenBSD 3.6 released on OpenBSD 3.6 Live · · Score: 1

    Most common reason for a reject is a dup. We'll see....

  13. Re:multi-platform on NetBSD Goodies: 2.0 RC1 Tagged, New pkgsrc Branch · · Score: 3, Interesting
    OpenBSD 3.6 has SMP support for i386 and amd64. sparc is not supported. sparc and other platforms might get support in upcoming releases.

    Check the OpenBSD 3.6 page for other new things in the 3.6 release.

  14. Re: Install takes only 5-10 Minutes even on FTP on OpenBSD Review at DistroWatch · · Score: 1
    Instead of installing bash, I would recommend to use ksh from the base install. For most work, including command line editing, it behaves pretty much like bash.

    Also there are reasons not to change the root shell, see the OpenBSD FAQ.

  15. Re:The BSDs require GPLed code to develop on BSD For Linux Users · · Score: 1
    For details on which GPL'ed tools are part of OpenBSD, for example, see the gnu portion of their cvsweb [gnu.org]. It includes GCC, the binutils (assember, linker and all commands dealing with object files, like nm, ar, etc), the debugger, and many other standard Unix tools such as diff, bc, grep, etc.

    Funny you mention diff, bc, grep. These tools have been replaced b, BSD licensed, versions in OpenBSD-current. More to come.

    BTW, the link to OpenBSD's CVSweb is wrong. But if you check the repository, you'll see a lot of empty dirs in the gnu subtree.

  16. Re:There is no article... on 100 Years of Macintosh · · Score: 3, Funny
    That is easy to fix:

    According to this article.....

  17. epoch == start of time, not duration on 100 Years of Macintosh · · Score: 5, Informative

    The article confuses epoch and ticks. The epoch is a fixed point in time. Ticks is a number of seconds (or other time unit) since the epoch.

  18. Fupids is not in OpenBSD's tree on OpenBSD Gains "Fuzzy" User Profiling IDS · · Score: 3, Informative
    The summary suggests fupids is imported into the OpenBSD tree.

    This is not true. Fupids is work by a single person, who is not an OpenBSD developer. At this point in time, nothing suggests it will be put into the OpenBSD tree.

  19. Very easy non-recursive solution on 108 Ways To Do The Towers of Hanoi · · Score: 4, Insightful
    This solution I always liked best:

    Imagine the disk are in a cricle. Repeat:

    1. move the smallest disk one step clockwise
    2. do the only legal move not involving the smallest disk
    Much easier to remember and perform by hand than the various iterative C programs posted. The proof that it works is left as an exercise to the reader...
  20. Re:Thoughts on security on OpenBSD 3.4 Released · · Score: 4, Informative

    The kernel has its own set of library functions, aptly named "the kernel library". This kernel library included strcpy() and strcat(), but not aymore.

  21. Dutch ISP xs4all offers it at no extra charge on IPv6 Friendly ISPs? · · Score: 2, Informative
    Checkout this announcement,

    I'm using it here for some months.

  22. Summary?? on New Antitrust Complaint Filed Against Microsoft · · Score: 4, Funny
    My goodness, the summary is already 19 pages.

    Luckily the summary of the summary (the key facts) is only 2 pages.

  23. Re:I'm not sure.. on Cashless Society · · Score: 1
    You cannot copy the bits because you cannot access the memory. The memory is protected by the smartcard. Only if you can authenticate yourself properly to the smartcard's serial interface you can (indirectly) access the smartcard's memory.

    The smartcard's memory bus is not exposed to the outside world. Smartcards are relatively tamper proorf, which means that you'll have big problems accessing the memory without destroying the card, if possible at all.

  24. Re:I'm not sure.. on Cashless Society · · Score: 2, Interesting
    If they are smart, the card only carries a serial number and the actual amount is stored elsewhere (like credit cards)

    You are wrong. Like the system used here in the Netherlands it is an off-line system. The card itself stores the bit string representing the money. On-line transcations are too expensive for this type of transaction, which is typically used here for parking fees.

    Hacking it may be possible, but is quite difficult. Reasonbly strong crypto is used in these card. The cards carry a smart card that is capable of doing arithmetic functions that are needed for doing the cryptographical computations.

    The protocol used for "charging" the cards does work on-line, and needs special terminals that are mostly located at banks.

  25. Re:CNN & AP Beat Slashdot on MS SQL Server Worm Wreaking Havoc · · Score: 1
    From the CNN article:

    Oliver Friedrichs, a senior manager with Symantec, said the "SQL" worm was taking advantage of a vulnerability detected six months ago in Microsoft sequel servers, used mainly by companies to store information.

    Nice to see they know how to pronounce SQL. OTOH, I still think they do not know what they are talking about.