Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/scapy/layers/windows/__init__.py: 67%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

3 statements  

1# SPDX-License-Identifier: GPL-2.0-only 

2# This file is part of Scapy 

3# See https://scapy.net/ for more information 

4 

5 

6""" 

7This package implements Windows-specific high level helpers. 

8It makes it easier to use Scapy Windows related objects. 

9 

10It currently contains helpers for the Windows Registry. 

11 

12Note that if you want to tweak specific fields of the underlying 

13protocols, you will have to use the lower level objects directly. 

14""" 

15 

16# Make sure config is loaded 

17from scapy.config import conf # noqa: F401