├── .gitignore ├── GeoIPASNum.dat ├── Makefile ├── README ├── Win32 ├── GeoIP.dat ├── GeoIP.dll ├── GeoIPASNum.dat ├── README ├── asn.conf ├── curl.dll ├── def.conf ├── domainanalyzer.exe ├── pcre.dll ├── static │ ├── GeoIP.dat │ ├── GeoIP.dll │ ├── GeoIPASNum.dat │ ├── asn.conf │ ├── curl.dll │ ├── def.conf │ ├── domainanalyzer.exe │ ├── pcre.dll │ ├── wlist.conf │ ├── wlist.conf.txt │ └── zlib1.dll ├── wlist.conf ├── wlist.conf.txt └── zlib1.dll ├── analyzer.h ├── asn.c ├── asn.conf ├── chksum.c ├── chksum.h ├── common.h ├── connect_host.txt ├── def.conf ├── dom.txt ├── domainanalyzer.c ├── domainanalyzer.py ├── domainanalyzer.pyc ├── domverf.sh ├── flux.c ├── getaddrinfo.h ├── libdoma.h ├── libdoma.i ├── libdoma.pyc ├── res.txt ├── test.bash ├── update.c ├── urlanalyzer-pcre.c └── wlist.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /GeoIPASNum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/GeoIPASNum.dat -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/README -------------------------------------------------------------------------------- /Win32/GeoIP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/GeoIP.dat -------------------------------------------------------------------------------- /Win32/GeoIP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/GeoIP.dll -------------------------------------------------------------------------------- /Win32/GeoIPASNum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/GeoIPASNum.dat -------------------------------------------------------------------------------- /Win32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/README -------------------------------------------------------------------------------- /Win32/asn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/asn.conf -------------------------------------------------------------------------------- /Win32/curl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/curl.dll -------------------------------------------------------------------------------- /Win32/def.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/def.conf -------------------------------------------------------------------------------- /Win32/domainanalyzer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/domainanalyzer.exe -------------------------------------------------------------------------------- /Win32/pcre.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/pcre.dll -------------------------------------------------------------------------------- /Win32/static/GeoIP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/static/GeoIP.dat -------------------------------------------------------------------------------- /Win32/static/GeoIP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/static/GeoIP.dll -------------------------------------------------------------------------------- /Win32/static/GeoIPASNum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/static/GeoIPASNum.dat -------------------------------------------------------------------------------- /Win32/static/asn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/static/asn.conf -------------------------------------------------------------------------------- /Win32/static/curl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/static/curl.dll -------------------------------------------------------------------------------- /Win32/static/def.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/static/def.conf -------------------------------------------------------------------------------- /Win32/static/domainanalyzer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/static/domainanalyzer.exe -------------------------------------------------------------------------------- /Win32/static/pcre.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/static/pcre.dll -------------------------------------------------------------------------------- /Win32/static/wlist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/static/wlist.conf -------------------------------------------------------------------------------- /Win32/static/wlist.conf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Win32/static/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/static/zlib1.dll -------------------------------------------------------------------------------- /Win32/wlist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/wlist.conf -------------------------------------------------------------------------------- /Win32/wlist.conf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Win32/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/Win32/zlib1.dll -------------------------------------------------------------------------------- /analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/analyzer.h -------------------------------------------------------------------------------- /asn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/asn.c -------------------------------------------------------------------------------- /asn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/asn.conf -------------------------------------------------------------------------------- /chksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/chksum.c -------------------------------------------------------------------------------- /chksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/chksum.h -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/common.h -------------------------------------------------------------------------------- /connect_host.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/connect_host.txt -------------------------------------------------------------------------------- /def.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/def.conf -------------------------------------------------------------------------------- /dom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/dom.txt -------------------------------------------------------------------------------- /domainanalyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/domainanalyzer.c -------------------------------------------------------------------------------- /domainanalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/domainanalyzer.py -------------------------------------------------------------------------------- /domainanalyzer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/domainanalyzer.pyc -------------------------------------------------------------------------------- /domverf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/domverf.sh -------------------------------------------------------------------------------- /flux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/flux.c -------------------------------------------------------------------------------- /getaddrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/getaddrinfo.h -------------------------------------------------------------------------------- /libdoma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/libdoma.h -------------------------------------------------------------------------------- /libdoma.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/libdoma.i -------------------------------------------------------------------------------- /libdoma.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/libdoma.pyc -------------------------------------------------------------------------------- /res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/res.txt -------------------------------------------------------------------------------- /test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/test.bash -------------------------------------------------------------------------------- /update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/update.c -------------------------------------------------------------------------------- /urlanalyzer-pcre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/urlanalyzer-pcre.c -------------------------------------------------------------------------------- /wlist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udishamir/Domain-Analyzer/HEAD/wlist.conf --------------------------------------------------------------------------------