Python package to defang and refang indicators of compromise from text.
Project description
Copyright (c) 2017, Floyd Hightower
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Description: *******************************
IOC Fanger
*******************************
.. image:: https://img.shields.io/pypi/v/ioc_fanger.svg
:target: https://pypi.python.org/pypi/ioc_fanger
.. image:: https://img.shields.io/travis/ioc-fang/ioc_fanger.svg
:target: https://travis-ci.org/ioc-fang/ioc_fanger
.. image:: https://codecov.io/gh/ioc-fang/ioc_fanger/branch/master/graph/badge.svg
:target: https://codecov.io/gh/ioc-fang/ioc_fanger
.. image:: https://api.codacy.com/project/badge/Grade/d1762339ba454fba87c02a1b7ea69052
:target: https://www.codacy.com/app/fhightower/ioc_fanger
Python package to fang and defang `indicators of compromise <https://digitalguardian.com/blog/what-are-indicators-compromise>`_ in text.
**Defanging** - converting indicators of compromise from the normal form (which can become links) to a form which cannot accidentally become a link:
``example.com => example[.]com``
**Fanging** - converting indicators of compromise from a defanged form to the normal, original form:
``example[.]com => example.com``
Installation
============
The recommended means of installation is using `pip <https://pypi.python.org/pypi/pip/>`_:
``pip install ioc_fanger``
Alternatively, you can install ioc_fanger as follows:
.. code-block:: shell
git clone https://github.com/ioc-fang/ioc_fanger.git && cd ioc_fanger;
python setup.py install --user;
Usage
=====
Via Python
^^^^^^^^^^
Use ioc_fanger as follows:
.. code-block:: python
import ioc_fanger
ioc_fanger.defang("example.com http://bad.com/phishing.php") # example[.]com hXXp://bad[.]com/phishing[.]php
ioc_fanger.fang("example[.]com hXXp://bad[.]com/phishing[.]php") # example.com http://bad.com/phishing.php
Via Command Line
^^^^^^^^^^^^^^^^
Once the package is installed, there will be two commands available in the command line:
- ``fang``
- ``defang``
After each command, provide the text you would like to fang/defang:
.. code-block:: shell
fang "example[.]com" # example.com
.. code-block:: shell
defang "example.com" # example[.]com
Adding More Fanging/Defanging Options
=====================================
You can view the current fanging patterns `here <https://github.com/ioc-fang/ioc_fanger/blob/master/ioc_fanger/fang.json>`_ and the defanging patterns `here <https://github.com/ioc-fang/ioc_fanger/blob/master/ioc_fanger/defang.json>`_ .
To add more fanging options, edit `fang.json <https://github.com/ioc-fang/ioc_fanger/blob/master/ioc_fanger/fang.json>`_ and add an entry for the new pattern you would like to fang. The available keys for each entry are:
- ``find`` (required): This is the string pattern you would like to find
- ``replace`` (required): This is the string used to replace all instances to pattern specified by the ``find`` key
- ``case_sensitive`` (optional - boolean): If this is ``true``, the pattern specified by the ``find`` key will be treated as case sensitive (it will only be replaced if the case is an exact match)
- ``regex`` (optional - boolean): If this is ``true``, the pattern specified by the ``find`` key will be treated as a regex (it will not be escaped before use)
Feedback? Ideas? Thoughts?
==========================
If you have any feedback, ideas, or thoughts on this project, please [raise an issue](https://github.com/ioc-fang/ioc_fanger/issues) (or [contact me](https://hightower.space/contact/) with private requests).
Credits
=======
This package was created with Cookiecutter_ and the `fhightower/python-project-template`_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`fhightower/python-project-template`: https://gitlab.com/fhightower/python-project-template
Keywords: ioc_fanger
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Description: *******************************
IOC Fanger
*******************************
.. image:: https://img.shields.io/pypi/v/ioc_fanger.svg
:target: https://pypi.python.org/pypi/ioc_fanger
.. image:: https://img.shields.io/travis/ioc-fang/ioc_fanger.svg
:target: https://travis-ci.org/ioc-fang/ioc_fanger
.. image:: https://codecov.io/gh/ioc-fang/ioc_fanger/branch/master/graph/badge.svg
:target: https://codecov.io/gh/ioc-fang/ioc_fanger
.. image:: https://api.codacy.com/project/badge/Grade/d1762339ba454fba87c02a1b7ea69052
:target: https://www.codacy.com/app/fhightower/ioc_fanger
Python package to fang and defang `indicators of compromise <https://digitalguardian.com/blog/what-are-indicators-compromise>`_ in text.
**Defanging** - converting indicators of compromise from the normal form (which can become links) to a form which cannot accidentally become a link:
``example.com => example[.]com``
**Fanging** - converting indicators of compromise from a defanged form to the normal, original form:
``example[.]com => example.com``
Installation
============
The recommended means of installation is using `pip <https://pypi.python.org/pypi/pip/>`_:
``pip install ioc_fanger``
Alternatively, you can install ioc_fanger as follows:
.. code-block:: shell
git clone https://github.com/ioc-fang/ioc_fanger.git && cd ioc_fanger;
python setup.py install --user;
Usage
=====
Via Python
^^^^^^^^^^
Use ioc_fanger as follows:
.. code-block:: python
import ioc_fanger
ioc_fanger.defang("example.com http://bad.com/phishing.php") # example[.]com hXXp://bad[.]com/phishing[.]php
ioc_fanger.fang("example[.]com hXXp://bad[.]com/phishing[.]php") # example.com http://bad.com/phishing.php
Via Command Line
^^^^^^^^^^^^^^^^
Once the package is installed, there will be two commands available in the command line:
- ``fang``
- ``defang``
After each command, provide the text you would like to fang/defang:
.. code-block:: shell
fang "example[.]com" # example.com
.. code-block:: shell
defang "example.com" # example[.]com
Adding More Fanging/Defanging Options
=====================================
You can view the current fanging patterns `here <https://github.com/ioc-fang/ioc_fanger/blob/master/ioc_fanger/fang.json>`_ and the defanging patterns `here <https://github.com/ioc-fang/ioc_fanger/blob/master/ioc_fanger/defang.json>`_ .
To add more fanging options, edit `fang.json <https://github.com/ioc-fang/ioc_fanger/blob/master/ioc_fanger/fang.json>`_ and add an entry for the new pattern you would like to fang. The available keys for each entry are:
- ``find`` (required): This is the string pattern you would like to find
- ``replace`` (required): This is the string used to replace all instances to pattern specified by the ``find`` key
- ``case_sensitive`` (optional - boolean): If this is ``true``, the pattern specified by the ``find`` key will be treated as case sensitive (it will only be replaced if the case is an exact match)
- ``regex`` (optional - boolean): If this is ``true``, the pattern specified by the ``find`` key will be treated as a regex (it will not be escaped before use)
Feedback? Ideas? Thoughts?
==========================
If you have any feedback, ideas, or thoughts on this project, please [raise an issue](https://github.com/ioc-fang/ioc_fanger/issues) (or [contact me](https://hightower.space/contact/) with private requests).
Credits
=======
This package was created with Cookiecutter_ and the `fhightower/python-project-template`_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`fhightower/python-project-template`: https://gitlab.com/fhightower/python-project-template
Keywords: ioc_fanger
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ioc_fanger-3.0.5.tar.gz
(13.6 kB
view hashes)
Built Distribution
Close
Hashes for ioc_fanger-3.0.5-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8bcde30f4488a1e7b529efabfcd49a1f50846ca555035535138687b2a913c34 |
|
MD5 | 9a85df82e9de4005eb88661608d53198 |
|
BLAKE2b-256 | bd346b55cf5a930a30b448c93c6515f498df3d851cdc795d12d1fc79a67fc1fd |