Skip to content

Instantly share code, notes, and snippets.

View AlexZeGamer's full-sized avatar
:shipit:

Alexandre Malfreyt AlexZeGamer

:shipit:
View GitHub Profile
@AlexZeGamer
AlexZeGamer / README.md
Created July 5, 2023 14:59
Flipper Zero BadUSB - Wifi password stealer (Discord webhooks)

⚠️ This script was made for educational purposes only and is not meant to me used maliciously.

This script is a wifi stealer that sends every wifi passwords stored on a Windows 10/11 computer to a discord webhook.

It is made to be used with a Flipper Zero device, using the BadUSB feature.

Files

Powershell scripts

  • Wifi-Stealer-Discord.ps1 - The main script, commented for readability
  • Wifi-Stealer-Discord_minified.ps1 - The minified version of the script (no comments, one line)
@AlexZeGamer
AlexZeGamer / sierpinski-triangle.py
Created April 18, 2022 19:19
Sierpinski triangle using Turtle (Python)
from itertools import count
from turtle import *
import random
# Based on this video by @mathletters on TikTok :
# https://vm.tiktok.com/ZMLqmaYUt/
title('Sierpinski Triangle')
screen = getscreen()