Advertisement
opexxx

ooniprobe_traffic_generator.ps1

Sep 9th, 2022 (edited)
1,767
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 0.37 KB | Cybersecurity | 0 0
  1. #run elevated pwsh
  2.  
  3. Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
  4.  
  5. refreshenv
  6.  
  7. choco install ooniprobe-cli
  8.  
  9. while($true) {
  10. ooniprobe run all
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement