Sunday, August 30, 2020

Defcon 2015 Coding Skillz 1 Writeup

Just connecting to the service, a 64bit cpu registers dump is received, and so does several binary code as you can see:



The registers represent an initial cpu state, and we have to reply with the registers result of the binary code execution. This must be automated becouse of the 10 seconds server socket timeout.

The exploit is quite simple, we have to set the cpu registers to this values, execute the code and get resulting registers.

In python we created two structures for the initial state and the ending state.

cpuRegs = {'rax':'','rbx':'','rcx':'','rdx':'','rsi':'','rdi':'','r8':'','r9':'','r10':'','r11':'','r12':'','r13':'','r14':'','r15':''}
finalRegs = {'rax':'','rbx':'','rcx':'','rdx':'','rsi':'','rdi':'','r8':'','r9':'','r10':'','r11':'','r12':'','r13':'','r14':'','r15':''}

We inject at the beginning several movs for setting the initial state:

for r in cpuRegs.keys():
    code.append('mov %s, %s' % (r, cpuRegs[r]))

The 64bit compilation of the movs and the binary code, but changing the last ret instruction by a sigtrap "int 3"
We compile with nasm in this way:

os.popen('nasm -f elf64 code.asm')
os.popen('ld -o code code.o ')

And use GDB to execute the code until the sigtrap, and then get the registers

fd = os.popen("gdb code -ex 'r' -ex 'i r' -ex 'quit'",'r')
for l in fd.readlines():
    for x in finalRegs.keys():
           ...

We just parse the registers and send the to the server in the same format, and got the key.


The code:

from libcookie import *
from asm import *
import os
import sys

host = 'catwestern_631d7907670909fc4df2defc13f2057c.quals.shallweplayaga.me'
port = 9999

cpuRegs = {'rax':'','rbx':'','rcx':'','rdx':'','rsi':'','rdi':'','r8':'','r9':'','r10':'','r11':'','r12':'','r13':'','r14':'','r15':''}
finalRegs = {'rax':'','rbx':'','rcx':'','rdx':'','rsi':'','rdi':'','r8':'','r9':'','r10':'','r11':'','r12':'','r13':'','r14':'','r15':''}
fregs = 15

s = Sock(TCP)
s.timeout = 999
s.connect(host,port)

data = s.readUntil('bytes:')


#data = s.read(sz)
#data = s.readAll()

sz = 0

for r in data.split('\n'):
    for rk in cpuRegs.keys():
        if r.startswith(rk):
            cpuRegs[rk] = r.split('=')[1]

    if 'bytes' in r:
        sz = int(r.split(' ')[3])



binary = data[-sz:]
code = []

print '[',binary,']'
print 'given size:',sz,'bin size:',len(binary)        
print cpuRegs


for r in cpuRegs.keys():
    code.append('mov %s, %s' % (r, cpuRegs[r]))


#print code

fd = open('code.asm','w')
fd.write('\n'.join(code)+'\n')
fd.close()
Capstone().dump('x86','64',binary,'code.asm')

print 'Compilando ...'
os.popen('nasm -f elf64 code.asm')
os.popen('ld -o code code.o ')

print 'Ejecutando ...'
fd = os.popen("gdb code -ex 'r' -ex 'i r' -ex 'quit'",'r')
for l in fd.readlines():
    for x in finalRegs.keys():
        if x in l:
            l = l.replace('\t',' ')
            try:
                i = 12
                spl = l.split(' ')
                if spl[i] == '':
                    i+=1
                print 'reg: ',x
                finalRegs[x] = l.split(' ')[i].split('\t')[0]
            except:
                print 'err: '+l
            fregs -= 1
            if fregs == 0:
                #print 'sending regs ...'
                #print finalRegs
                
                buff = []
                for k in finalRegs.keys():
                    buff.append('%s=%s' % (k,finalRegs[k]))


                print '\n'.join(buff)+'\n'

                print s.readAll()
                s.write('\n'.join(buff)+'\n\n\n')
                print 'waiting flag ....'
                print s.readAll()

                print '----- yeah? -----'
                s.close()
                



