1 2 3 4 5 6 7 8 9 |
$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"' } |
1 2 3 4 5 6 7 8 9 |
$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"' } |