Projects STRLCPY aardwolf Commits 298fac01
🤬
  • ■ ■ ■ ■ ■
    aardwolf/protocol/pdu/capabilities/__init__.py
    skipped 1 lines
    2 2  import enum
    3 3  from os import stat
    4 4   
     5 +from aardwolf import logger
    5 6  from aardwolf.protocol.pdu.capabilities.bitmamachachehostsupp import *
    6 7  from aardwolf.protocol.pdu.capabilities.bitmap import *
    7 8  from aardwolf.protocol.pdu.capabilities.bitmapcache import *
    skipped 94 lines
    102 103   #if msg.capabilityData != msg.capability.to_bytes():
    103 104   # raise Exception('mismatch!')
    104 105   else:
    105  - print('Not implemented parser! %s' % msg.capabilitySetType)
     106 + logger.debug('Not implemented parser! %s' % msg.capabilitySetType)
    106 107   return msg
    107 108   
    108 109   def __repr__(self):
    skipped 44 lines
  • ■ ■ ■ ■ ■
    aardwolf/protocol/pdu/input/__init__.py
    1 1  import io
    2 2  import enum
    3 3   
     4 +from aardwolf import logger
    4 5  from aardwolf.protocol.pdu.input.keyboard import *
    5 6  from aardwolf.protocol.pdu.input.unicode import *
    6 7  from aardwolf.protocol.pdu.input.mouse import *
    skipped 47 lines
    54 55   if ot is not None:
    55 56   msg.input = ot.from_bytes(msg.slowPathInputData)
    56 57   else:
    57  - print('Not implemented parser! %s' % msg.capabilitySetType)
     58 + logger.debug('Not implemented parser! %s' % msg.capabilitySetType)
    58 59   return msg
    59 60   
    60 61   def __repr__(self):
    skipped 22 lines
  • ■ ■ ■ ■ ■ ■
    setup.py
    skipped 51 lines
    52 52   
    53 53   
    54 54   install_requires=[
    55  - 'minikerberos>=0.2.17',
     55 + 'minikerberos>=0.2.20',
    56 56   'winsspi>=0.0.9',
    57 57   'asysocks>=0.1.7',
    58 58   'tqdm',
    skipped 3 lines
    62 62   'pyperclip>=1.8.2',
    63 63   'arc4>=0.0.4', #faster than cryptodome
    64 64   'Pillow>=9.0.0',
    65  - 'unicrypto>=0.0.2',
     65 + 'unicrypto>=0.0.4',
    66 66   ],
    67 67  
    68 68  
    skipped 14 lines
Please wait...
Page is in error, reload to recover