fd.close()
s.close()





Related links


Subvenciones para empresas

Subvenciones a fondo perdido

Subvenciones públicas a fondo perdido.

  • Gestionamos todo tipo de subvenciones para Pymes .
  • Líneas europeas (H2020), nacionales y de las CC.AA.
  • Vigilancia 24/7 para localizar cualquier subvención que se ajuste a las necesidades de tu empresa.
  • Gestión y preparación de la documentación a presentar.
Quiero saber más sobre subvenciones

Somo expertos en gestionar subvenciones, podemos conseguir la tuya.

Contáctanos de 9 a 16 horas
en el 981 90 49 49

o te contactamos nosotros

Déjanos tus datos

Sobre nosotros

Somos un socio estratégico para tu empresa. Atendemos a empresas y autónomos de toda España.

Servicios genéricos

Plan económico
Arbitraje financiero
Factoring sin recurso
Tramitación de avales
RAI/ASNEF

Otros servicios

Subvenciones
Marketing
Fiscal laboral y contable
Hacienda y S.S.
Análisis de clientes

Potao Express Samples

http://www.welivesecurity.com/2015/07/30/operation-potao-express/

http://www.welivesecurity.com/wp-content/uploads/2015/07/Operation-Potao-Express_final_v2.pdf


TL; DR


2011- July 2015
  • Aka  Sapotao and node69
  • Group - Sandworm / Quedagh APT
  • Vectors - USB, exe as doc, xls
  • Victims - RU, BY, AM, GE 
  • Victims - MMM group, UA gov
  • truecryptrussia.ru has been serving modified versions of the encryption software (Win32/FakeTC) that included a backdoor to selected targets. 
  • Win32/FakeTC - data theft from encrypted drives
  • The Potao main DLL only takes care of its core functionality; the actual spying functions are implemented in the form of downloadable modules. The plugins are downloaded each time the malware starts, since they aren't stored on the hard drive.
  • 1st Full Plugin and its export function is called Plug. Full plugins run continuously until the infected system is restarted
  • 2nd Light Plugin with an export function Scan. Light plugins terminate immediately after returning a buffer with the information they harvested off the victim's machine.
  • Some of the plugins were signed with a certificate issued to "Grandtorg":
  • Traffic 
  • Strong encryption. The data sent is encapsulated using the XML-RPC protocol.
  • MethodName value 10a7d030-1a61-11e3-beea-001c42e2a08b is always present in Potao traffic.
  • After receiving the request the C&C server generates an RSA-2048 public key and signs this generated key with another, static RSA-2048 private key .
  • In 2nd stage the malware generates a symmetric AES-256 key. This AES session key is encrypted with the newly received RSA-2048 public key and sent to the C&C server.
  • The actual data exchange after the key exchange is then encrypted using symmetric cryptography, which is faster, with the AES-256 key
  • The Potao malware sends an encrypted request to the server with computer ID, campaign ID, OS version, version of malware, computer name, current privileges, OS architecture (64 or 32bits) and also the name of the current process.
  • Potao USB - uses social engineering, exe in the root disguised as drive icon
  • Potao Anti RE -  uses the MurmurHash2 algorithm for computing the hashes of the API function names.
  • Potao Anti RE - encryption of strings
  • Russian TrueCrypt Win32/FakeTC - The malicious program code within the otherwise functional TrueCrypt software runs in its own thread. This thread, created at the end of the Mount function, enumerates files on the mounted encrypted drive, and if certain conditions are met, it connects to the C&C server, ready to execute commands from the attackers.
  • IOC https://github.com/eset/malware-ioc/tree/master/potao

