Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)JA
Posts
0
Comments
38
Joined
7 mo. ago

  • Usually the issue with app dependent products, is that it rely on a fucking cloud connection. That imply that if the cloud service goes down or the company collapse, your their product become unusable. Yet all corps continue to do it as it is super handy to track their pigeon users. Data can then be sold or used to plot growth curves that gives their CEO an erection.

    Also it probably requires you to have a google or apple account.

  • Its wose mentionning that this comic name is inspired by "Still this film". A 2 parts documentary from 2006/2007 about our freedom restriction implied by copyright laws and intelectual property non-sense. From TBP team, before TBP AFK. Very interresting to see. Sadly 20 years after, nothing has changed...

    Of course it's free to "steal", magnets are hidden in this messy website: https://stealthisfilm.org/Part1/ https://stealthisfilm.org/Part2/

  • Agreed.

    Also gtfobins is a great resource in addition to shellcheck to try to make secure scripts.

    For instance I felt upon a script like this recently:

     
        
    #!/bin/bash
    # ... some stuff ...
    tar -caf archive.tar.bz2 "$@"
    
    
      

    Quotes are OK, shellcheck is happy, but, according to gtfobins, you can abuse tar, so running the script like this: ./test.sh /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh ends up spawning an interactive shell...

    So you can add up binaries insanity on top of bash's mess.