Slashdot Mirror


User: rat_love_cat

rat_love_cat's activity in the archive.

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

Comments · 11

  1. A BSA story from the 1990s on Ask Slashdot: Dealing With the Business Software Alliance? · · Score: 1

    I know a company that had this happen back in the 1990s. It went like this: the BSA asked for a meeting and said company directors needed to be present in case they needed to issue legal documents. Before the meeting, everyone runs around like headless chicken auditing systems, finding license documents, wiping unlicensed software Etc. On the day of the meeting, directors are crapping themselves, but the BSA are all smiles. They say something like "I'm sure you've got some unlicensed software, everyone does, it's normal. But what we want to do is to help people become compliant; not prosecute. So we'd recommend you sign up to this plan for £xxxx per year...". The directors bite their hand off, and BSA go away with some cash in their pocket. It's only later that everyone realises they've been shaken down.

  2. Re:Are we just now getting this dupe on After 3 Years, Freenet 0.7 Released · · Score: 1

    Freenet 0.7 supports both Opennet and Darknet. By contrast, 0.5 only supports opennet. I think some of the confusion about 0.7 being darknet only may be because early beta version only supported darknet, but Opennet support has been in 0.7 for about a year now, and is certainly in the release version. Freenet 0.5 apparently has some known issues, which won't ever be fixed. The Freenet 0.5 community is pretty small now. With freenet you need a large community to give good anonymity. Once the group of users is sufficiently small all sorts of anonymity attacks become possible.

  3. Smashing radios? on XM Satellite Radio Backlash · · Score: 3, Funny

    Smashing radios as a protest? Isn't that like slashing the seats at a drive-in movie?

  4. Why do ISPs allow direct SMTP outbound? on Major Anti-Spam Lawsuit To Be Filed In VA · · Score: 1

    Botnets are the biggest source of spam, so why do ISPs still allow direct outbound SMTP from home connections by default? It wouldn't be too difficult to force all outbound SMTP through the ISP's mailserver by default, but allow direct SMTP connections for those who ask for them. If the mail goes through the ISP's mailserver, it can easily be tagged and the ISP can monitor for suspicious activity.

    Is there some reason why this can't be done, or is it just that there's noone to enforce it on the ISPs? If it's a question of enforcement, wouldn't an agreement by some of the big ISPs not to peer with ISPs that are spam sources help matters along?

    I'm just waiting for that "your idea won't work because" template now...

  5. Sometimes IPv6 can be a security problem on IPv6 Readiness Report · · Score: 1
    As far as network security is concerned, we've been running IPv4 for ages. Many network admins think only in IPv4, and it's the primary protocol that's handled by Firewalls and access lists.

    Now along comes this new network protocol, which auto-configures link-level addresses, and is enabled by default on many modern OSes, and you have the potential for a protocol that people end up running on their network without even knowing about it.

    To add to this potential problem, the fact that the TCP and UDP transports can run over both v4 and v6 means that network services can (and will) end up running on both. The end result is a potential security problem.

    I can remember the time when most networks ran multi-protocol (and IPv4 was generally one of the smaller volume protocols in the mix), but many people can't, and very few people think multi-protocol when it comes to security.

  6. If you need more storage... on Secure Data Storage... On Your Fingernails · · Score: 1

    Make each finger a drive in a RAID-5 array. Still not enough for you? add in your toes as well.

  7. How about the under-hyped issues? on Gartner Debunks Over-Hyped Security Threats · · Score: 2, Insightful
    We're often blamed for over-hyping things, and sometimes with justification. However, there is under-hype as well: there are issues out there which are much less secure than people think.

    One example is VPNs. Seen by most as improving security, and uncrackable due to strong encryption, but poor config and vendor flaws often make them the easiest way in.

    Some of the things I've seen, even with large financials, are downright scary. This link gives some examples of the problems: http://www.nta-monitor.com/news/vpn-flaws/VPN-Flaw s-Whitepaper.pdf

  8. Re:The woes of encrypted partitions on BayTSP Provides Automatic DMCA Notices · · Score: 1
    In most juristications, you can be FORCED to hand out the key to your encrypted partitions, but only if the judge sees a reasonable reason suspicition.

    Doesn't the rule that you can't be forced to incriminate yourself prevent this? I think that this is part of UK law, and maybe other jurisdictions too.

  9. Re:super compression on Backing Up is Hard to Do? · · Score: 1

    I guess that's the extream end of lossy compression.

  10. Re:no drop, a merge with other 64 bit installs on Microsoft Drops Windows XP for Itanium · · Score: 1

    You're new here, aren't you?

  11. Re:Damn you 2s Complement! on Comair Done In by 16-Bit Counter · · Score: 2, Informative

    Having fixed point numbers default to unsigned is not a good idea because, at least with C's unsigned rules, it's easy to end up with a huge number if a negative number is ever generated. This has bitten me enough times in C that I avoid unsigned unless I'm damn sure that it can never go negative (and even then I check all subtractions real carefully).