Slashdot Mirror


User: MBAFK

MBAFK's activity in the archive.

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

Comments · 67

  1. Re:PHP security all relies on the coder on Hardened PHP · · Score: 1

    Once the attacker had gained access via user nobody, they ran one of several trivial Linux local root exploits to get root. Don't kid yourself, Linux ain't all that secure.

    There was heated debate on a LUG mailing list a few weeks ago where a couple of people were essentially taking the piss out of some users who were diligently updating their kernels to fix local root vulnerabilities. They argued that if you are the only user on the machine how is anyone going to break in?

    You can see the obvious point that I'm making - security should be layered.

  2. Re:Sounds like a job for wget on Artists Against 419 Takes On Scammers · · Score: 4, Informative
    Something like this probably - I made it up on the fly - haven't tested it (yes I know it's cack and that you could probably do it in 2 lines of perl :)
    #!/bin/sh

    wget --mirror -np http://artists-against-419.mugus.com/
    cat artists-against-419.mugus.com/*html* | tr ">" "\n" > all.txt
    rm -rf artists-against-419.mugus.com/
    cat all.txt | grep "http://" | egrep "\.jpg|\.gif|\.png" | sed -e "s/^.*http/http/g" | tr "'" " "| tr "\"" " " | cut -f 1 -d " " | grep -v "mugus.com/" | sort | uniq > urls

    while [ true ]; do
    for i in `cat urls`; do
    wget -O tmp $i
    rm tmp
    sleep 1
    done
    done
  3. Re:Wait, that was illegal? on Instant Live Concert Recordings · · Score: 2, Interesting

    IIRC Metallica were cool with people trading amateur recordings of their live shows.

  4. Re:dictionary attack? on Cisco's LEAP Authentication Cracked · · Score: 4, Insightful

    "good luck dictionary attacking a good password"

    The time to brute force the password is a combination of many factors not just the strength (length and composition) of the password. The amount of resources avaible to compute the hashes and the complexity of the algorithm used to create the hashes have a large effect on how long it will take to compute a match.

    In this age it is becoming possible to precompute the hashes and then look them up, in that case the "strength" of the password becomes less important.

  5. Cool pictures and some movies of these thingies on Tiny Surveillance Aircraft Fly in Tucson · · Score: 4, Interesting

    Vision-Guided Flight for MAVs

    Looks like these little blighters can be tricky to fly, they are using a computer to track the horizon to help keep them level.

  6. Re:Before everyone knocks the poster on Gigabit Networking for the Home? · · Score: 1

    "Even copying 500mb files can take intolerably long when you want it done 4 minutes ago."

    I get about 11.5mb a second on my home network (Fast Ethernet) so this transfer would take ~48 seconds.

  7. Re:Really hard to understand for someone on Probable Solution Found for ECC2-109 Challenge · · Score: 2, Interesting

    "Was this done _just_ because it could have been done?"

    Reading around it seems that the idea is to prove that the encryption method is good rather than just theoretically sound. Probably makes it easier to sell stuff based on ECC if you can show how hard it is to crack.

  8. Re:how things change on Sun's President Dreams of a Linux Future · · Score: 2, Interesting

    Some people still loves their Sun boxes, I think it reminds them of the good times :) The younger geeks I know are all wandering around with their iPods wishing they could afford to buy a nice G5 desktop machine.

    Like you say owning a Sun box does not seem to as 1337 as it was - how important is that though? I'm sure Sun didn't make too much money off of people buying their kit for home use but lots of geeks get a say in what gets bought at work - how much will it effect them if the next generation of geek doesn't think Sun is cool (tm)?

  9. 1/3 of the way there... on SpaceShipOne Completes Second Test Flight · · Score: 5, Informative

    They have to get to 328,000 feet, seems like they are looking pretty good.

  10. Re:Sounds fine to me on Downloaded Music Gets More Expensive · · Score: 5, Interesting
    The problem is how do you know how much 'filler' is on the album. Hearing songs at clubs and on the radio does not let know about the rest of the material. Currently I think there are 3 ways:
    1. Listen to a copy your friend has
    2. Skim through it at a record shop (if they will let you)
    3. Download it
    I personally don't have money to burn (and like to make up my own mind) but I do like to own CDs because they sound better on my equipment than MP3s do. I wish there was a way to not get duped into buying something which wasn't up to scratch without 'being shadey' or having to wait for someone else to make the leap of faith.
  11. Re:Real counting? on Diebold Fails Again in San Diego · · Score: 3, Funny

    You mean write a patch for the President? Aren't you already using Mr Bush 2.0 or something :)

  12. Open Source on Cisco Products Have Backdoors · · Score: 1, Flamebait

    Being able to read the code can stop this from happening.

  13. Mirror of the AVI on Xbox Emulator Plays Retail Game · · Score: 1
    Turok.zip
    du -h Turok.zip
    8.8M Turok.zip
  14. Re:Hmm? on Asteroid Impact Simulator Available · · Score: 2, Funny

    "A dead badger?"

    Who cares about the badger, what about the mushrooms and the SNNNAAAKKE!

  15. More viruses for Linux? on Linux in Canada · · Score: 5, Insightful

    Even if this is teh case I think the bigger problem will be when we have more Joe Blogs users who surf the internet as root. I see a lot of n00bs doing it and we always try and talk them round.

    Even with the distro installers creating a normal acount its still worryinglt common. Run as root and you are more likely to be pwned in a nasty way.

  16. Obvious other uses on A Black Box for People · · Score: 4, Insightful

    One of my friends works as a carer in an old peopels home, she reckons this thing could be really helpful (since they are massively understaffed).

  17. Sometimes it's ok on Train Your Own Replacement · · Score: 1

    At the end of me placement as part of my undergrad degree I was asked to train up my replacement. I didn't want to work there anymore and I knew they would end up replacing most of the work I had done for them if the new dude didn't catch on quickly.

    So I worked like a bitch in my last few weeks to get the new guy ready. Means that all my hard work was not flushed down the pan.