TypeSHA256MD5
1stVersion1fe6af3d704d2fc0c7acd58b069a31eec866668ec6e25f52354e6e61266db8db85b0e3264820008a30f17ca19332fa19
1stVersion2ff0941fe3514abc12484ad2853d22fd7cb36469a313b5ecb6ef0c6391cf78abac854a3c91d52bfc09605506e76975ae
1stVersion54a76f5cd5a32ed7d5fa78e5d8311bafc0de57a475bc2fddc23ee4b3510b9d443b7d88a069631111d5585b1b10cccc86
1stVersion76c7c67274cf5384615a120e69be3af64cc31d9c4f05ff2031120612443c8360d1658b792dd1569abc27966083f59d44
1stVersion244c181eb442fefcf1e1daf900896bee6569481c0e885e3c63efeef86cd64c550c7183d761f15772b7e9c788be601d29
1stVersion887a721254486263f1f3f25f3c677da62ef5c062c3afa7ef70c895bc8b17b424a35e48909a49334a7ebb5448a78dcff9
1stVersion945c594aee1b5bd0f3a72abe8f5a3df74fc6ca686887db5e40fe859e3fc90bb1502f35002b1a95f1ae135baff6cff836
1stVersionab8d308fd59a8db8a130fcfdb6db56c4f7717877c465be98f71284bdfccdfa25a446ced5db1de877cf78f77741e2a804
1stVersionb22a614a291111398657cf8d1fa64fa50ed9c66c66a0b09d08c53972c6536766d939a05e1e3c9d7b6127d503c025dbc4
1stVersionfcfdcbdd60f105af1362cfeb3decbbbbe09d5fc82bde6ee8dfd846b2b844f97214634d446471b9e2f55158d9ac09d0b2
DebugVersion910f55e1c4e75696405e158e40b55238d767730c60119539b644ef3e6bc32a5d7263a328f0d47c76b4e103546b648484
DebugVersionc821cb34c86ec259af37c389a8f6cd635d98753576c675882c9896025a1abc53bdc9255df5385f534fea83b497c371c8
DebugVersionf845778c3f2e3272145621776a90f662ee9344e3ae550c76f65fd954e7277d195199fcd031987834ed3121fb316f4970
Droppersfrompostalsites4dcf14c41b31f8accf9683917bfc9159b9178d6fe36227195fabc232909452af65f494580c95e10541d1f377c0a7bd49
Droppersfrompostalsites8bc189dee0a71b3a8a1767e95cc726e13808ed7d2e9546a9d6b6843cea5eb3bda4b0615cb639607e6905437dd900c059
Droppersfrompostalsites048621ecf8f25133b2b09d512bb0fe15fc274ec7cb2ccc966aeb44d7a88beb5b07e99b2f572b84af5c4504c23f1653bb
Droppersfrompostalsitesaa23a93d2fed81daacb93ea7ad633426e04fcd063ff2ea6c0af5649c6cfa03851927a80cd45f0d27b1ae034c11ddedb0
Droppersfrompostalsitesc66955f667e9045ea5591ebf9b59246ad86227f174ea817d1398815a292b8c88579ad4a596602a10b7cf4659b6b6909d
Droppersfrompostalsitesd6f126ab387f1d856672c730991573385c5746c7c84738ab97b13c897063ff4ae64eb8b571f655b744c9154d8032caef
Dropperswdecoy61dd8b60ac35e91771d9ed4f337cd63e0aa6d0a0c5a17bb28cac59b3c21c24a9d755e52ba5658a639c778c22d1a906a3
Dropperswdecoy4328b06093a4ad01f828dc837053cb058fe00f3a7fd5cfb9d1ff7feb7ebb8e32b4d909077aa25f31386722e716a5305c
Dropperswdecoy15760f0979f2ba1b4d991f19e8b59fc1e61632fcc88755a4d147c0f5d47965c5fc4b285088413127b6d827656b9d0481
Dropperswdecoyb9c285f485421177e616a148410ddc5b02e43f0af375d3141b7e829f7d487bfd73e7ee83133a175b815059f1af79ab1b
Dropperswdecoycf3b0d8e9a7d0ad32351ade0c52de583b5ca2f72e5af4adbf638c81f4ad8fbcbeebbcb1ed5f5606aec296168dee39166
Dropperswdecoydbc1b98b1df1d9c2dc8a5635682ed44a91df6359264ed63370724afa9f19c7ee5a24a7370f35dbdbb81adf52e769a442
FakeTrueCryptextractedexe4c01ffcc90e6271374b34b252fefb5d6fffda29f6ad645a879a159f78e095979b64dbe5817b24d17a0404e9b2606ad96
FakeTrueCryptextractedexe5de8c04a77e37dc1860da490453085506f8aa378fbc7d811128694d8581b89ba7ca6101c2ae4838fbbd7ceb0b2354e43
FakeTrueCryptextractedexe73aae05fab96290cabbe4b0ec561d2f6d79da71834509c4b1f4b9ae714159b42f64704ed25f4c728af996eee3ee85411
FakeTrueCryptextractedexec7212d249b5eb7e2cea948a173ce96e1d2b8c44dcc2bb1d101dce64bb3f5beccc1f715ff0afc78af81d215d485cc235c
FakeTrueCryptSetup42028874fae37ad9dc89eb37149ecb1e6439869918309a07f056924c1b981deff34b77f7b2233ee6f727d59fb28f438a
FakeTrueCryptSetupa3a43bbc69e24c0bc3ab06fbf3ccc35cf8687e2862f86fb0d269258b68c710c9babd17701cbe876149dc07e68ec7ca4f
FakeTrueCryptSetupb8844e5b72971fe67d2905e77ddaa3366ae1c3bead92be6effd58691bc1ff8eccfc8901fe6a9a8299087bfc73ae8909e
FakeTrueCryptSetupfe3547f0e052c71f872bf09cdc1654137ee68f878fc6d5a78df16a13e6de176883f3ec97a95595ebe40a75e94c98a7bd
OtherDroppers2de76a3c07344ce322151dbb42febdff97ade8176466a3af07e5280bd859a18638e708fea8016520cb25d3cb933f2244
OtherDroppers4e88b8b121d768c611fe16ae1f008502b2191edc6f2ee84fef7b12b4d86fe000360df4c2f2b99052c07e08edbe15ab2c
OtherDroppers29dfc81b400a1400782623c618cb1d507f5d17bb13de44f123a333093648048f89a3ea3967745e04199ebf222494452e
OtherDroppers97afe4b12a9fed40ad20ab191ba0a577f5a46cbfb307e118a7ae69d04adc2e2d6ba88e8e74b12c914483c026ae92eb42
OtherDroppers793a8ce811f423dfde47a5f44ae50e19e7e41ad055e56c7345927eac951e966b043f99a875424ca0023a21739dba51ef
OtherDroppers904bb2efe661f654425e691b7748556e558a636d4f25c43af9d2d4dfbe83262e02d438df779affddaf02ca995c60cecb
OtherDroppersb62589ee5ba94d15edcf8613e3d57255dd7a12fce6d2dbd660fd7281ce6234f411b4e7ea6bae19a29343ae3ff3fb00ca
OtherDroppersd2c11706736fda2b178ac388206472fd8d050e0f13568c84b37683423acd155d27d74523b182ae630c4e5236897e11f3
OtherDroppersf1f61a0f9488be3925665f8063006f90fab1bf0bd0b6ff5f7799f8995ff8960e1ab8d45656e245aca4e59aa0519f6ba0
USBSpreaders1acae7c11fb559b81df5fc6d0df0fe502e87f674ca9f4aefc2d7d8f828ba7f5c76dda7ca15323fd658054e0550149b7b
USBSpreaders3d78f52fa0c08d8bf3d42074bf76ee56aa233fb9a6bc76119998d085d94368caca1a3618088f91b8fb2a30c9a9aa4aca
USBSpreaders7d15bd854c1dfef847cdd3caabdf4ab81f2410ee5c7f91d377cc72eb81135ff4a2bb01b764491dd61fa3a7ba5afc709c
USBSpreaders09c04206b57bb8582faffb37e4ebb6867a02492ffc08268bcbc717708d1a8919a59053cc3f66e72540634eb7895824ac
USBSpreaders12bb18fa9a12cb89dea3733b342940b80cd453886390079cb4c2ffcd664baeda2bd0d2b5ee4e93717ea71445b102e38e
USBSpreaders34e6fb074284e58ca80961feda4fe651d6d658077914a528a4a6efa91ecc749d057028e46ea797834da401e4db7c860a
USBSpreaders90b20b1687909c2f76f750ba3fd4b14731ce736c08c3a8608d28eae3f4cd68f3514423670de210f13092d6cb8916748e
USBSpreaders93accb71bf4e776955756c76990298decfebe4b1dd9fbf9d368e81dc1cb9532dabb9f4fab64dd7a03574abdd1076b5ea
USBSpreaders99a09ad92cc1a2564f3051057383cb6268893bc4a62903eabf3538c6bfb3aa9c542b00f903f945ad3a9291cb0af73446
USBSpreaders339a5199e6d0b5f781b08b2ca0ad0495e75e52b8e2fd69e1d970388fbca7a0d6a427ff7abb17af6cf5fb70c49e9bf4e1
USBSpreaders340b09d661a6ac45af53c348a5c1846ad6323d34311e66454e46c1d38d53af8b2646f7159e1723f089d63e08c8bfaffb
USBSpreaders461dd5a58ffcad9fffba9181e234f2e0149c8b8ba28c7ea53753c74fdfa0b0d5609abb2a86c324bbb9ba1e253595e573
USBSpreaders4688afcc161603bfa1c997b6d71b9618be96f9ff980e5486c451b1cc2c5076cbae552fc43f1ba8684655d8bf8c6af869
USBSpreaders7492e84a30e890ebe3ca5140ad547965cc8c43f0a02f66be153b038a73ee53141234bf4f0f5debc800d85c1bd2255671
USBSpreaders61862a55dcf8212ce9dd4a8f0c92447a6c7093681c592eb937a247e38c8109d4e685ea8b37f707f3706d7281b8f6816a
USBSpreaders95631685006ac92b7eb0755274e2a36a3c9058cf462dd46f9f4f66e8d67b9db29179f4683ece450c1ac7a819b32bdb6d
USBSpreadersb8b02cc57e45bcf500b433806e6a4f8af7f0ac0c5fc9adfd11820eebf4eb5d79cdc60eb93b594fb5e7e5895e2b441240
USBSpreaderse57eb9f7fdf3f0e90b1755d947f1fe7bb65e67308f1f4a8c25bc2946512934b739b67cc6dae5214328022c44f28ced8b
USBSpreaderse3892d2d9f87ea848477529458d025898b24a6802eb4df13e96b0314334635d03813b848162261cc5982dd64c741b450
USBSpreadersf1d7e36af4c30bf3d680c87bbc4430de282d00323bf8ae9e17b04862af28673635724e234f6258e601257fb219db9079


