├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README_demo.txt ├── demo ├── DB_1000.mc7 └── FC_1000.mc7 ├── lib └── libsnap7.so ├── main.c └── snap7 ├── HISTORY.txt ├── README.txt ├── gpl.txt ├── lgpl-3.0.txt └── release ├── Linux ├── ARMHF │ └── Raspberry 2 │ │ └── libsnap7.so ├── X86_64 │ └── glibc_2.21 │ │ └── libsnap7.so └── i386 │ └── glibc_2.21 │ └── libsnap7.so ├── Windows ├── Legacy │ ├── README.txt │ ├── Win32 │ │ ├── snap7.def │ │ ├── snap7.dll │ │ └── snap7.lib │ └── Win64 │ │ ├── snap7.def │ │ ├── snap7.dll │ │ └── snap7.lib ├── Win32 │ ├── snap7.dll │ └── snap7.lib └── Win64 │ ├── snap7.dll │ └── snap7.lib ├── Wrappers └── c-cpp │ ├── README.txt │ ├── snap7.cpp │ └── snap7.h └── deploy.html /.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/README.md -------------------------------------------------------------------------------- /README_demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/README_demo.txt -------------------------------------------------------------------------------- /demo/DB_1000.mc7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/demo/DB_1000.mc7 -------------------------------------------------------------------------------- /demo/FC_1000.mc7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/demo/FC_1000.mc7 -------------------------------------------------------------------------------- /lib/libsnap7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/lib/libsnap7.so -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/main.c -------------------------------------------------------------------------------- /snap7/HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/HISTORY.txt -------------------------------------------------------------------------------- /snap7/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/README.txt -------------------------------------------------------------------------------- /snap7/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/gpl.txt -------------------------------------------------------------------------------- /snap7/lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/lgpl-3.0.txt -------------------------------------------------------------------------------- /snap7/release/Linux/ARMHF/Raspberry 2/libsnap7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Linux/ARMHF/Raspberry 2/libsnap7.so -------------------------------------------------------------------------------- /snap7/release/Linux/X86_64/glibc_2.21/libsnap7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Linux/X86_64/glibc_2.21/libsnap7.so -------------------------------------------------------------------------------- /snap7/release/Linux/i386/glibc_2.21/libsnap7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Linux/i386/glibc_2.21/libsnap7.so -------------------------------------------------------------------------------- /snap7/release/Windows/Legacy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Legacy/README.txt -------------------------------------------------------------------------------- /snap7/release/Windows/Legacy/Win32/snap7.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Legacy/Win32/snap7.def -------------------------------------------------------------------------------- /snap7/release/Windows/Legacy/Win32/snap7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Legacy/Win32/snap7.dll -------------------------------------------------------------------------------- /snap7/release/Windows/Legacy/Win32/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Legacy/Win32/snap7.lib -------------------------------------------------------------------------------- /snap7/release/Windows/Legacy/Win64/snap7.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Legacy/Win64/snap7.def -------------------------------------------------------------------------------- /snap7/release/Windows/Legacy/Win64/snap7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Legacy/Win64/snap7.dll -------------------------------------------------------------------------------- /snap7/release/Windows/Legacy/Win64/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Legacy/Win64/snap7.lib -------------------------------------------------------------------------------- /snap7/release/Windows/Win32/snap7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Win32/snap7.dll -------------------------------------------------------------------------------- /snap7/release/Windows/Win32/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Win32/snap7.lib -------------------------------------------------------------------------------- /snap7/release/Windows/Win64/snap7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Win64/snap7.dll -------------------------------------------------------------------------------- /snap7/release/Windows/Win64/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Windows/Win64/snap7.lib -------------------------------------------------------------------------------- /snap7/release/Wrappers/c-cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Wrappers/c-cpp/README.txt -------------------------------------------------------------------------------- /snap7/release/Wrappers/c-cpp/snap7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Wrappers/c-cpp/snap7.cpp -------------------------------------------------------------------------------- /snap7/release/Wrappers/c-cpp/snap7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/Wrappers/c-cpp/snap7.h -------------------------------------------------------------------------------- /snap7/release/deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCADACS/PLCinject/HEAD/snap7/release/deploy.html --------------------------------------------------------------------------------