Slashdot Mirror


User: athakur999

athakur999's activity in the archive.

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

Comments · 597

  1. Re:Damn Microsoft! on Mac OS X Intel Kernel Uses DRM · · Score: 1

    You don't have to imagine it, just load up any Slashdot comments page.

  2. Re:It's obviously an alien plot. on Help Solve the Mystery of the Pioneer Anomaly · · Score: 2, Funny

    The "???" part is already known.

    1. Deviate spacecrafts from their precisely-planned flightpaths
    2. Set up space advocacy group and beg for donations to help solve "mystery" introduced in step 1.
    3. Profit!

  3. Re:Fine, but... on Opera Embedding BitTorrent Client · · Score: 1

    It doesn't seem like a great idea to me. I leave my BitTorrent client running for hours to days each time I use it. My web browser, on the other hand, I close and reopen several times an hour. Hardly ideal behaviour for a BitTorrent swarm.

    I suppose Opera can get around this problem by keeping Opera loaded even when you close all the browser windows but this seems like it'd cause alot of headaches for their support team from users who don't understand what's going on. "I downloaded a file and closed my browser but the Internet is still slow!", etc.

  4. Re:keepass.sourceforge.net on Writing Down Passwords? · · Score: 1

    I just started using it a week or two ago and am converting all of my passwords to use it. The random password generator works well and it has an "auto type" feature where it all key in your username and password into the currently selected window, which works pretty well.

    The big downside is if you forget your passphrase, you're SOL...

  5. Re:Huh?! on How to Build Your Own Linux Distribution · · Score: 4, Insightful

    I love Gentoo myself but I don't know how much it really teaches you about how Linux works. Most of the nitty gritty parts about installing packages is hidden by the Portage system. The only difference between typing in "emerge kde" vs. "apt-get install kde" is that it takes alot longer and you see a ton of compilation messages. The directory layout is chosen for you, the dependencies are installed automatically for you, etc. How much do you really learn watching hundreds of pages of GCC messages whizzing by?

  6. Re:Retribution on Vigilante Hackers use Old West Tactics for Justice · · Score: 1

    What'd be ironic is if the script happened to turn out MY exact information. Doh!

    Anyway, the chance of a script turning out the right credit number AND expiration date AND CVV number AND billing address is probably close enough to 0 for the few hundred fake entries I produce that I'm not too worried about.

  7. Re:Retribution on Vigilante Hackers use Old West Tactics for Justice · · Score: 4, Informative

    There's not much to it. Here was the last one I used. In this case it was bank site asking for an ATM card number, PIN number, etc. Adapting it to other sites wouldn't be hard. The way I'm generating numbers would probably get rejected if you tried to use it for credit card numbers but this particular phishing script didn't seem to do any verification so I didn't bother...

    for ($i = 0; $i 100; $i++) {

    $ssn = sprintf("%03d%02d%04d", rand(100, 999), rand(0, 99), rand(0, 9999));
    $cardnumber = sprintf("%04d%04d%04d%04d", rand(0, 9999), rand(0, 9999), rand(0, 9999), rand(0, 9999));
    if (rand(0,1)) $cardnumber .= rand(0,9);

    $expmonth = sprintf("%02d", rand(1, 12));
    $expyear = rand(2005, 2011);
    $cardpin = sprintf("%04d", rand(0, 9999));

    for($len=10,$r1='';strlen($r1)$len;$r1.=chr(!mt_ ra nd(0,2)?
    mt_rand(48,57):(!mt_rand(0,1)?mt_rand(65 ,90):mt_ra nd
    (97,122))));

    for($len=10,$r2='';strlen($r2)$len;$r2.=chr(!mt_ ra nd(0,2)?
    mt_rand(48,57):(!mt_rand(0,1)?mt_rand(65 ,90):mt_ra nd
    (97,122))));

    $email = "{$r1}@{$r2}.com";

    echo "$ssn\n$cardnumber\n$expmonth\n$expyear\n$cardpin\ n$email\n";

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, "ssn={$ssn}&cardnumber={$cardnumber}&expmonth={$ex pmonth}&expyear={$expyear}&cardpin=
    {$cardpin}&em ail={$email}&statement=&btnContinue0. x=64&btnContinue0.y=9");
    curl_setopt($ch, CURLOPT_URL, 'http://www.ewwf.ro/KeyBank/enroll.php');
    curl_se topt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.3) Gecko/20040929 Firefox/0.10
    ');
    curl_setopt($ch, CURLOPT_REFERER, 'http://www.marumitu.com/KeyBank/enroll_auth.html' );
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_HEADER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 300);
    $result=curl_exec($ch);
    curl_close($ch);

    }

  8. Retribution on Vigilante Hackers use Old West Tactics for Justice · · Score: 4, Insightful

    I have a little PHP script that I use whenever I get a phishing email. The script generates fake credit card numbers, expiration dates, etc. and repeatedly hits the phishing site's form dumping in random info.

    Any halfway intelligent phisher would record the IP address of each submission and just dump all of mine when he saw there were bogus, but it makes me feel good that I at least wasted some of his time ;)

  9. Re:Why? on Xbox 360 Gets Backwards Compatible, Final Fantasy · · Score: 1

    Not everyone who buys an Xbox360 owns an original Xbox, just not everyone who bought a PS2 owned a PS1. Backwards compatability is a huge selling point for these types of buyers because instead of a handful of launch games, they also can play the huge selection of games from the older console, many of which can be had from the bargain bin for $10.

  10. Re:Pinky toe on Next Step in Human Evolution · · Score: 5, Funny

    Yes.

    Scenario 1 - Guy with pinky toe:
    Hot woman: Hey there, wanna come over?
    Guy: Hell yeah, let me walk ov... GOD DAMN IT I JUST STUBBED MY PINKY TOE... sweet mother of God this hurts. Make it go away!
    Hot woman: Wuss.

    Scenario 2 - Guy w/o pinky toe:
    Hot woman: Hey there, wanna come over?
    Guy: Hell yeah, let me walk over there.
    Hot woman: WTF happened to your pinky toe?
    Guy: I got rid of it. For you. It means more of my blood can now be used for a thicker, long lasting erection.
    Hot woman: Nice.

  11. Re:Call me crazy, but... on Yahoo Introduces Competitor for iTunes · · Score: 1

    Not all players support the "subscription" model required for the $5 a month thing. That list is pretty sparse at the moment with the lowest cost of entry for a portable being around $200.

    All the cheap WMA capable players can play the permanently downloaded songs you purchase from Yahoo's store but not the unlimited download service.

  12. Re:List of Expiring Provisions: on Congress to Revisit the Patriot Act · · Score: 1

    Section 226 -- ???

    Section 227 -- PROFIT!

  13. Re:Safar! on 2 Firefox Security Flaws Lead to Exploit Potential · · Score: 1

    Not sure about wget but Lynx has had a couple of buffer overflow related vulnerabilities over the years. I don't see anything recent though but it's still important to remember that just because something is non-graphical does not automatically mean it's safe.

  14. Re:RFID chips in IDs: on U.S. National Identity Cards All But Law · · Score: 2, Funny

    I've heard it's sufficient to simply wear a tin foil hat when you take your driver's license photo.

    The guy that said this was wearing a black suit, so he must have been telling the truth.

  15. Re:Go Daddy vs Register.com on Go Daddy Usurps Network Solutions · · Score: 1

    GoDaddy only provides DNS service if you host with them or you want to use their "parked domain" page.

    There are plenty of free DNS providers out there though. I used to use everydns.net and had a good experience with them. It's free although donations are welcome.

  16. iRate on Indy: Auto-Discover Free Music to Download · · Score: 3, Informative

    This sounds pretty similar to iRate which is a front end for downloading freely available songs from artist web pages and letting you rate them which in turns find more songs to download.

    It seemed like a good idea but the interface was annoying enough that I gave up using it when I tried it out several months ago. Hopefully this project can take the idea and run with it and couple it with an interface that's more flexible.

  17. Re:Verizon's FIOS Even Better on Verizon's DSL Gets Naked · · Score: 1

    It is available in several suburbs of Dallas now. Most the farther out ones though where there is alot of newer development.

  18. 2037... on Asteroid 2004 MN4 May Hit Earth After All · · Score: 4, Funny

    I'll be 59 in 2037 which is when I can start withdrawing from some of my retirement accounts.

    I guess I should go ahead and blow my money on a car or something instead since how big my 401k is isn't gonna matter when the monkeys take over the Earth.

  19. Re:They have cracked strong hashes, huh? on Finnish Firm Claims Fake P2P Hash Technology · · Score: 1

    How exactly does BitTorrent's hashing work? Is there a hash for each individual piece and then a hash for each completed file as a whole?

    If so, that'd be much harder to fake. If you have a file with 10 pieces, you'd have to a file which would match the hash of all 10 pieces AND match the entire file's hash.

  20. Re:Why not go to DST permanently? on Daylight Savings Change Proposed · · Score: 2, Funny

    Grew up in a car. Have never seen day light. Need saving.

  21. Re:Why am I the last to hear? on EZTree Shuts Down · · Score: 1

    Why do all these live show trading communities choose the shn format over flac? Flac has a more permissive license, has plugins for more media players, has some hardware player support now, and makes slightly smaller files.

    The tradeoff is that its encoding times seem to be a little longer but that doesn't seem like it'd be a big deal.

    Anyone care to shed some light on this?

  22. Re:Newer Laptops on User Review of N-Charge II Laptop Battery · · Score: 2, Informative

    I got the impression he used one battery on his trip there and the other battery on the trip back. I'd think he'd have charged his laptop battery back up whenever he got to whatever hotel/etc. he was staying at.

    Anyway, he says his flight is 10 hours each way. If the first battery lasted 7 hours and the second lasted 5.5 hours, it's clear he couldn't have tested them on the same flight.

  23. Re:Lag... on PSP Launch Coverage · · Score: 3, Funny

    Slap a "bullet time" label on it and call it a feature instead!

  24. Re:OS X on Adobe Acrobat Toolbar Worse than Malware? · · Score: 1

    Didn't Apple license the PDF format from Adobe for integration into Mac OSX? If so, it's likely you paid an "Adobe tax" with your purchase price. Of course, that's still much cheaper than a real Acrobat license.

    Almost any Linux distro will give you PDF printing functionality as well thanks to the 'ps2pdf' tool that comes with Ghostscript.

  25. Re:Wow, a .6% lead on UK Officially The Most Hacked Country · · Score: 1

    This is the country that popularized such activities as "dogging" and "toothing". I'd say the UK public is definately engaged in risky computing practices :)