More information


  1. Pentest Tools Nmap
  2. Hacker Tools Software
  3. New Hacker Tools
  4. Hacking Tools Pc
  5. Hacking Tools 2019
  6. Hacking Tools For Windows
  7. Hacker Tools Free
  8. Pentest Tools Port Scanner
  9. Hacker Tools Free Download
  10. Hack Tools 2019
  11. Pentest Tools Tcp Port Scanner
  12. Hacker Tools List
  13. Tools For Hacker
  14. Hacker Tools Windows
  15. Growth Hacker Tools
  16. Hacking Tools Online
  17. Hacking Tools For Windows Free Download
  18. Hack Tools For Ubuntu
  19. Hack Tools For Ubuntu
  20. Hacking Tools 2019
  21. Growth Hacker Tools
  22. Hacking Tools For Kali Linux
  23. New Hack Tools
  24. Hacking Tools Pc
  25. Pentest Tools Port Scanner
  26. Tools 4 Hack
  27. Tools 4 Hack
  28. Hacking Tools Usb
  29. Hacker Tools Windows
  30. Hack App
  31. Pentest Tools Port Scanner
  32. Pentest Tools Nmap
  33. Kik Hack Tools
  34. Hack Tools For Pc
  35. Pentest Tools Port Scanner
  36. How To Hack
  37. Hak5 Tools
  38. Hacking Tools 2019
  39. Hack Tools For Games
  40. Hack Tools For Pc
  41. Kik Hack Tools
  42. Pentest Tools Github
  43. Pentest Recon Tools
  44. Pentest Tools Github
  45. Hacking Tools For Beginners
  46. Kik Hack Tools
  47. Hacker Tools Free
  48. Pentest Reporting Tools
  49. Pentest Tools Find Subdomains
  50. Hacks And Tools
  51. Hacking Tools Windows
  52. Free Pentest Tools For Windows
  53. Pentest Tools Apk
  54. Wifi Hacker Tools For Windows
  55. Hacking Tools For Kali Linux
  56. Pentest Tools Url Fuzzer
  57. Pentest Automation Tools
  58. Pentest Tools For Android
  59. New Hacker Tools
  60. Pentest Tools Url Fuzzer
  61. Hacker Tools Windows
  62. Hack Tools Online
  63. Hack Apps
  64. Hack Tools Github
  65. Black Hat Hacker Tools
  66. Hack Tool Apk
  67. Hacker Security Tools
  68. Top Pentest Tools
  69. Hack Tools For Mac
  70. Nsa Hack Tools
  71. New Hack Tools
  72. Hacker Tools Free Download
  73. Pentest Tools Download
  74. Tools For Hacker
  75. Pentest Tools Apk
  76. Hackrf Tools
  77. Black Hat Hacker Tools
  78. Hacker Techniques Tools And Incident Handling
  79. Hack Tools Online
  80. Pentest Tools Tcp Port Scanner
  81. Pentest Tools Subdomain
  82. Pentest Tools For Windows
  83. Hacking Tools Hardware
  84. New Hack Tools
  85. Hackrf Tools
  86. Tools For Hacker
  87. New Hacker Tools
  88. Pentest Tools Find Subdomains
  89. Pentest Tools
  90. Pentest Tools Website Vulnerability
  91. Hacking Tools For Games
  92. Hacking Tools For Kali Linux
  93. Pentest Tools Find Subdomains
  94. Hacking App
  95. Hacker Tools Mac
  96. Hacker Tools For Windows
  97. Tools 4 Hack
  98. Underground Hacker Sites
  99. Pentest Automation Tools
  100. Hacking Tools Hardware
  101. Pentest Tools For Ubuntu
  102. Ethical Hacker Tools
  103. How To Hack
  104. Pentest Tools Nmap

