├── README.md ├── droppedconnection.py └── files ├── OnConnect.vbs ├── OnDisconnect.vbs ├── Windows ├── loginxml ├── preloginxml └── profile_test.xml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/DroppedConnection/HEAD/README.md -------------------------------------------------------------------------------- /droppedconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/DroppedConnection/HEAD/droppedconnection.py -------------------------------------------------------------------------------- /files/OnConnect.vbs: -------------------------------------------------------------------------------- 1 | msgbox("Pwned.OnConnect") 2 | 3 | 4 | -------------------------------------------------------------------------------- /files/OnDisconnect.vbs: -------------------------------------------------------------------------------- 1 | msgbox("Pwned.OnDisconnect") 2 | 3 | 4 | -------------------------------------------------------------------------------- /files/Windows: -------------------------------------------------------------------------------- 1 | AnyConnect 2 | -------------------------------------------------------------------------------- /files/loginxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/DroppedConnection/HEAD/files/loginxml -------------------------------------------------------------------------------- /files/preloginxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/DroppedConnection/HEAD/files/preloginxml -------------------------------------------------------------------------------- /files/profile_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/DroppedConnection/HEAD/files/profile_test.xml --------------------------------------------------------------------------------