Best Python code snippet using autotest_python
nmap.py
Source:nmap.py  
...7import sys8import regress9import time10import re11def get_ipaddr(count):12    octet1 = count % 25413    octet2 = count / 25414    return "10.0.%d.%d" % (octet2 + 1, octet1 + 1)15def nmap(count):16    ipaddr = get_ipaddr(count)17    log = open("/tmp/nmap.log", "a")18    file = os.popen('nmap -S 127.0.0.1 -e lo0 -sS -O -p1,23 %s 2>/dev/null' % ipaddr)19    oses = ""20    output = ""21    for line in file:22#        if re.match("^(SInfo|TSeq|T[0-9]|PU)", line):23        output += line24        res = re.match("OS (guesses|details): (.*)", line)25        if res:26            oses = res.group(2)27        elif re.match("^No exact OS", line):28            oses = None29    res = 030    if oses:31        if oses == prints[count]:32            print "+",33            res = 134        elif oses.find(prints[count]) != -1:35            print "-",36            res = 237        else:38            print "?",39            print >>log, "Wanted: '%s' but got '%s':\n%s" % \40                  (prints[count], oses, output)41            failures.append("%d:" % count + prints[count] + oses + ":\n" + output)42    else:43        print >>log, "Wanted: '%s' but got nothing:\n%s" % \44              (prints[count], output)45        failures.append("%d:" % count + prints[count] + "No match:\n" + output)46        print "_",47    sys.stdout.flush()48    file.close()49    log.close()50    return res51    52def make_configuration(filename, fingerprints):53    output = open(filename, "w")54    input = open(fingerprints, "r")55    print >>output, """create template56set template default tcp action reset57add template tcp port 23 open58"""59    count = 060    r = re.compile('\s*$')61    m = re.compile("^Fingerprint ([^#]*)$")62    for line in input:63        line = r.sub("", line)64        res = m.match(line)65        if not res:66            continue67        fname = res.group(1)68        prints[count] = fname69        ipaddr = get_ipaddr(count)70        # Create template71        print >>output, 'bind %s template' % ipaddr72        print >>output, 'set %s personality "%s"' % (ipaddr, fname)73        count += 174    output.close()75    input.close()76    return count77# Main78failures = []79prints = {}80number = make_configuration("config.nmap", "../nmap.prints")81reg = regress.regress("Nmap fingerprints", "../honeyd", "config.nmap")82reg.start_honeyd(reg.configuration)83reg.fe.read()...__init__.py
Source:__init__.py  
1from __future__ import absolute_import2import logging3import os4import sys5import redis6from flask_mail import Mail7from flask_limiter import Limiter8from flask_limiter.util import get_ipaddr9from flask_migrate import Migrate10from statsd import StatsClient11from . import settings12from .app import create_app  # noqa13from .query_runner import import_query_runners14from .destinations import import_destinations15__version__ = "9.0.0-beta"16if os.environ.get("REMOTE_DEBUG"):17    import ptvsd18    ptvsd.enable_attach(address=("0.0.0.0", 5678))19def setup_logging():20    handler = logging.StreamHandler(sys.stdout if settings.LOG_STDOUT else sys.stderr)21    formatter = logging.Formatter(settings.LOG_FORMAT)22    handler.setFormatter(formatter)23    logging.getLogger().addHandler(handler)24    logging.getLogger().setLevel(settings.LOG_LEVEL)25    # Make noisy libraries less noisy26    if settings.LOG_LEVEL != "DEBUG":27        for name in [28            "passlib",29            "requests.packages.urllib3",30            "snowflake.connector",31            "apiclient",32        ]:33            logging.getLogger(name).setLevel("ERROR")34setup_logging()35redis_connection = redis.from_url(settings.REDIS_URL)36rq_redis_connection = redis.from_url(settings.RQ_REDIS_URL)37mail = Mail()38migrate = Migrate(compare_type=True)39statsd_client = StatsClient(40    host=settings.STATSD_HOST, port=settings.STATSD_PORT, prefix=settings.STATSD_PREFIX41)42limiter = Limiter(key_func=get_ipaddr, storage_uri=settings.LIMITER_STORAGE)43import_query_runners(settings.QUERY_RUNNERS)...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