PHASES OF HACKING

What is the process of hacking or phases of hacking?
Hacking is broken up into six phases:The more you get close to all phases,the more stealth will be your attack.

1-Reconnaissance-This is the primary phase of hacking where hacker tries to collect as much as information as possible about the target.It includes identifying the target,domain name registration records of the target, mail server records,DNS records.The tools that are widely used in the process is NMAP,Hping,Maltego, and Google Dorks.

2-Scanning-This makes up the base of hacking! This is where planning for attack actually begins! The tools used in this process are Nessus,Nexpose,and NMAP. After reconnaissance the attacker scans the target for services running,open ports,firewall detection,finding out vulnerabilities,operating system detection.

3-Gaining Access-In this process the attacker executes the attack based on vulnerabilities which were identified during scanning!  After the successful, he get access to the target network or enter in to the system.The primary tools that is used in this process is Metasploit.

4-Maintaining Access-It is the process where the hacker has already gained access in to a system. After gaining access the hacker, the hacker installs some backdoors in order to enter in to the system when he needs access in this owned system in future. Metasploit is the preffered toll in this process.

5-Clearning track or Covering track-To avoid getting traced and caught,hacker clears all the tracks by clearing all kinds of logs and deleted the uploaded backdoor and anything in this process related stuff which may later reflect his presence!

