├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── README.md ├── image └── pipepotato.gif ├── main.cpp ├── pipepotato.sln ├── pipes.vcxproj ├── pipes.vcxproj.filters ├── pipes.vcxproj.user ├── pipeserver.cpp ├── pipeserver.h ├── spoolss_c.c ├── spoolss_h.h └── spoolss_s.c /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/README.md -------------------------------------------------------------------------------- /image/pipepotato.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/image/pipepotato.gif -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/main.cpp -------------------------------------------------------------------------------- /pipepotato.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/pipepotato.sln -------------------------------------------------------------------------------- /pipes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/pipes.vcxproj -------------------------------------------------------------------------------- /pipes.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/pipes.vcxproj.filters -------------------------------------------------------------------------------- /pipes.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/pipes.vcxproj.user -------------------------------------------------------------------------------- /pipeserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/pipeserver.cpp -------------------------------------------------------------------------------- /pipeserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/pipeserver.h -------------------------------------------------------------------------------- /spoolss_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/spoolss_c.c -------------------------------------------------------------------------------- /spoolss_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/spoolss_h.h -------------------------------------------------------------------------------- /spoolss_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daikerSec/pipePotato/HEAD/spoolss_s.c --------------------------------------------------------------------------------