World of Haiku cover
World of Haiku screenshot
Genre: -

World of Haiku

v. 1.3.34

[UPDATE] Menu buttons.
[UPDATE] Lock hydra command for file and dirb quests.

[FIX] Black screen during license and game data loading.
[FIX] Stretching of loading background.
[FIX] Eliminated lag when leaderboard is created.
[FIX] Hide leaderboard after logout.
[FIX] Leaderboard will not load if the profile tab isn’t selected in the Settings app.
[FIX] The Settings app will not open when in a dojo.

Enhanced World of Haiku: Unveiling an Array of Exciting Updates!



We've listened to your valuable feedback and made significant enhancements, addressing both in-game issues and expanding the depths of the storyline.

Refined Storytelling:


We've revisited missions 1A, 4A, and 5B, meticulously fine-tuning the mission text and hints. The updates ensure that the instructions provided are now clearer and more concise, allowing you to navigate the challenges with greater precision and confidence.

Revamped Apps:


Introducing the redesigned Nitro app! Discover a whole new level of convenience and flexibility with Nitro, now a permanent icon located at the bottom left of your screen. With three distinct modes - Minified, Focused, and Full-View - you can customize your Nitro experience according to your preference. Choose "Minified" to reduce Nitro to a small icon, "Focused" to display only the last received message, or "Full-View" to view the complete app with all conversations at once.

Notable Fixes:


We've resolved an issue that prevented you from re-titling a note if you deleted its entire content. Enjoy the freedom to update your note titles effortlessly.
Opening the same note no longer results in a repetitive animation or interferes with any game states. Seamlessly access your notes without any disruptions.
We've addressed known issues with Rascal notes, ensuring smooth and consistent functionality.


Streamlined Hint System:





Your gaming experience just got more immersive with the hint system now suppressed. Engage with the challenges in a more focused manner as the hint system takes a step back, allowing you to rely on your own problem-solving skills and intuition.

A full list of technical updates can be found here:



[ADD] New command: touch
[ADD] Environment variables, cleared by "session" (they get cleared when you connect to a device). Currently available by default only $COLUMNS, $PWD and $OLDPWD. We will expand these and their uses in the future.

[ADD] Brace expansion. These can be nested (require the pattern {,} to match, {} does not match). Ex: > touch file{,0,1,2,3,-copy.{txt,last}}



[ADD] arguments for ls:

  • l:
    long listing, shows extra data like permissions to read, write and execute, loyal to posix version of > ls -l
  • h | --human-readable:
    applies only when -l is present, shows file size in human-readable format (1K, 234M, 2G, etc.)
  • a | --all:
    show hidden files

[ADD] Made > ll an alias for > ls -l, which is commonly used and even implemented by default in some distros.
[ADD] posix style parsing of flags options for every command that needs them, like ls. This means > ls -l -h -a has the same meaning as > ls -lha, > ls -ahl or even > ll -a -h. It should work with any combination, order, or amount of provided flags.

Updates:


[UPDATE] ls will not show hidden files by default (files that start with a . like the .ssh folder).
[UPDATE] ls will now work with a single file. Useful to see its permissions along with -l option.
[UPDATE] Man page for ls.
[UPDATE] cd - reads the content of $OLDPWD to go back and forth
[UPDATE] ":" is a word separator (used by ctrl+delete, ctrl+backspace, ctrl+left/right)
[UPDATE] Soft refactored scp to reduce extra work, and added context aware autocomplete for it, based on ssh autocomplete.
[UPDATE] Terminal backend improvements.
[UPDATE] Tweaked and established the concept of file sizes for ls, since it is the third command that interacts with the notion of a file size (or disk usage), along with du and scp. [UPDATE] Changed file size calculation for Horseman virus files. They weigh 666 bytes until cracked.
[UPDATE] Zion is uncancellable.
[UPDATE] Appropriately renamed du to dust, du is now the alias.
[UPDATE] Dust now sorts the results recursively by file size, and lists the biggest ones below (files and then directories). [UPDATE] Dust problem when appending very large lines of text at the end, occurs when a very large file name or very nested directories are found.

Fixes:


[FIX] Error when running john on a binary file.
[FIX] Known issues with SSH.
[FIX] Fix autocomplete after downloading a file via the curl command

The Dirb Dojo Release

Prepare to embark on an exciting new quest guided by Dekkar as you investigate a suspicious CryptoCoin launch by Corwin Banking.

In this new level, you'll be introduced to K.O.N.A, the Dealer's AI, and learn how to use the powerful "Directory Buster" tool known as Dirb. With Dirb, you can scan web content for existing and hidden objects by launching a dictionary-based attack on a web server and analyzing the response. But be warned, it's not just about finding what's there, you'll also need to be on the lookout for what's not there!