6-Reporting-Reporting is the last step of finishing the ethical hacking process.Here the Ethical Hacker compiles a report with his findings and the job that was done such as the tools used,the success rate,vulnerabilities found,and the exploit process.
Related links
  1. Hacker Tools Free
  2. Hack Tools Mac
  3. Pentest Tools For Android
  4. Pentest Tools Nmap
  5. Hack Tools Github
  6. Bluetooth Hacking Tools Kali
  7. How To Install Pentest Tools In Ubuntu
  8. Pentest Tools Website
  9. Pentest Automation Tools
  10. Install Pentest Tools Ubuntu
  11. Hacker
  12. What Is Hacking Tools
  13. Hacking Tools For Beginners
  14. Free Pentest Tools For Windows
  15. Hack Tools Online
  16. Pentest Tools For Ubuntu
  17. Hack Tools For Windows
  18. Pentest Tools Github
  19. Blackhat Hacker Tools
  20. Pentest Tools Review
  21. Hacking Tools For Mac
  22. Hacker Tools Github
  23. Hacking Tools Free Download
  24. Tools Used For Hacking
  25. Pentest Tools Online
  26. Hacking Tools For Pc
  27. Hacking Tools Kit
  28. Install Pentest Tools Ubuntu
  29. Hacking Tools For Beginners
  30. Hacker Tools Hardware
  31. How To Hack
  32. Hackrf Tools
  33. Pentest Tools Subdomain
  34. Hack Tools Download
  35. Hacker
  36. Hacker Tools Apk
  37. Game Hacking
  38. How To Install Pentest Tools In Ubuntu
  39. Hacker Tools Online
  40. Bluetooth Hacking Tools Kali
  41. Hackers Toolbox
  42. Hacking Tools Github
  43. Hack Tools For Windows
  44. Hacker Tools Software
  45. Pentest Recon Tools
  46. Hacking Tools Pc
  47. Blackhat Hacker Tools
  48. Tools For Hacker
  49. Hacker Tools Software
  50. Hack Rom Tools
  51. Hack Tools
  52. Hacker Tools Github
  53. Black Hat Hacker Tools
  54. New Hacker Tools
  55. Growth Hacker Tools
  56. Hacker Tools For Ios
  57. Hacker Tools Online
  58. Hack Tools For Pc
  59. Hacker Tools 2020
  60. Hacker Tools For Mac
  61. Best Pentesting Tools 2018
  62. World No 1 Hacker Software
  63. Ethical Hacker Tools
  64. Hak5 Tools
  65. Hack Tools For Pc
  66. Pentest Tools Nmap
  67. Hacker
  68. Hack Website Online Tool
  69. Hack Tool Apk No Root
  70. Hack Tools Download
  71. Hacker Tools Software
  72. Tools 4 Hack
  73. Pentest Box Tools Download
  74. Pentest Tools Kali Linux
  75. Hack Tool Apk
  76. Hack Tools Download
  77. Hacker Tools Linux
  78. Best Hacking Tools 2019
  79. Hacker Search Tools
  80. Hack Tools Download
  81. Hack App
  82. Hack Tools For Games
  83. Hak5 Tools
  84. Hacking Tools Mac
  85. Pentest Tools Review
  86. Hacker Tools Mac
  87. Hacking Tools For Kali Linux
  88. Hacker Tools Apk Download
  89. Pentest Tools List
  90. Termux Hacking Tools 2019
  91. Pentest Recon Tools
  92. Pentest Box Tools Download
  93. Pentest Tools List
  94. Pentest Tools Open Source
  95. Hacker Search Tools
  96. Hack Tools
  97. Hacking Tools Online
  98. Hack App
  99. Bluetooth Hacking Tools Kali
  100. Free Pentest Tools For Windows
  101. Hacker Hardware Tools
  102. Pentest Tools Windows
  103. Hackers Toolbox
  104. Pentest Tools Tcp Port Scanner
  105. Nsa Hack Tools
  106. Hack Tools For Pc
  107. Hacker Tools Apk
  108. Hacker Tools Linux
  109. How To Make Hacking Tools
  110. Pentest Tools Android
  111. Hack Tools Online
  112. Pentest Reporting Tools
  113. Growth Hacker Tools
  114. Nsa Hacker Tools