Releases: FatherDivine/f0-dev
Magspoof Card Organizer v0.1
There you have it! Just run the magspoofcardorganizer-installer.ps1 located @ f0-dev/magspoof_flipper_cardorganizer
/magspoofcardorganizer-installer.ps1 (wouldn't let me attach a .ps1 file.. might be the proxy). This will pull the latest version from the GH and install as a module. After installation, just run the organizer by opening a PowerShell Session and typing:
invoke-magspoofcardorganizer
or if you wish to open a specific dump file that has each card on a separate line ( which is the typical output from a HID keyboard emulation-based magstrip reader), then type:
invoke-magspoofcardorganizer -FileName "c:\path\to\thedump.dump"
It doesn't matter what the extension of the dump: what matters is the data inside. An alias for the same cmdlet above is:
magorganizer -file c:\temp\mags.dump
If you put no filename, then the card organizer will run in manual mode. In this mode, you can swipe straight into the card organizer using a HID keyboard emulation-based magstrip reader (like the MSR690 found on Amazon). At the end, type stop (and enter key) and it will process those into individual cards.
Version 0.2 will allow you to specify where the files write, but as of now it is c:\temp\mags and c:\temp\mags\manualentry. If you need to change it now, you can on line 80 and 81 of invoke-magspoofcardorganizer.ps1:
$directoryPAth = "C:\temp\mags\" $ManualEntryDirectoryPAth = "C:\temp\mags\manualentry\"