To enhance your search even further, we've added two new parameters to Dirb: "-v" to show pages that don't exist, and "-x" and "-X" to amplify your search with extensions. Are you ready to take your cybersecurity skills to the next level? Join us now in this exciting new adventure!

Game Update v.1.2.860

┌──(dev㉿haiku)-[~]
└─$ cowsay Graze upon these delicious Saturday World of Haiku updates

New Content Available in the Store


Dekkar will guide you through Dirb Quest & introduce you to the Dealer’s AI known as K.O.N.A. Dive head-first into the basics of using the fabled “Directory Buster” while investigating a shady CryptoCoin being launched by Corwin Banking.

  • New Quest
  • New Dojo
  • New Tool: Dirb (Directory Buster)
    Description
    DIRB is a Web Content Scanner. It looks for
    existing (and/or hidden) Web Objects. It works by
    launching a dictionary-based attack against a web
    server and analyzing the response.

    Synopsis:
    dirb [] [options]

    Parameters:
    -v
    Show Also Not Existent Pages.

    -x
    Amplify search with the extensions on this file.

    -X
    Amplify search with this extensions.
  • New Avatar: Dekkar
    Dekkar is the code name of grid runner Mina Kit, who has been active since 2046 . She can acquire almost any information or data required, but for a very high price. Dekkar's data sources include many compromised systems and human/AI intermediaries to which only she has access. She has occasionally acted in the interest of the Cybermancers since they are some of her best customers. Dekkar is also an important grid runner with influence over Dealer's Guild and overall Grid society. She usually operates at Purity Level 4.

