PowerMeta
PowerMeta copied to clipboard
PowerMeta searches for publicly available files hosted on various websites for a particular domain by using specially crafted Google, and Bing searches. It then allows for the download of those files...
Disable ProgressBar to increase webrequest throughput https://stackoverflow.com/questions/28682642/powershell-why-is-using-invoke-webrequest-much-slower-than-a-browser-download https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_preference_variables?view=powershell-7.2#progresspreference $ProgressPreference = 'SilentlyContinue' $ProgressPreference = 'Continue'
Fix for error when PowerMeta makes WebRequests: Invoke-WebRequest : The server committed a protocol violation.
Fixes #10 This replaces all characters from [Microsoft's list of invalid filename chars](https://support.microsoft.com/en-us/help/905231/information-about-the-characters-that-you-cannot-use-in-site-names-fol) with `_`. (incidentally removed extraneous whitespace at EOL. GitHub can show the diff without whitespace changes if...
Fixes a bunch of whitespace and capitalization issues to be in line with https://github.com/PoshCode/PowerShellPracticeAndStyle. Also made braces consistent with Allman style. There's apparently some [contention in the PS community about...
Links to download pages instead of direct to a file will look like `/view.aspx?src=...` which causes an error like this: ``` Invoke-WebRequest : Cannot perform operation because the wildcard path·...
Having some issues extracting and saving to CSV Here's the command I tired using to attempt to extract Meta & save to CSV. `Invoke-PowerMeta NAMECHANGED.com -ExtractAllToCsv all-target-metadata.csv` Here's the output...
Hi! I've been trialing your code and it's really great, however, when I enter a targetdomain that I know contains a PDF of say 200 pages, it only downloads a...
Hi again! Also, how does one add the option of searching for specific file names as well (in conjunction with file types)? Many thanks Rudolph
Right now PowerMeta can only search the original page, and whatever additional pages are linked to that page (Around 5-8 Google pages ~ around 500-800 site results). Need to add...
PowerMeta doesn't take into effect rate limiting by sites like Google. Need to add in ability to answer CAPTCHA requests on the fly.