Giter VIP home page Giter VIP logo

Comments (1)

Scrut1ny avatar Scrut1ny commented on August 16, 2024
  1. The generic reverse turning tests are on you, they're stupid anyway.
  2. Theres already been a solution for fixing the RDTSC check, but for the Force VM exit though you must patch the host kernal, and it'll have to be on Linux because Windows is proprietary.
# RDTSC (Read Time-Stamp Counter)
$VBoxManager setextradata $VM "VBoxInternal/TM/TSCMode" "RealTSCOffset"
$VBoxManager setextradata $VM "VBoxInternal/CPUM/SSE4.1" "1"
$VBoxManager setextradata $VM "VBoxInternal/CPUM/SSE4.2" "1"
  1. The check up time GetTickCount() is also kinda stupid, all you have to do is leave the hypervisor runnning for 12+ minutes
  2. The vbox detections do need to get updated, they're very easy fixes though.

SCSI Identifier Spoof

function Get-UpperRandomString {
    $Identifier = -join (1..20 | ForEach {[char]((65..90) + (48..57) | Get-Random)})
    return $Identifier
}

# Physical Drives (SATA/NVMe)
foreach ($PortNumber in 0..9) {
    foreach ($BusNumber in 0..9) {
		foreach ($LogicalUnitIdNumber in 0..9) {
			$registryPath = "HKLM:\HARDWARE\DEVICEMAP\Scsi\Scsi Port $PortNumber\Scsi Bus $BusNumber\Target Id 0\Logical Unit Id $LogicalUnitIdNumber"

			if (Test-Path -Path $registryPath) {
				$NewString = Get-UpperRandomString
				Set-ItemProperty -Path "$registryPath" -Name 'Identifier' -Type String -Value "NVMe    Samsung SSD 980 FXO7" -Force
				Set-ItemProperty -Path "$registryPath" -Name 'SerialNumber' -Type String -Value "$NewString" -Force
			}
		}
    }
}

MAC Address Spoof

$VBoxManager modifyvm $VM --nic1 "bridged" --mac-address1 "428D5C257A8B"

from antivmdetection.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.