Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

angry-bender/issue23 #34

Merged
merged 3 commits into from
May 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Forensics Tools.zip
Binary file not shown.
6 changes: 5 additions & 1 deletion Get-Forensics-Tools.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ function Install-MSI([string] $name, [string]$msiargs)
Write-Host "Installing $($installer.name), Please Wait"
Start-Process "$($pwd)\$($installer.name)" -ArgumentList "$($msiargs)" -wait
$status = "$($name) Intalled by MSI"
#Checks for msi opening browsers
Start-Sleep 5
$browser = Get-Process | Where-Object {$_.MainWindowTitle -like "*$($name)*"}
$browser | stop-process -force

}
elseif($dircontents.Extension -like "*.msi*")
Expand Down Expand Up @@ -143,7 +147,7 @@ function Get-GitPackage($package)
# $name = $webresponse[0].name
$releasetype = $webresponse[0].assets[$($package.releasenum)].content_type

if($releasetype -like "application/zip")
if($releasetype -like "application/zip" -or $releasetype -like "binary/octet-stream" -or $releasetype -like "application/x-zip-compressed")
{
$package.type = "zip"
Get-CompressedDownload $package "$($download)"
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,26 @@
# WINSIFT ForensicsSetup Beta 0.9.0
# WINSIFT ForensicsSetup Beta 0.9.1

![image](https://user-images.githubusercontent.com/18164137/116410447-f0d30a00-a873-11eb-9c6f-d496838549a5.png)


## Contents

- [WINSIFT ForensicsSetup Beta 0.9.0](#winsift-forensicssetup-beta-043)
- [WINSIFT ForensicsSetup Beta 0.9.1](#winsift-forensicssetup-beta-091)
- [Contents](#contents)
- [KNOWN ISSUES](#known-issues)
- [Choco packages that are broken #18](#choco-packages-that-are-broken-18)
- [Package issues](#package-issues)
- [Nimi Places](#Nimi-Places)
- [Nimi Places](#nimi-places)
- [Announcements](#announcements)
- [In Development](#in-development)
- [Feedback / tool Requests](#feedback--tool-requests)
- [Licencing](#licencing)
- [Pre-requisites](#pre-requisites)
- [Usage](#usage)
- [Description](#description)
- [Licenced Software (Included) - Free Licence - Non-Commercial Use](#licenced-software-included---free-licence---non-commercial-use)
- [Licenced Software (Not Included)](#licenced-software-not-included)
- [Unlicenced Software (Included)](#unlicenced-software-included)
- [GUI Tools Included](#gui-tools-included)
- [Unlicenced Software (In Progress)](#unlicenced-software-in-progress)
- [Developer contact](#developer-contact)

## KNOWN ISSUES
Expand Down
37 changes: 32 additions & 5 deletions packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,23 @@
"msiargs":"/silent",
"type":"",
"status":""
}
},
{
"Owner":"gchq",
"Name":"CyberChef",
"ReleaseNum":0,
"ismsi":false,
"type":"zip",
"status":""
},
{
"Owner":"woanware",
"Name":"wmi-parser",
"ReleaseNum":0,
"ismsi":false,
"type":"zip",
"status":""
}
],
"WebPackages":
[
Expand Down Expand Up @@ -65,7 +81,7 @@
"status":""
},
{
"Name":"SearchEverything",
"Name":"Search Everything",
"url":"https://www.voidtools.com/downloads",
"scrapewebsite":true,
"linkmember":"outerHTML",
Expand All @@ -77,14 +93,15 @@
"status":""
},
{
"Name":"Thumbcacheviewer",
"Name":"Thumb cache viewer",
"url":"https://thumbcacheviewer.github.io/",
"scrapewebsite":true,
"linkmember":"outerHTML",
"likefilter":"64",
"notfilter":null,
"type":"zip",
"ismsi":false
"ismsi":false,
"status":""
},
{
"Name":"Arsenal",
Expand All @@ -94,7 +111,17 @@
"likefilter":"button_0",
"notfilter":null,
"type":"zip",
"ismsi":false
"ismsi":false,
"status":""
},
{
"Name":"Kernel OST Viewer",
"url":"https://www.nucleustechnologies.com/downloads/freekernelostviewer.exe",
"scrapewebsite":false,
"type":"exe",
"ismsi":true,
"msiargs":"/VERYSILENT",
"status":""
}
],
"ChocoPackages":
Expand Down