Cybernotes
  • 🚩 CTF
  • šŸ„·šŸ¼ Cyber Security
  • šŸ¤– Data Science
  • ā™¾ļø Mathematics
  • 🧠 Psychology
  • 🧬 Neuroscience
  • šŸ“¢ About
Sign in Subscribe
Web Development - Todo List App
Web Development

Web Development - Todo List App

This is a classic to-do-list Web app. It is useful for writing out tasks that you want to get done throughout the day and assigning them a category. Let's get to see the source code behind this. First is the HTML. <html lang="en">
06 Jul 2023 6 min read
Web Development - Colorfun
Web Development

Web Development - Colorfun

This is a project created for gaining hands-on practice with HTML and CSS mostly. It is like a game where each user can interact with different boxes and each will respond differently. So, let's see the base HTML. <!DOCTYPE html> <html lang="en"
05 Jul 2023 6 min read
Web Development - Random Quote Generator
Web Development

Web Development - Random Quote Generator

This is a project that generates random quotes from wise people plus a game on checking the knowledge regardings these quotes. The technologies used were HTML, CSS and JS. So, without further ado let's dive right in. First, let's see the main HTML source code. <
04 Jul 2023 8 min read
PicoCTF - Special
picoCTF

PicoCTF - Special

Start your instance to see connection details. Open up the terminal and connect using the following command. Enter the provided password. ssh -p 63194 [email protected] It seems that Linux commands are turned unusable. Special$ ls Is sh: 1: Is: not found Special$ whoami Whom sh: 1: Whom:
01 Jul 2023 1 min read
PicoCTF - flag_shop
picoCTF

PicoCTF - flag_shop

There's a flag shop selling stuff, can you buy a flag? Source. Connect with nc jupiter.challenges.picoctf.org 44566. Open up the terminal and type the following command, in order to connect to the server. nc jupiter.challenges.picoctf.org 44566 #include <stdio.h> #include
01 Jul 2023 2 min read
PicoCTF - mus1c
picoCTF

PicoCTF - mus1c

We are being presented with the following text. I wrote you a song. Put it in the picoCTF{} flag format. First, download the file and read it through. There is a programming language called Rockstar that can be found in the following link. rockstar : home The song can be found
30 Jun 2023 2 min read
PicoCTF - plumbing
picoCTF

PicoCTF - plumbing

Sometimes you need to handle process data outside of a file. Can you find a way to keep the output from this program and search for the flag? Connect to jupiter.challenges.picoctf.org 14291. Right! Open up the terminal and type the following. nc jupiter.challenges.picoctf.org 14291
27 Jun 2023 1 min read
PicoCTF - Based
picoCTF

PicoCTF - Based

To get truly 1337, you must understand different data encodings, such as hexadecimal or binary. Can you get the flag from this program to prove you are on the way to becoming 1337? Connect with nc jupiter.challenges.picoctf.org 15130. nc jupiter.challenges.picoctf.org 15130 We are being
27 Jun 2023 1 min read
PicoCTF - ASCII Numbers
picoCTF Featured

PicoCTF - ASCII Numbers

Convert the following string of ASCII numbers into a readable string: 0x70 0x69 0x63 0x6f 0x43 0x54 0x46 0x7b 0x34 0x35 0x63 0x31 0x31 0x5f 0x6e 0x30 0x5f 0x71 0x75 0x33 0x35 0x37 0x31 0x30 0x6e 0x35 0x5f 0x31 0x6c 0x6c 0x5f 0x74 0x33 0x31 0x31 0x5f 0x79 0x33 0x5f
26 Jun 2023 1 min read
PicoCTF - useless
picoCTF

PicoCTF - useless

There's an interesting script in the user's home directory. The work computer is running SSH. We've been given a script that performs some basic calculations, explores the script, and finds a flag. Open up the terminal and connect with SSH to the server. ssh
26 Jun 2023 1 min read
PicoCTF - repetitions
picoCTF

PicoCTF - repetitions

Can you make sense of this file? First, download the required file (enc_flag). The file is formatted in the base64 format. We need to decode it multiple times in order to get the flag. Here is the Python code that does just that. If you want to learn more
26 Jun 2023 1 min read
Online Account Storage
Python

Online Account Storage

This is a Python GUI program, used for creating and storing online account information in a separate .json file. Let’s see first the UI setup using Tkinter. šŸ’”UI Setup The setup is pretty simple and straightforward. At first, we create a canvas with specific dimensions that hold an image.
26 Jun 2023 5 min read
Memory Game
Python

Memory Game

This is a Python program aimed at recalling and improving the overall memory of the individual using a series of random words and numbers. At first, the main program imports all the necessary libraries and files combined with an ASCII art logo. Then according to the user input, it calls
26 Jun 2023 5 min read
Binary Conversion
Python

Binary Conversion

I wanted to create a Python program that takes binary input and converts them into a different format. So, here we go. The main.py is pretty straightforward, it just imports and calls the functions, presented by a series of options, regarding the intended action. šŸ’”main.py import base64 import
26 Jun 2023 3 min read
Password Generator
Python

Password Generator

I started to learn Python, because I noticed it is used a lot by Cyber Security professionals, and was something that I wanted to be proficient at. So, I decided to create a small program generating a random password using Python. First, let’s see the main.py file and
26 Jun 2023 4 min read
Hack The Box - Synced
Hack The Box Featured

Hack The Box - Synced

šŸ’”Task 1 What is the default port for rsync? First, as usual, run the following command in the terminal to scan the target machine for open ports using Nmap. nmap -sV -p- IP_ADDRESS Starting Nmap 7.80 ( https://nmap.org ) at 2023-06-15 14:37 EEST Stats: 0:00:16
24 Jun 2023 2 min read
Hack The Box - Mongod
Hack The Box

Hack The Box - Mongod

šŸ’”ā€œIn this machine, we will explore the mongodb environment as well as the way of connecting to it and accessing information that lives inside it. It is a very easy machine, but remember you have to master the absolute basics first and build a solid foundation, before going further."
24 Jun 2023 2 min read
Hack The Box - Preignition
Hack The Box

Hack The Box - Preignition

šŸ’”Task 1 Directory Brute-forcing is a technique used to check a lot of paths on a web server to find hidden pages. Which is another name for this? (i) Local File Inclusion, (ii) dir busting, (iii) hash cracking. dir busting šŸ’”Task 2 What switch do we use for nmap’s
24 Jun 2023 2 min read
Hack The Box - Explosion
Hack The Box

Hack The Box - Explosion

šŸ’”Task 1 What does the 3-letter acronym RDP stand for? Remote Desktop Protocol šŸ’”Task 2 What is a 3-letter acronym that refers to interaction with the host through a command line interface? cli šŸ’”Task 3 What about graphical user interface interactions? gui šŸ’”Task 4 What is the name of an
24 Jun 2023 1 min read
Hack The Box - Redeemer
Hack The Box

Hack The Box - Redeemer

Howdy my fellow Cyber Enthusiasts! Welcome to another Starting Point Hack The Box offers. I am excited to embark on this journey with you. So, without further ado, let’s dive in! šŸ˜„ Need to embark on an exciting journey on Hack The Box? Sign up now using the following link.
24 Jun 2023 7 min read
Hack The Box - Dancing
Hack The Box

Hack The Box - Dancing

Howdy my fellow Cyber Enthusiasts! Welcome to another Starting Point Hack The Box offers. I am excited to embark on this journey with you. So, without further ado, let’s dive in! :) Need to embark on an exciting journey on Hack The Box? Sign up now using the following link.
24 Jun 2023 6 min read
Hack The Box - Fawn
Hack The Box

Hack The Box - Fawn

Howdy my fellow Cyber Enthusiasts! Welcome to the second Starting Point Hack The Box offers. I am excited to embark on this journey with you. So, without further ado, let’s dive in! :) Need to embark on an exciting journey on Hack The Box? Sign up now using the following
24 Jun 2023 7 min read
Hack The Box - Meow
Hack The Box

Hack The Box - Meow

Howdy my fellow Cyber Enthusiasts! Welcome to the first Starting Point Hack The Box offers. I am excited to embark on this journey with you. So, without further ado, let’s dive in! :) Need to embark on an exciting journey on Hack The Box? Sign up now using the following
24 Jun 2023 7 min read
PicoCTF - Permissions
picoCTF

PicoCTF - Permissions

First, click on the button ā€˜Launch Instance’. Then ssh to the remote machine using the presented command. Yours might be with different port or user credentials. ssh -p 50477 [email protected] Then navigate to the following folder using CLI. cd /challenge/ cat metadata.json That’s all!
24 Jun 2023
PicoCTF - Moneyware
picoCTF

PicoCTF - Moneyware

We need to find the malware name for a Bitcoin address. Bitcoin address is the following. 1Mz7153HMuxXTuR2R1t78mGSdzaAtNbBWX Just search for 1Mz7153HMuxXTuR2R1t78mGSdzaAtNbBWX malware and you will be able to find the flag. Here is a hint… picoCTF{P…a}
24 Jun 2023
← Newer Posts Page 2 of 4 Older Posts →
Cybernotes © 2026
Powered by Ghost
A digital lab where security meets strategy, data meets insight, and psychology meets code.
Dive into CTFs, Cyber Security, Data Science, and the Human Mind.