Tom

Results 8 comments of Tom

> perhaps it is of use for someone: https://github.com/nexxai/CryptoBlocker/wiki/fallback-list I added the 5000+ filters from the FSRM list to this, if that is not what you intended, please revert.

> > perhaps it is of use for someone: https://github.com/nexxai/CryptoBlocker/wiki/fallback-list > > Will this list be updated regularly? Need to create a form and process to collect filters. Not sure...

sounds like a plan... hosting the list here: https://github.com/rivir/CryptoBlocker/raw/master/list powershell $webClient.DownloadString would need to be modified `#$jsonStr = $webClient.DownloadString("https://fsrm.experiant.ca/api/v1/get")` `$monitoredExtensions = $webClient.DownloadString("https://github.com/rivir/CryptoBlocker/raw/master/list")` any other ideas?

I like your idea more. I do not use the JSON beyond the filter list, so I simplified it, but I agree maintaining that metadata could be useful for many...

I haven't had any issues just changing the source to this list (the past couple months). I updated all my servers a week ago. Unless some weird wildcard pattern (added...

I only use the list as well. I have the list working for me up to March 14 (last entry was *.zxc) David, does the old list works for you...

This is likely the issue then. https://github.com/PowerShell/PowerShell/issues/7618 Invoke-webrequest (line 76) in your script needs a couple more properties. Probably adding `Invoke-WebRequest $url -OutFile $PSScriptRoot\extensions.txt -UseBasicParsing -ContentType 'application/json; charset=UTF-8'` will work...