Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I improved your dnsclient, now can retern a ip list #1

Open
breakwa2333 opened this issue May 15, 2019 · 0 comments
Open

I improved your dnsclient, now can retern a ip list #1

breakwa2333 opened this issue May 15, 2019 · 0 comments

Comments

@breakwa2333
Copy link

breakwa2333 commented May 15, 2019

  ip_list = []
  if qtype.lower() == 'a' and data[60:64].int > 0:
    for x in range(len(data), 0, -128):
      if data[x:x + 16] == data[-128:-112]:
        for y in range(128):
          if data[x:x + 128][y:y + 20] == hex(65537):
            ip_list.append(".".join(
              [str(data[x + 96:x + 104].uintbe), str(data[x + 104:x + 112].uintbe),
               str(data[x + 112:x + 120].uintbe), str(data[x + 120:x + 128].uintbe)]))
  else:
    if qtype.lower() == 'aaaa':
      for x in range(len(data), 0, -224):
        if data[x:x + 16] == hex(49164) and str(data[76:80].hex) == '0':
          answer = ":".join(
            [str(hex(data[x + 96:x + 112].uintbe))[2:], str(hex(data[x + 112:x + 128].uintbe))[2:],
             str(hex(data[x + 128:x + 144].uintbe))[2:], str(hex(data[x + 144:x + 160].uintbe))[2:],
             str(hex(data[x + 160:x + 176].uintbe))[2:], str(hex(data[x + 176:x + 192].uintbe))[2:],
             str(hex(data[x + 192:x + 208].uintbe))[2:], str(hex(data[x + 208:x + 224].uintbe))[2:]])
          ip_list.append(answer[:answer.rfind(':0') + 2].replace(':0', '') + ':' + answer[answer.rfind(':0') + 2:])
  result['ip_address'] = ip_list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant