├── .gitignore ├── Client ├── ConsoleApplication1.sln ├── ConsoleApplication1 │ ├── ConsoleApplication1.c │ ├── ConsoleApplication1.vcxproj │ ├── ConsoleApplication1.vcxproj.filters │ └── ConsoleApplication1.vcxproj.user └── Release │ ├── ConsoleApplication1.exe │ └── ConsoleApplication1.pdb ├── README.md ├── ReadWriteDriver ├── .gitattributes ├── .gitignore ├── README.md ├── RWdriver.sln └── RWdriver │ ├── RWdriver.inf │ ├── RWdriver.vcxproj │ ├── RWdriver.vcxproj.filters │ ├── RWdriver.vcxproj.user │ └── Source.c └── image ├── DEMO.gif ├── img1.png ├── img2.png └── img3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /Client/ConsoleApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/Client/ConsoleApplication1.sln -------------------------------------------------------------------------------- /Client/ConsoleApplication1/ConsoleApplication1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/Client/ConsoleApplication1/ConsoleApplication1.c -------------------------------------------------------------------------------- /Client/ConsoleApplication1/ConsoleApplication1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/Client/ConsoleApplication1/ConsoleApplication1.vcxproj -------------------------------------------------------------------------------- /Client/ConsoleApplication1/ConsoleApplication1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/Client/ConsoleApplication1/ConsoleApplication1.vcxproj.filters -------------------------------------------------------------------------------- /Client/ConsoleApplication1/ConsoleApplication1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/Client/ConsoleApplication1/ConsoleApplication1.vcxproj.user -------------------------------------------------------------------------------- /Client/Release/ConsoleApplication1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/Client/Release/ConsoleApplication1.exe -------------------------------------------------------------------------------- /Client/Release/ConsoleApplication1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/Client/Release/ConsoleApplication1.pdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/README.md -------------------------------------------------------------------------------- /ReadWriteDriver/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/ReadWriteDriver/.gitattributes -------------------------------------------------------------------------------- /ReadWriteDriver/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /RWdriver/x64 3 | -------------------------------------------------------------------------------- /ReadWriteDriver/README.md: -------------------------------------------------------------------------------- 1 | # RWdriver 2 | Read Memory without attach 3 | -------------------------------------------------------------------------------- /ReadWriteDriver/RWdriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/ReadWriteDriver/RWdriver.sln -------------------------------------------------------------------------------- /ReadWriteDriver/RWdriver/RWdriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/ReadWriteDriver/RWdriver/RWdriver.inf -------------------------------------------------------------------------------- /ReadWriteDriver/RWdriver/RWdriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/ReadWriteDriver/RWdriver/RWdriver.vcxproj -------------------------------------------------------------------------------- /ReadWriteDriver/RWdriver/RWdriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/ReadWriteDriver/RWdriver/RWdriver.vcxproj.filters -------------------------------------------------------------------------------- /ReadWriteDriver/RWdriver/RWdriver.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/ReadWriteDriver/RWdriver/RWdriver.vcxproj.user -------------------------------------------------------------------------------- /ReadWriteDriver/RWdriver/Source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/ReadWriteDriver/RWdriver/Source.c -------------------------------------------------------------------------------- /image/DEMO.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/image/DEMO.gif -------------------------------------------------------------------------------- /image/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/image/img1.png -------------------------------------------------------------------------------- /image/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/image/img2.png -------------------------------------------------------------------------------- /image/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShallowFeather/ReadWriteDriver/HEAD/image/img3.png --------------------------------------------------------------------------------