Skip to main content

A python native module providing some spyware function on Windows.

Project description

Neaky

Make python a Windows spyware.

features:

  • clipboard - get clipboard content.
  • screenshot - save screenshot to path
  • remote_dll_injection, get_pid_by_name, get_pids_by_name
  • set_startup_reg, delete_startup_reg - add startup registry key.
  • keylog_stdout, keylog_to_file, keylog_stop - keylogging by rawinput
  • elevate_self, elevated_execute - elevate from admin to system
  • bypass_uac_exec - elevate from uac restricted token to full token

example

see test/

keylogger

keylogger requires a message loop on main thread, so when finishing initiliaze, it's required to call neaky.message_loop() to start keylogging, which normally will not return and cannot be terminated by Exceptions like Ctrl-C. you have to do other stuffs by creating another thread. See test/keylog_raw_file as an example. To stop, use task manager to end task. when stopping raw input keylogger, message loop will return. Which will result in main thread exiting if there is not code after message_loop in main thread. This is because raw input keylogger creates a invisible window, when the keylogger stops, it destroys the window.

install

pip install neaky

build

(on Windows)

python ./setup.py build

add module to pythonpath

import sys
sys.path.append(r"C:\Users\warren\d\pyNeaky\pyneaky\build\lib.win-amd64-3.9")

目标

原本该模块是作为一个c语言dll存在,通过判断被植入的exe,单个dll实现各种不同功能,包括注入到任务管理器实现进程隐藏,启动时自动提权到能提权的最高程度等等,通过rundll32.exe启动从而勉强算是有微软签名的程序。这些都是作为dll的优点,然而如果作为python的拓展,则必须依附于python.exe。因此这里只提供部分功能,上述功能的实现考虑通过编写另外的dll,利用本拓展提供的dll注入功能注入。

  • 一个独立的hook进程信息的dll - taskmgr-hook

  • 一个提权小dll,用python CFFI 调用, 用于先提权后执行命令, 方便双重提权,控制台控制是bypass uac,system还是组合。

笔记

Coding Patterns for Python Extensions 这本书不错

twine upload --repository testpypi dist/* ````

下载下来试试

```cmd

python -m pip install --index-url https://test.pypi.org/simple/ neaky python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple neaky


    最后上传到真正的pypi仓库!!

twine upload dist/*
```

一个残忍的现实是,一旦上传了某个版本到pypi,就无法再覆盖了,它将永远占用该版本号。可以通过增加build tag(如从1.0.0变为1.0.0-1)(似乎只需要重命名whl?)的方法。而且`Only one sdist may be uploaded per release.` sdist无法通过build tag的方式重新上传。

总之上传起来还是要慎重。感受到了什么是版本发布了。
  • python docstring

    python的docstring是基于reStructuredText ,并且使用了Sphinx工具集拓展了一些功能。

    docstring内联代码 Sphinx相关语法 docstring formats on stackoverflow 我使用三个反引号注明python的markdown代码块可以用,似乎vscode还是通过markdown渲染的,而并不是支持推荐的docstring写法。。。因此有时只插入一个换行会导致没有换行。

    此外似乎vscode会把正文中第一对括号识别成参数。。。

    vscode把docstring作为markdown渲染

    Computes the distance from the origin to the point (x, y)
    
    :param x: the point's x-coordinate
    :param y: the point's y-coordinate
    :return: number. the distance from (0, 0) to the point (x, y)
    

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

neaky-1.0.0.tar.gz (27.1 kB view hashes)

Uploaded Source

Built Distributions

neaky-1.0.0-pp37-pypy37_pp73-win32.whl (26.1 kB view hashes)

Uploaded PyPy Windows x86

neaky-1.0.0-pp36-pypy36_pp73-win32.whl (26.1 kB view hashes)

Uploaded PyPy Windows x86

neaky-1.0.0-cp39-cp39-win_amd64.whl (29.2 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

neaky-1.0.0-cp39-cp39-win32.whl (26.1 kB view hashes)

Uploaded CPython 3.9 Windows x86

neaky-1.0.0-cp38-cp38-win_amd64.whl (29.3 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

neaky-1.0.0-cp38-cp38-win32.whl (26.2 kB view hashes)

Uploaded CPython 3.8 Windows x86

neaky-1.0.0-cp37-cp37m-win_amd64.whl (29.1 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

neaky-1.0.0-cp37-cp37m-win32.whl (26.1 kB view hashes)

Uploaded CPython 3.7m Windows x86

neaky-1.0.0-cp36-cp36m-win_amd64.whl (29.1 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

neaky-1.0.0-cp36-cp36m-win32.whl (26.1 kB view hashes)

Uploaded CPython 3.6m Windows x86

neaky-1.0.0-cp35-cp35m-win_amd64.whl (29.1 kB view hashes)

Uploaded CPython 3.5m Windows x86-64

neaky-1.0.0-cp35-cp35m-win32.whl (26.1 kB view hashes)

Uploaded CPython 3.5m Windows x86

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page