- May 8, 2015
- 967
- 934
- 211
The AppScanner plugin exists since forever but was recently outsourced to myTeamspeak. Back in the days almost everyone had it pre-installed so it was way more popular and well known. Today i haven't seen anyone using since about half an year. But still, i use it and was interested in how it works. Since the release of TS3Hook i do know how it works and how to trick it, i'm gonna share that info with you.
So the original appscanner_plugin.dll sends plugin commands to give clients infos about your own running apps on every "cliententerview" event. Either by them connecting or you subscribing their channel. The command that it sends looks like this:
other clients recieve that as
So the only way they know which client sent it is the clientID before the && which makes it incredibly easy to fake it.
I built a demo plugin to play around with and maybe to find xpl01ts
Source: https://github.com/R4P3-NET/appscanner_plugin/blob/master/plugin.cpp#L335
Download: https://github.com/R4P3-NET/appscanner_plugin/releases
If you want to send a command just write this anywhere in your Teamspeak chat input:
Have fun
So the original appscanner_plugin.dll sends plugin commands to give clients infos about your own running apps on every "cliententerview" event. Either by them connecting or you subscribing their channel. The command that it sends looks like this:
C#:
plugincmd name=appscanner_plugin data=5&&Microsoft\sVisual\sStudio,\sMozilla\sFirefox targetmode=3
C#:
notifyplugincmd name=appscanner_plugin data=5&&Microsoft\sVisual\sStudio,\sMozilla\sFirefox
So the only way they know which client sent it is the clientID before the && which makes it incredibly easy to fake it.
I built a demo plugin to play around with and maybe to find xpl01ts
Source: https://github.com/R4P3-NET/appscanner_plugin/blob/master/plugin.cpp#L335
Download: https://github.com/R4P3-NET/appscanner_plugin/releases
If you want to send a command just write this anywhere in your Teamspeak chat input:
Code:
/as send <clientID>&&Application 1, Application 2
Have fun