├── README.md ├── bin ├── PPLcontrol.exe └── pssuspend64.exe ├── drivers ├── RTCore │ ├── RTCore64.sys │ ├── install.cmd │ └── remove.cmd └── StartSuspended │ ├── StartSuspended.sys │ ├── install.cmd │ └── remove.cmd ├── keyderiv.py ├── patterns ├── README.md ├── tokenstore.pat ├── variablebag.pat ├── win7_physstore.pat └── winmodern_physstore.pat ├── splog.py ├── spp_prod.pem ├── spp_test.pem ├── sppdebug.reg ├── tokens_rebuild_v2.py ├── tsdecrypt.py └── tsencrypt.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/README.md -------------------------------------------------------------------------------- /bin/PPLcontrol.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/bin/PPLcontrol.exe -------------------------------------------------------------------------------- /bin/pssuspend64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/bin/pssuspend64.exe -------------------------------------------------------------------------------- /drivers/RTCore/RTCore64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/drivers/RTCore/RTCore64.sys -------------------------------------------------------------------------------- /drivers/RTCore/install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/drivers/RTCore/install.cmd -------------------------------------------------------------------------------- /drivers/RTCore/remove.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/drivers/RTCore/remove.cmd -------------------------------------------------------------------------------- /drivers/StartSuspended/StartSuspended.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/drivers/StartSuspended/StartSuspended.sys -------------------------------------------------------------------------------- /drivers/StartSuspended/install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/drivers/StartSuspended/install.cmd -------------------------------------------------------------------------------- /drivers/StartSuspended/remove.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/drivers/StartSuspended/remove.cmd -------------------------------------------------------------------------------- /keyderiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/keyderiv.py -------------------------------------------------------------------------------- /patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/patterns/README.md -------------------------------------------------------------------------------- /patterns/tokenstore.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/patterns/tokenstore.pat -------------------------------------------------------------------------------- /patterns/variablebag.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/patterns/variablebag.pat -------------------------------------------------------------------------------- /patterns/win7_physstore.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/patterns/win7_physstore.pat -------------------------------------------------------------------------------- /patterns/winmodern_physstore.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/patterns/winmodern_physstore.pat -------------------------------------------------------------------------------- /splog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/splog.py -------------------------------------------------------------------------------- /spp_prod.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/spp_prod.pem -------------------------------------------------------------------------------- /spp_test.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/spp_test.pem -------------------------------------------------------------------------------- /sppdebug.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/sppdebug.reg -------------------------------------------------------------------------------- /tokens_rebuild_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/tokens_rebuild_v2.py -------------------------------------------------------------------------------- /tsdecrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/tsdecrypt.py -------------------------------------------------------------------------------- /tsencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/spp-stuff/HEAD/tsencrypt.py --------------------------------------------------------------------------------