• 1 Post
  • 50 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle
  • Only the theme really.

    In hacknet, when you try to hack a target you’ll see it has SSH and FTP services running. You run fake programs like SSHcrack.exe and FTPbounce.exe to exploit those services and the you’re in.

    In hackmud, when you try to hack a target you’ll see it has an “ez_35” lock and a “c001” lock. The ez_35 lock requires an unlock word, something like “open”, “unlock”, “release” and a digit between 0 and 9. The c001 lock requires a color like “red” “purple” “lime”. You need to enter the right inputs within the time limit to hack the target. You can do it manually, but most targets have too many locks with too many options to manually guess all of them in time. You’ll need to write your own real life script in JavaScript that can detect locks and automatically guess every option for those locks. If you’ve ever done programming challenges then you shouldn’t have too much difficulty writing these scripts. If you’re new to programming it’s not the easiest tutorial. The game provides very little direct help.


  • hackmud $19.99 $14.99 (25% off)

    If you’re into scripting or hacking you should check this game out. It’s an interesting twist on the Multi-User Dungeon genre. The game presents mostly as a command-line interface where your goal is to seek out targets to pwn for money/points. NPC targets will have vulnerabilities you need to find and exploit in order to expose a hackable part. Once found you engage hackermode where you’ll have a timelimit to break the target’s security (mostly through bruteforce cracking). The game allows you to write short scripts in JavaScript to automate searching for vulnerabilities and cracking security.

    Being Multi-User, there are other users online doing what you’re doing and you’re free to chat with them and exchange scripts. You’re also free to write malicious scripts that will steal money/points from others who don’t check scripts before running them!

    The part I found cool was that the game mirrors IRL hacking much closer than other hacking games. You’ll often need to submit incorrect data to NPC targets to get an error message that will contain hints about where to go next. Ex. A webpage has “News” and “About Us” sections. You can request a section that doesn’t exist to get an error message that shows all acceptable sections: “News”, “About Us”, or “Employees”. You’ve found a hidden section! Using scripts to send a bunch of mal-formed data at a target and then analyzing which ones generate an exploitable error is part of real-life security testing.









  • ImplyingImplications@lemmy.catoScience Memes@mander.xyzHero
    link
    fedilink
    English
    arrow-up
    71
    arrow-down
    1
    ·
    1 month ago

    Yup, this is every job. Your skills at performing a task are only a small part of success. The bigger part is being able to make friends with the right people.

    Edison and Tesla come to mind. Edison wasn’t the best when it came to electrical engineering but he was good at talking. Tesla was brilliant and is the father of modern electrical engineering but his best friend was a pigeon. During their lifetimes, Edison was much more successful than Tesla was.




  • ImplyingImplications@lemmy.catoScience Memes@mander.xyzBeans
    link
    fedilink
    English
    arrow-up
    204
    ·
    2 months ago

    All plants require different levels nutrients to grow. If the same plant is grown repeatedly in the same soil then the soil will run out of the nutrients that plant needs and growing that plant becomes difficult. By rotating through plants with different nutrient requirements, the soil can maintain a sustainable balance of nutrients.

    We now use the scientific method to argue ideas, but in the past ideas could just be laughed at if people thought they sounded dumb. People laughed at ideas like the sun being the center of the solar system and doctors needing to wash their hands before surgery. Refusal to accept these ideas held humanity back from technological advancement.




  • ImplyingImplications@lemmy.catoScience Memes@mander.xyzteachings
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    3 months ago

    Here’s another example:

    A) -3 × (-3 + 3) = ?

    You can solve this by figuring out the brackets first. -3 × 0 = 0

    You can also solve this using the distributive property of multiplication, rewriting the equation as

    A) -3 × (-3 + 3) = 0
    (-3 × -3) + (-3 × 3) = 0
    (-3 × -3) - 9 = 0
    (-3 × -3) = 9

    If (-3 × -3) didn’t equal 9 then you’d get different answers to equation A depending on what method you used to solve it.