212ac2f0d5
* Refactor of cameradar library * Old unit tests updated & improved. New unit tests inc * Update documentation & issue template * Update dependencies * Update TravisCI build script to reflect argument change * Remove outdated contributing guide * Update README with more examples and remove part on library * Add second camera to Travis build script & improve error detection * Fix typo in travis script & add missing image to readme * Remember that travis uses bash syntax not fish * Use relative paths for images in the README
15 lines
617 B
Go
15 lines
617 B
Go
// Package cameradar provides methods to be able to discover and
|
|
// attack RTSP streams easily. RTSP streams are used by most
|
|
// IP Cameras, often for surveillance.
|
|
//
|
|
// A simple example usage of the library can be found in
|
|
// https://github.com/ullaakut/cameradar/tree/master/cameradar
|
|
//
|
|
// The example usage is complete enough for most users to
|
|
// ignore the library, but for users with specific needs
|
|
// such as creating their own bruteforcing dictionary to
|
|
// access cameras, or running their own network scan, this
|
|
// library allows to use simple and performant methods to
|
|
// attack streams.
|
|
package cameradar
|