Python module for Signal Sciences
Python module and CLI tool for the Signal Sciences API.
pip install pysigsci
$ pysigsci --get requests
To see all options run: $ pysigsci --help
from pysigsci import sigsciapi
sigsci = sigsciapi.SigSciApi(email="myemail", password="mypassword")
sigsci.corp = "mycorp"
sigsci.site = "mysite"
params = {"q": "from:-1d tag:XSS"}
print(sigsci.get_requests(parameters=params))
Also see example.py as a reference.
Use the command pysigscia
to audit configuration across sites. This provides basic functionality to help ensure your
configurations are consistent.
First download all configurations with the following command:
$ pysigscia --get-config
Next, run the command options that suits your needs. When specifying a site name use the “short name”.
Compare a site to all other sites, for all configurations:
$ pysigscia --compare <site_name>
Compare a site to one other site, for all configurations:
$ pysigscia --compare <site_name> --to <site_name>
Compare a site to all other sites, for a specific configuration:
$ pysigscia --compare <site_name> --configs request_rules
Compare a site to one other site, for a specific configuration:
$ pysigscia --compare <site_name> --to <site_name> --configs redactions
When specifying a specific config the following are supported:
The pysigscia
command outputs to standard out. For large configuration data, it will be best to redirect the output to a text file for review, example: $ pysigscia --compare <site_name> > $HOME/Desktop/sigsci_config_audit.txt