Termainal



  • [ADD] Autocomplete for ssh, based on ~/.ssh/known_hosts file, as happens in the real world
  • [FIX] ssh with the new user feedback yield instruction, set up autocomplete for it, based on ~/.ssh/known_hosts file under home system..
  • [UPDATE] Reworked scp command.

    Scp usage examples


    `> scp file ubuntu@3.86.220.7:`
    copies local file "file" to root of "3.86.220.7"

    `> scp file ubuntu@3.86.220.7:newfile`
    copies local file "file,” renamed to "newfile" to root of "3.86.220.7"
    (if newfile exists in the remote and it's a folder, just copy "file" inside of it)

    `> scp -r folder ubuntu@3.86.220.7:newfolder`
    copies local folder "folder,” renamed to "newfolder" to root of "3.86.220.7"
    (if newfolder exists in the remote and it's a folder, just copy "folder" inside of it)

    `> scp ubuntu@3.86.220.7:file .`
    copies remote file from the remote into the current directory "."

Misc



  • [UPDATE] Auto-fill for an email field in the feedback popup.
  • [UPDATE] H.Y.N.T.A Support popups are far less aggressive and are shown once per mission.
  • [UPDATE] In the feedback popup, the type of feedback drop-down has a default value.
  • [FIX] Small typo in the feedback popup.
  • [UPDATE] In network explore mode, prevent CTRL+SPACE triggering Nitro.
  • [UPDATE] In network explore mode, prevent feedback hints.
  • [UPDATE] More performant scanline effect in transition scenes.

Mar. 27 Update

Keybinds have been added for various actions, including zooming out of the network and force focusing the command prompt.

The game window now allows you to open Nitro with Ctrl+Space and take focus out of the terminal with Escape.

The Terminal/Command Prompt now supports copying and pasting with Ctrl+C/Ctrl+Insert and Ctrl+V/Shift+Insert, respectively. You can also clear the terminal with Ctrl+L and delete text with various keyboard shortcuts.

Default keybinds have been updated to include jumping to the start/end of the command prompt text and jumping to the start of the next/previous word with Ctrl+Arrow Right/Left.

Terminal binds are now repeatable by holding down the key, with actions including navigating the terminal history and scrolling the text.

The File Browser has been updated to include the ability to rename files and folders.

The disk usage utility, du, has been added to the game and can be used to measure disk usage of a single directory or file.

These updates should make playing Haiku more enjoyable and efficient.

March Badge Update

These badges are designed to challenge you and reward your cybersecurity prowess. Here are some of the new badges that have been added:

- Nmap Dojo Level: Advanced, Master, and Speedy
- Hydra Dojo Level: Advanced, Master, and Speedy
- John Dojo Level: Advanced, Master, and Speedy

In addition to these badges, we have also introduced new Haiku Global Leaderboard badges. If you can earn a spot on the leaderboard, some of the badges you can earn look like this:

- 1st Place in Haiku Global Leaderboard
- 2nd Place in Haiku Global Leaderboard
- 3rd Place in Haiku Global Leaderboard
- Place Top 5 on Haiku Global Leaderboard
- Place Top 10 on Haiku Global Leaderboard
- Place Top 20 on Haiku Global Leaderboard
- Place Top 50 on Haiku Global Leaderboard

We hope these new additions to the game will provide a fresh challenge for our players and help you improve your cybersecurity skills. So, what are you waiting for? Get playing and start earning those badges and climbing up the Haiku Global Leaderboard!

Additional updates:

- Canvas Credential badges are awarded depending on your rank in the leaderboard.
- Canvas Credential badges for capturing flags in dojos or finishing them quickly. Only for Nmap, Hydra, and John.
- Note: Leaderboards and Canvas Credential badges are only for users with Haiku Central accounts.

v.1.2.768

Patch Notes


Missions



  • [ADD] When idle, H.Y.N.T.A will send a message asking if there is an issue. Clicking the “SURE” button will open the Feedback/Support popup. This popup is always accessible in the settings app.
  • [UPDATE] Mission 1A and 2A are updated to explain that arguments are case sensitive, CTRL + SPACE opens Nitro when closed, and tab complete.
  • [FIX] Downloading wordlists to the home system sometimes fails.

Apps



  • [UPDATE] Feedback/Support Feedback redesign.

Massive Spring Sale! 50% off of WoH and 75% off in-game purchases!

Only 5 days left in our Spring Sale... don't miss out on our biggest deal yet!!

Tired of your dull and unfulfilling job? Getting a high-paying and exciting career in cybersecurity has never been easier or cheaper; get your exclusive deal on World of Haiku today and SAVE 50% on WoH (from $24.99 to $12.49!)

There's no better time to start your cybersecurity journey than now with our recently updated World of Haiku! Updates include the recent introduction of steganography, a new concept that will challenge you to hide and extract files in images, and a new avatar selection app allowing you to choose all new Cybermancer Avatars!

We also are running a massive 75% off sale on our latest expansion release, allowing you to embark on a brand new quest that expands on the V1 story and train your skills in a new dojo with a new Cybermancer avatar called Omen Parks, now for just $1.99!

Upgrade your life by leveling up in our game today!


Mar. 14 2023 Update

Here are some of the notable changes and improvements you can expect:

- Fixed an issue where the 'folder-exists/new-folder-name' command was not working correctly.
- Added a permission check before renaming files or folders to prevent errors.
- Improved handling of moving or deleting folders when you are in a subfolder of it.
- Resolved an issue where the 'cp' command was not working as expected.
- Fixed the 'cannot copy' error that occurred in some edge cases.
- Improved the 'delete directory' function by adding a correct '-r' option.
- Improved autocomplete callers, making them smarter and capable of chaining themselves.
- Leaderboard now closes automatically after an internet error popup.
- Improved the Leaderboard window size for better visibility.
- Added a minimum showing time for loading the caption.
- Enhanced the background colors for the Leaderboard field of the current player.
- When sharing your profile, the default country is set to 'Earth' if no country is set.
- Added a Legal Terms popup.
- Fixed layout gaps in the settings and sharing screen.
- Corrected the 'Dealer' faction name on the settings page.
- Fixed scaling issues with the login screen.
- Improved the file system architecture and strengthened all file manipulation operations.

We hope that these updates and fixes will enhance your gaming experience and make playing World of Haiku even more enjoyable. Thank you for your continued support, and happy gaming!

March 4th Transmission

Hello Grid Runners!

The team has made some improvements to the game's terminal functionality by introducing two new commands: "file" and "unzip". These commands will make it easier for players to manage their files and extract the necessary data. But the real highlight of this update is the introduction of steganography, a new concept that will challenge players to hide and extract files in images.

Players will embark on a new quest that expands on the V1 story and we have included a new dojo where players can practice these new skills and perfect their techniques.

We want to remind our players that the dojos are replayable and that the flags and network properties are randomized, ensuring that each playthrough is unique and challenging. We hope this adds to the replayability of the game and provides a fresh challenge for those looking to hone their skills.

Haiku is also pleased to announce the introduction of the World of Haiku Store, which will allow players to purchase virtual items within the game. This month's items include the Dojo+ (Dojo and Quest) and a new avatar called Omen Parks. We have also added a new avatar selection app, giving players more options to customize their in-game appearance.

Finally, we have added a new volume 2 map to the game, as well as a new avatar called Omen Parks. We have also implemented serialized player preferences in an editable ini file, which will allow players to save their game preferences across multiple sessions. Additionally as mentioned above, we have added a new file type, the zip file, and integrated Badgr as Canvas Credentials.

We hope you enjoy these updates and encourage you to continue to provide feedback to help us improve the game.