├── .idea ├── dictionaries │ └── Abhinav_Suthar.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jsLibraryMappings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── SClientSide ├── Dashboard │ ├── bot-list.js │ ├── index.html │ └── style.css └── Test │ ├── emit.html │ ├── index.html │ ├── test.css │ ├── test.js │ └── visualize.html ├── ServerSide └── index.js ├── Socket-v1.1.iml ├── Streaming └── WebRTC │ ├── cert.pem │ ├── client.js │ ├── index.html │ ├── key.pem │ └── server.js ├── package.json ├── public ├── contact-card.html ├── index.html ├── main.js └── style.css └── server.js /.idea/dictionaries/Abhinav_Suthar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/.idea/dictionaries/Abhinav_Suthar.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /SClientSide/Dashboard/bot-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/SClientSide/Dashboard/bot-list.js -------------------------------------------------------------------------------- /SClientSide/Dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/SClientSide/Dashboard/index.html -------------------------------------------------------------------------------- /SClientSide/Dashboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/SClientSide/Dashboard/style.css -------------------------------------------------------------------------------- /SClientSide/Test/emit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/SClientSide/Test/emit.html -------------------------------------------------------------------------------- /SClientSide/Test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/SClientSide/Test/index.html -------------------------------------------------------------------------------- /SClientSide/Test/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/SClientSide/Test/test.css -------------------------------------------------------------------------------- /SClientSide/Test/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SClientSide/Test/visualize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/SClientSide/Test/visualize.html -------------------------------------------------------------------------------- /ServerSide/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/ServerSide/index.js -------------------------------------------------------------------------------- /Socket-v1.1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/Socket-v1.1.iml -------------------------------------------------------------------------------- /Streaming/WebRTC/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/Streaming/WebRTC/cert.pem -------------------------------------------------------------------------------- /Streaming/WebRTC/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/Streaming/WebRTC/client.js -------------------------------------------------------------------------------- /Streaming/WebRTC/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/Streaming/WebRTC/index.html -------------------------------------------------------------------------------- /Streaming/WebRTC/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/Streaming/WebRTC/key.pem -------------------------------------------------------------------------------- /Streaming/WebRTC/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/Streaming/WebRTC/server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/package.json -------------------------------------------------------------------------------- /public/contact-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/public/contact-card.html -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/public/index.html -------------------------------------------------------------------------------- /public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/public/main.js -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/public/style.css -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavsuthar/Android_Spy_App_Client/HEAD/server.js --------------------------------------------------------------------------------