Home
mcap0 ./Notes
Cancel

Prog2 - Template of Binary Search Tree in C++

#include <iostream> using namespace std; //implementare classe BST template //classe nodo template <class T> class Node{ public: T key; Node<T>* left; Node<T>*...

Bootable USB da terminale in 4 steps

Ti sei mai chiesto come masterizzare un Sistema Operativo nella tua USB senza usare tool automatici come Rufus? In questa guida andrò ad installare un sistema operativo a AMD64bit su una chiavetta...

Scansione delle Reti per CTFs

Spesso ci si trova in situazioni dove la chiave per completare una challenge CTF sta nel sapere dove cercare. Affinare il proprio arsenale nella scansione di rete spesso è la soluzione a problemi c...

Python Sockets and Nmap Fundamentals

Sockets Fundamentals Server import socket # object socket IPv4 Connection-oriented (TCP) socketserver = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # object host &am...

Come usare GPT-3 con OpenAI su Logseq

Cos’è Logseq Logseq è un’ottima applicazione per prendere note, simile ad Obsidian e Remnote. Utilizza il formato Markdown per lo storing. Cos’è GPT-3 GPT-3 è un AI di scrittura. Lo chiederò a lu...

Metasploit Framework Cheatsheet

Basic Commands msfconsole to start db_status to check the status of the database Help Menu search to find modules use to use modules info connect to verify possible netcat connection save t...

GoBuster

GoBuster Description: Gobuster is a directory and file brute forcing tool for HTTP services. It can be used to enumerate resources on a web server, such as files and directories. -u #The target UR...

Sharing Automatico di Markdown Files su GitHub Pages

Perché ti serve un sistema di notes sharing? E’ uso comune tra gli informatici avere una quantita di note e appunti sparsi tra molteplici applicazioni e interessi vari. Queste note molto spesso ve...