Some weeks ago we published QoffeeSIP, the Javascript SIP over websockets stack which we use to develop our WebRTC products in Quobis. An example is IdentityCall, a system designed to provide call authentication in traditional VoIP and IMS environments. Now it achieves the same goal in WebRTC ones, interconnecting them at the same time with PSTN network.
Today I’m showing a different case of use that those proposed in examples (the "simplest-example" and a "webphone"). I’m going to write a simple (but for sure the first one in the world ;) SIP over websockets server scanner. It should send a valid SIP (over websockets) petition, parse the interesting info from the response ( i.e. "User-Agent") and print it. I’m using the simplest example as basis, here there are the description of the changes I made on the code:
- In this case no HTML video tags are provided to the constructor. The reason is that we are only using websocket features of the stack, not WebRTC ones.
- Some stuff deleted from the interface in order to ask only for needed parameters (ip address, port and optionally the extension used to made the registration).
- Media parts were also deleted from script.coffee file, which defines the logic of the app.
- Obviously we need to change this logic so I added some code at the end. In this case we are saying that when states 2 (Registering after challenge) or 3 (Registered) are reached, received message is going to be parsed.
- Then strings "User-Agent", "Server" and "Organization" are parsed from this response and printed. Really we are getting it from an object with the property "frame".
- Finally, makefile is modified in order to generate the output with the correct name.
script.coffee
index.jade
- Confirm you have installed coffeeScript and Jade in your system, if not you can use npm to install them ("coffee-script" and "jade").
- Generate the files to distribute it.
make
- Copy them to your Apache server:
sudo cp -R dist/* /var/www
Here there are a few shoots:
- Add support to ranges of ip addresses.
- Avoid asking for approval to use webcam and/or micro. Really it is not used but it’s a limitation of the stack. We decided to do this request during registering instead of during a call because of usability issues.
- Use Bootstrap to get a more friendly interface.
But this is only a proof of concept so I think it is good enough for now. The target of this post is to show a different way of playing with the stack. Anyway I’m going to add support for websockets to my SIP Metasploit modules in any moment if you are interested in more professional tools.
In the same way, if you were interested in a more complex application you can visit the online demo which implements "webphone" example of use. So you can play with it too, if you need help you can always open an issue on Github repository.
Today I’m showing a different case of use that those proposed in examples (the "simplest-example" and a "webphone"). I’m going to write a simple (but for sure the first one in the world ;) SIP over websockets server scanner. It should send a valid SIP (over websockets) petition, parse the interesting info from the response ( i.e. "User-Agent") and print it. I’m using the simplest example as basis, here there are the description of the changes I made on the code:
- In this case no HTML video tags are provided to the constructor. The reason is that we are only using websocket features of the stack, not WebRTC ones.
- Some stuff deleted from the interface in order to ask only for needed parameters (ip address, port and optionally the extension used to made the registration).
- Media parts were also deleted from script.coffee file, which defines the logic of the app.
- Obviously we need to change this logic so I added some code at the end. In this case we are saying that when states 2 (Registering after challenge) or 3 (Registered) are reached, received message is going to be parsed.
- Then strings "User-Agent", "Server" and "Organization" are parsed from this response and printed. Really we are getting it from an object with the property "frame".
- Finally, makefile is modified in order to generate the output with the correct name.
script.coffee
### Copyright (C) Quobis # Project site: https://github.com/Quobis/QoffeeSIP # # Licensed under GNU-LGPL-3.0-or-later (http://www.gnu.org/licenses/lgpl-3.0.html) ## # On document ready... $ -> # Avoid page "reloading" on submit. $("form").submit (e) -> e.preventDefault() false # Declaration of api. api = null $("#init").submit => options = server: {ip: $("#server-ip").val(), port: $("#server-port").val()} onopen: => api.register "qoffeesip", "anonymous" api = new API options api.on "new-state", (state, message) -> switch state when 2,3 userAgentRE = /User-Agent:(.*)/i serverRE = /Server:(.*)/i organizationRE = /Organization:(.*)/i matchUa = userAgentRE.exec message.frame matchServer = serverRE.exec message.frame matchOrganization = organizationRE.exec message.frame output = matchUa or matchServer or matchOrganization $("#output").text(output[0])
index.jade
//-//- @source: https://github.com/Quobis/QoffeeSIP //- Copyright (C) Quobis //- Licensed under GNU-LGPL-3.0-or-later (http://www.gnu.org/licenses/lgpl-3.0.html) //- !!! head title SIP over websockets scanner script(src="lib/jquery-1.8.0.min.js") script(src="lib/spine.js") script(src="lib/underscore.js") script(src="lib/qoffeesip.js") script(src="script.js") body form(id="init") input(id="server-ip", type="text", placeholder="Server IP", required) input(id="server-port", type="number", placeholder="Port", required) input(type="submit", value="Scan")div(id="output")
I have committed this example to QoffeeSIP examples of use, so you can download and use it as explained is QuickStart guide of the project. The command "make build" (or simply "make") is going to put the output files in "dist" folder. Then you only have to move them to an HTTP server, like Apache. You could follow next steps:
- Confirm you have installed coffeeScript and Jade in your system, if not you can use npm to install them ("coffee-script" and "jade").
- Download the examples using git.
git clone https://github.com/Quobis/QoffeeSIP.git
cd qoffeesip/examples/sipwebsockets-scanner
cd qoffeesip/examples/sipwebsockets-scanner
- Generate the files to distribute it.
make
- Copy them to your Apache server:
sudo cp -R dist/* /var/www
Here there are a few shoots:
Scanner setup
|
Scanning Kamailio |
In a real tool, for best results, we should make some improvements like these:
- Use OPTIONS packets because of being more accurate for this target.
- Add support to ranges of ip addresses.
- Avoid asking for approval to use webcam and/or micro. Really it is not used but it’s a limitation of the stack. We decided to do this request during registering instead of during a call because of usability issues.
- Use Bootstrap to get a more friendly interface.
But this is only a proof of concept so I think it is good enough for now. The target of this post is to show a different way of playing with the stack. Anyway I’m going to add support for websockets to my SIP Metasploit modules in any moment if you are interested in more professional tools.
In the same way, if you were interested in a more complex application you can visit the online demo which implements "webphone" example of use. So you can play with it too, if you need help you can always open an issue on Github repository.
QoffeeSIP demo |