Slashdot Mirror


User: mstefanro

mstefanro's activity in the archive.

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

Comments · 100

  1. Re:Better question on Where Do the Presidential Candidates Stand On Encryption? (windowsitpro.com) · · Score: 1

    As has been stated a million times before, the patch can be written such that it only works on the particular phone it was made for.

  2. Pretty sure there's a built-in Python module to manage inmates' sentences.

  3. Re:And folks were concerned about Hauwei on Juniper's Backdoor Password Disclosed, Likely Added In Late 2013 (rapid7.com) · · Score: 2

    Their code servers don't have to be accessible from the outside. Juniper has many employees, and hacking a single one of them is probably sufficient to sneak in a backdoor.

  4. Re:Juniper were listed in Snowden docs on Juniper's Backdoor Password Disclosed, Likely Added In Late 2013 (rapid7.com) · · Score: 2

    > 2 years to spot a backdoor?
    I assume they have a fairly large codebase. Without the tip from Snowden, maybe they would never have discovered it at all?
    It sounds pretty weird that they've discovered two completely separate and unrelated backdoors at the same time.

  5. Re:Ask the engineers on 'Do Not Track' Bill Aims To Let Consumers Reject Online Tracking (consumerist.com) · · Score: 1

    Third-party cookies can be disabled in firefox from the settings, it's just not done by default.

    Your browser contains enough uniquely identifying information that you can be separated from all other visitors without
    using cookies anyway. If websites are not allowed by law to track you, they probably won't. If you take away their third-party
    cookies, they'll just use something else (see panopticlick or evercookie).

  6. Re:Ask the engineers on 'Do Not Track' Bill Aims To Let Consumers Reject Online Tracking (consumerist.com) · · Score: 1

    There is no such thing as "track cookies", which is why I said engineers should be part of the debate.
    A unique identifier (session) stored in a cookie can be used to keep you logged in, to track you, or both. What they choose to do with
    the cookie is decided on the server-side and not visible to you.

    Unless you're suggesting disabling all cookies altogether, which would explain your posting as an anonymous coward.

  7. Ask the engineers on 'Do Not Track' Bill Aims To Let Consumers Reject Online Tracking (consumerist.com) · · Score: 4, Insightful

    Why not write these bills in collaboration with software engineers, who have a clue?

    We don't want more ridiculous things like the mandatory "by visiting this site you agree with our website using cookies" messages.

  8. Re:If he says its OK on Obama Administration To Offer Full Position On Encryption By End of Year · · Score: 1

    I call bullshit

  9. Re:Does it matter? on Obama Administration To Offer Full Position On Encryption By End of Year · · Score: 1

    Even "provably secure" algorithms (which doesn't mean what you think is does) can have weak implementations.

    Relying on closed-source (or open-source with non-repeatable builds) software for high cryptography needs is insufficient.

  10. Re:Suite B and dogfooding on Obama Administration To Offer Full Position On Encryption By End of Year · · Score: 1

    I assume OP uses it for TLS, SSH and VPN, like most of us do.

  11. Re:If he says its OK on Obama Administration To Offer Full Position On Encryption By End of Year · · Score: 1

    Even if they did, they could not use it for mass surveillance. Signing certs on-the-fly would be detected
    by most browsers on most relevant websites (through HSTS).

    Even for targeted attacks, they would have to have performed MITM forever (i.e. since the victim's OS was installed) to
    get away with it.

  12. Re:Not convinced on Meet Carla Shroder's New Favorite GUI-Textmode Hybrid Shell, Xiki · · Score: 3, Insightful

    I am skeptical to the idea tbh. For commonly used commands the effort of learning them is relatively small and the rewards are great (if I ever had to type "change the permissions such that" instead of "chmod" I would just give up and use GUI) .

  13. Not convinced on Meet Carla Shroder's New Favorite GUI-Textmode Hybrid Shell, Xiki · · Score: 5, Interesting

    I believe the tradeoff of CLI is between working more efficiently (by typing commands and not having to use your mouse too often to interrupt your flow)
    and a steeper learning curve (learn commands and their params, config file locations and their syntax etc.).

    This shell seems to provide a lot of features that most of the people are not interested in, or already use specialized tools for those tasks. It is unclear to me why would one prefer to use such a shell to execute SQL or modify the DOM of a webpage rather than spawn a full-featured querying tool, respectively Firebug.

    Their syntax coloring looks pretty poor, and they seem to ask you to "double-click" whenever you want to do anything. I am currently using terminator + fish, which I can highly recommend. It makes me way more productive, has very interesting completion features and uses a really large number of colors to make things more easily distinguishable.

    The fact that you can move things around is quite cool, but I don't see any significant advantages, although I've only watched the first ~6 mins of video. Can someone competent perhaps voice his opinion on what does this bring?

  14. Re:This idea is really BS on NYU Group Says Its Scheme Makes Cracking Individual Passwords Impossible · · Score: 1

    My bad, it's n^s instead of s^n. I don't know where the factorial is coming from in your analysis. Or how it magically disappeared
    at the end of your comment.

  15. Re:This idea is really BS on NYU Group Says Its Scheme Makes Cracking Individual Passwords Impossible · · Score: 1

    You have a space of `m' accounts, `n' common passwords and `s' threshold.
    The first step is to find a subset of `s' people who all have easy passwords. There is no better
    way than to pick all such subsets, so that gives binom(m,s).
    For such a subset, you have to try all assignments of passwords. You have s
    people, each of which can have one of n passwords. That's s^n tries.
    The total time is binom(m,s) * s^n * C, where C is the time it takes to test if your guess is correct.

  16. Re:This idea is really BS on NYU Group Says Its Scheme Makes Cracking Individual Passwords Impossible · · Score: 1

    The latter is not feasible, because you don't need to guess passwords, you need to guess user-password pairs.

  17. Re:That's a nice technical solution you have there on NYU Group Says Its Scheme Makes Cracking Individual Passwords Impossible · · Score: 1

    Yes, you could. This doesn't have any better security guarantees than just doing that.

    His whole argument however is that the salt needs to be reentered in the memory manually
    after a system crash, whereas with his mechanism the memory gets the needed data automatically
    after a few users login.

  18. Re:That's a nice technical solution you have there on NYU Group Says Its Scheme Makes Cracking Individual Passwords Impossible · · Score: 1

    Yes, it does make it more secure. The security of the hash files relies on a secret stored in memory. To
    get that secret, you either need to know the password of K users (user i has password p_i) or you need
    access to memory. The point is that access to disk is not sufficient (regardless of how weak the passwords
    of the users are).

  19. Re:This idea is really BS on NYU Group Says Its Scheme Makes Cracking Individual Passwords Impossible · · Score: 1

    Plus, for most websites, you can just register 10 accounts, giving you the 10 known passwords.

    In any case, the treat model is that you can access all the data in the db, but not all the data in memory (as
    is the case with SQL injection and most other attacks). The
    memory is used to cache the first n-1 passwords. The n-th guy needs to wait only after the system crashes
    and the cache data is lost.

    But in such a treat model, the problem can be solved in a way simpler fashion: just store in memory a key
    with which all the hashes are encrypted. Write the key down on a piece of paper. If the machine crashes,
    just reload the key from the paper into the server's ram.

    And this is the only threat model you can work on anyway: if you assume the attacker gets root,
    then there's obviously not much security to preserve. This is why authentication should be interactive (
    EKE protocols).

  20. Re:Why don't they just use Polymorphic data? on MIT Researchers Create Platform To Build Secure Web Apps That Never Leak Data · · Score: 1

    Can you detail how can this support any of the features of a relational database? Filtering rows, joining tables, aggregation, ordering.

  21. Clarifications on MIT Researchers Create Platform To Build Secure Web Apps That Never Leak Data · · Score: 1

    To clarify all misconceptions in other posts, having been to a talk of hers a few days ago, here's the encryption types involved:
        * RND (salted symmetric key encryption) - used for columns where no sql manipulation is needed
        * DET (unsalted symmetric key encryption) - used for columns that need to be looked up by equality
        * Partially homomorphic encryption - used for aggregation such as SUM()
        * Order preserving encryption - useful for inequality where clauses, indexes, aggregations such as MIN()
        * Searchable encryption - allows something like ILIKE on text columns

    OPE is the most dangerous, but is rarely needed for the most sensitive fields. They've run CryptDB on top of phpBB and
    some other thngs with acceptable overhead. Let me know if you have other questions.

  22. Re:ya know... on Getting Evolution In Science Textbooks For Texas Schools · · Score: 1

    Well, other sources do not typically threaten to send you to a special place to burn forever.

  23. Soon in the news on First Lab Demonstration That the Ability To Evolve Can Itself Evolve · · Score: 1

    The ability to evolve of the ability to evolve may actually evolve.

  24. Re:HTTPS on Slashdot on GCHQ Created Spoofed LinkedIn and Slashdot Sites To Serve Malware · · Score: 1

    I wasn't aware TLS-SRP patched browsers exist. In any case, these mechanisms will likely be adopted only if they can be embedded in HTML. Few designers are going to sacrifice their fancy login form for that ugly-ass browser window that asks for credentials. But allowing proper authentication in HTML forms would imply that you get all or nothing. Either all HTML forms that contain an input type="password" must use TLS-SRP for sending the credentials, or this cannot be adopted. Otherwise a MITM would simply alter the form to switch from secure authentication to plaintext authentication.

  25. Re:Strict Transport Security on GCHQ Created Spoofed LinkedIn and Slashdot Sites To Serve Malware · · Score: 1

    To the best of my knowledge , HSTS is merely the Strict-Transport-Security response header. The lists are just something
    extra. The "not very useful" comes from the fact that you are still unprotected the first time you access the website. If the
    attacker is present the first time you visit an website, he can remove that header via MITM. Otherwise you should be fine.