├── Makefile.am ├── Makefile.in ├── README.md ├── autogen.sh ├── configure.ac ├── include ├── banner.txt └── etn.h └── src ├── Makefile.am ├── Makefile.in ├── crypto.c ├── pivotc.c ├── pivots.c └── utils.c /Makefile.am: -------------------------------------------------------------------------------- 1 | AUTOMAKE_OPTIONS = foreign 2 | SUBDIRS = src 3 | -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/configure.ac -------------------------------------------------------------------------------- /include/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/include/banner.txt -------------------------------------------------------------------------------- /include/etn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/include/etn.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/src/crypto.c -------------------------------------------------------------------------------- /src/pivotc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/src/pivotc.c -------------------------------------------------------------------------------- /src/pivots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/src/pivots.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x36/VPNPivot/HEAD/src/utils.c --------------------------------------------------------------------------------