Author name: kostas

Hackerakademi Øvelsesoperation på Mac med Apple Silicon hardware

Der er ingen spoilers i denne vejledning. Den er udelukkende skrevet så du kan starte FE’s øvelsesoperation på en Mac med Apple Silicon hardware. Den officielle vejledning virker nemlig ikke til den type computer. Her er hvordan jeg fik det til at virke. Læs mere om øvelsen her: https://hackerakademi.dk/challenge Start VM på en Mac med […]

Hackerakademi Øvelsesoperation på Mac med Apple Silicon hardware Read More »

How SSH Nuke in Matrix Reloaded works

In the movie Matrix Reloaded, we see Trinity use SSH Nuke to hack a compromised server. This script exploits the SSH CRC-32 vulnerability, specifically known as CVE-2001-0144, which affected older versions of the OpenSSH software. Here’s an explanation of how this vulnerability worked: Overview of the Vulnerability The SSH CRC-32 vulnerability exploited a flaw in

How SSH Nuke in Matrix Reloaded works Read More »

How to call OpenAI’s ChatGPT API

Here is how you can call OpenAI’s ChatGPT API, given that you have an API key. Follow these instructions to get one. import openai openai.api_key = 'FILL IN YOUR OWN' openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=[ {"role": "system", "content": "You are a helpful assistant."}, {"role": "user", "content": "Who won the world series in 2020?"}, {"role": "assistant", "content": "The

How to call OpenAI’s ChatGPT API Read More »