Updating Ubiqtorate

This commit is contained in:
2020-10-08 16:33:19 -05:00
parent eaeae93a0f
commit e12c8ff0c6
53 changed files with 1645 additions and 2 deletions

29
modules/netdetect.py Normal file
View File

@@ -0,0 +1,29 @@
#!/usr/bin/env python3
# File: modules/net-detect
#
# Description: This module detects network hosts and creates an Ansible playbook for them.
#
# Package: AniNIX/Tenebrous
# Copyright: WTFPL
#
# Author: DarkFeather <darkfeather@aninix.net>
import os
import re
import nmap3
import yaml
prdre = re.compile('core*')
devre = re.compile('darknet*|maat*|sharingan*|')
gethre = re.compile('geth*|nazara*')
shadowfeedre = re.compile('shadowfeed*')
nmap = nmap3.Nmap()
function main():
"""
Main operation
"""