PowerShell $web = Invoke-WebRequest "http://demo.owasp-juice.shop/#/search" # Opción 1 $web.Scripts.src # Opción 2 $web.Content -split "`n" | %{ $_ | Select-String '\.js"' }123456789$web = Invoke-WebRequest "http://demo.owasp-juice.shop/#/search" # Opción 1$web.Scripts.src # Opción 2$web.Content -split "`n" | %{ $_ | Select-String '\.js"'}