Convert Hex Oct Dec to Chr 1 minutes | 100 words hex to chr: hex = input("hex-> ") hex_list = hex.split() ans = "" for h in hex_list: ans += chr(int(h, 2)) print(ans) example: hex-> …
Build Kali Docker on M1 Mac 2 minutes | 297 words Background: I personally use M1 Macbook. It’s pretty tricky to install VMs on it. So why don’t we just use docker? Install and run Kali …
How to Access PC at Home 1 minutes | 114 words Background Story Why I want to access my PC at home? It’s too heavy to carry around. It’s Intel based while my laptop is a M1 mac. It can …
Web Requests 4 minutes | 699 words HTTP Fundamentals HTTP(HyperText Transfer Protocol) is an application-level protocol used to access the World Wide Web resources. HTTP …
HTB-Responder 5 minutes | 963 words This box is about “File Inclusion” and “NTLM”. A File Inclusion vulnerability on a webpage being served on a windows machine can be …
HTB-Crocodile 3 minutes | 536 words This box is about “FTP”. Scan ┌──(kali㉿kali)-[~/htb] └─$ nmap -sC -sV 10.129.89.19 Starting Nmap 7.92 ( https://nmap.org ) at 2022-05-31 …
HTB-Sequel 4 minutes | 656 words This box is about “MariaDB” and “weak password”. Scan ┌──(kali㉿kali)-[~/htb] └─$ nmap -sC -sV 10.129.217.175 Starting Nmap 7.92 ( …
HTB-Appointment 1 minutes | 62 words This box is about “sql injection”. ┌──(kali㉿kali)-[~/htb] └─$ nmap -sC -sV 10.129.103.48 Starting Nmap 7.92 ( https://nmap.org ) at …
HTB-Redeemer 2 minutes | 274 words This box is about “redis”. Redis is an open source, in-memory data structure store, used as a database, cache, and message broker. In-memory …
SSH Login Without Password 1 minutes | 56 words Add remote host to ssh config file $ nano ~/.ssh/config Host remotehost Hostname Port HostKeyAlias remotehost User Create public and …
ISS Overhead Notifier 2 minutes | 311 words Objectives: Use API to create an ISS tracker. Libraries: requests, smtplib, datetime Code: ISS Overhead Notifier What is API? “Application …
Automated Birthday Wisher 3 minutes | 435 words Objectives: Send email using python code. Libraries: smtplib, datetime, pandas Code: Automated Birthday Wisher How email works? For example, …
HTB-Dancing 3 minutes | 474 words This box is about “SMB”. SMB provides shared access to files, printers, and serial ports between endpoints on a network. App Layer: SMB …
HTB-Fawn 2 minutes | 255 words This box is about “FTP”. FTP is a file transfer service. Scan ┌──(kali㉿kali)-[~/htb/fawn] └─$ nmap -sC -sV 10.129.234.156 Starting Nmap 7.92 …
HTB-Meow 2 minutes | 243 words This box is about “configuration mistakes”. When there’s a login box, try: admin administrator root Scan ┌──(kali㉿kali)-[~/htb/meow] └─$ …
Wireshark 101 3 minutes | 590 words Wireshark is tool used for creating and analyzing PCAPs(network packet capture files). Wireshark uses OSI layers to break down packets. 7 …
How to Use Struct 2 minutes | 267 words The struct module includes functions for converting between strings of bytes and native Python data types such as numbers and strings. It is …
Socket Programming - Simple Client & Server 3 minutes | 431 words Sockets and the socket API are used to send messages across a network. Let’s focus on building simple echo client and server using TCP …
How to Build a Hugo Blog 3 minutes | 439 words This tutorial is for mac users. Here we have three easy steps: Install it, Build locally, and Put it on Github. STEP 0 - Installation …