Create initial python dll loader

This commit is contained in:
Jerry Jacobs 2024-07-26 14:12:03 +02:00
parent b17edfbb5c
commit 1b2e744f08
2 changed files with 8 additions and 0 deletions

View File

@ -70,3 +70,6 @@ Following detections have been tested:
* <https://synzack.github.io/Tunneling-Traffic-With-SSL-and-TLS/> * <https://synzack.github.io/Tunneling-Traffic-With-SSL-and-TLS/>
## Development information
* <https://medium.com/analytics-vidhya/running-go-code-from-python-a65b3ae34a2d>

5
main.py Normal file
View File

@ -0,0 +1,5 @@
import ctypes
lib = ctypes.cdll.LoadLibrary('library.dll')
main = library.executeMain
main()