使用c语言调用python小结,使用c语言调用python小结

最近在做一个漏洞展示平台,攻击实现部分使用python实现,c语言实现部分使用libcli库做一个类似telnet的东东,回调函数run的时候调用python模块。针对c调用python,做个了小demo

python模块:demo.py

def print_arg(str):

print str

def add(a,b):

print 'a=', a

print 'b=', b

return a + b

class Class_A:

def __init__(self):

print "init"

def fun(self, str):

print 'hello', str

return str

class dedecms_get_webshell:

def __init__(self):

'''

'''

self._run = True

#must rewrite function

def check(self,site,port):

'''

'''

print "Exploiting Host:%s,Port:(%d)......" % (site,port)

flag = 1

if flag:

content={"flag":1,"content":"POST http://www.baidu.com/shell.php (cmd)"}

else:

content={"flag":0,"content":"POST http://www.baidu.com/shell.php (cmd)"}

return content

if __name__=="__main__":

site="www.baidu.com"

port=80

obj = dedecms_get_webshell()

ret=obj.check(site,port)

print ret

分析:

1. print_arg定义了一个传参的函数

2. add 定义了一个传如多个参数,且有返回值的函数

3. Class_A定义了一个类及类的一个方法fun(传参数,有返回值)

4. dedecms_get_webshell定一个了类及类的一个方法check(传多个参数,返回值是个元组)

下面使用c语言调用demo.py文件中的函数。

测试函数:

#include

int main(int argc, char* argv[])

{

test();

test1();

test2();

test3();

test4();

return 0;

}

逐个分析:

//导出当前环境变量

void getcurrent()

{

PyRun_SimpleString("import sys");

PyRun_SimpleString("sys.path.append('./')");

return;

}

1. 一个最基本的调用方式

void test()

{

Py_Initialize();//初始化python

PyRun_SimpleString("print 'hello python'");//直接运行python代码

Py_Finalize(); //释放python

return;

}

分析:直接运行python 代码,在调用的时候必须先做初始化操作(Py_Initialize),调用完后做清理工作(Py_Finalize)

2. 调用模块中的一个普通函数

void test1()

{

Py_Initialize();//初始化python

getcurrent();

PyObject *pModule = NULL, *pFunc = NULL, *pArg = NULL;

pModule = PyImport_ImportModule("demo");//引入模块

pFunc = PyObject_GetAttrString(pModule, "print_arg");//直接获取模块中的函数

pArg = Py_BuildValue("(s)", "hello_python"); //参数类型转换,传递一个字符串。将c/c++类型的字符串转换为python类型,元组中的python类型查看python文档

PyEval_CallObject(pFunc, pArg); //调用直接获得的函数,并传递参数

Py_Finalize(); //释放python

return;

}

分析:先引用模块(PyImport_ImportModule),然后获取模块中的函数(PyObject_GetAttrString),对c传入python 的参数做类型转换(Py_BuildValue("(s)","hello_python")),最后直接调用函数并传递参数(PyEval_CallObject)。

3. 调用模块中的一个函数(多参数,带返回值)

void test2()

{

Py_Initialize();

getcurrent();

PyObject *pModule = NULL, *pDict = NULL, *pFunc = NULL, *pArg = NULL, *result = NULL;

pModule = PyImport_ImportModule("demo"); //引入模块

pDict = PyModule_GetDict(pModule); //获取模块字典属性 //相当于Python模块对象的__dict__ 属性,得到模块名称空间下的字典对象

pFunc = PyDict_GetItemString(pDict, "add"); //从字典属性中获取函数

pArg = Py_BuildValue("(i, i)", 1, 2); //参数类型转换,传递两个整型参数

result = PyEval_CallObject(pFunc, pArg); //调用函数,并得到python类型的返回值

int sum;

PyArg_Parse(result, "i", &sum); //将python类型的返回值转换为c/c++类型

printf("sum=%d\n", sum);

Py_Finalize();

}

4. 调用模块中简单的一个类(单个返回值)

void test3()

{

Py_Initialize();

getcurrent();

PyObject *pModule = NULL, *pDict = NULL, *pClass = NULL, *pInstance = NULL, *result = NULL;

pModule = PyImport_ImportModule("demo"); //引入模块

pDict = PyModule_GetDict(pModule); //获取模块字典属性

pClass = PyDict_GetItemString(pDict, "Class_A"); //通过字典属性获取模块中的类

pInstance = PyInstance_New(pClass, NULL, NULL);//实例化获取的类

result = PyObject_CallMethod(pInstance, "fun", "(s)", "python_000"); //调用类的方法

char* name=NULL;

PyArg_Parse(result, "s", &name); //将python类型的返回值转换为c/c++类型

printf("%s\n", name);

Py_Finalize();

}

5. 调用模块中一个简单的类(返回值是个元组)

void test4()

{

Py_Initialize();

getcurrent();

PyObject *pModule = NULL, *pDict = NULL,*pClass = NULL, *pInstance = NULL, *result = NULL;

pModule =PyImport_ImportModule("demo"); //引入模块

pDict = PyModule_GetDict(pModule); //获取模块字典属性

pClass = PyDict_GetItemString(pDict,"dedecms_get_webshell"); //通过字典属性获取模块中的类

pInstance = PyInstance_New(pClass, NULL,NULL);

result = PyObject_CallMethod(pInstance,"check", "(s,i)", "www.baidu.com", 80);

int flag;

char*content = NULL;

PyObject *obj_content =PyDict_GetItemString(result, "content");

content = PyString_AsString(obj_content);

PyObject *obj_flag =PyDict_GetItemString(result, "flag");

flag = PyInt_AsLong(obj_flag);

printf("content: %s, flag: %d\n",content, flag);

Py_Finalize();

}

Makefile书写:

all: test

test: pytest.o

gcc -L/usr/lib/python2.7/ -lpython2.7 -ldl pytest.o -o test

pytest.o: pytest.c

gcc -g -std=gnu99 -Wall -c pytest.c -I/usr/include/python2.7/

clean:

@rm -rf *.o *.pyc test

针对python不同的版本,使用2.5,2.6等,库的路径参照安装的路径。

本打算展开多写些东西,结果草草完事。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
2022 / 01/ 30: 新版esptool 刷micropython固件指令不是 esptool.py cmd... 而是 esptool cmd... 即可;另外rshell 在 >= python 3.10 的时候出错解决方法可以查看:  已于2022年发布的: 第二章:修复rshell在python3.10出错 免费内容: https://edu.csdn.net/course/detail/29666 micropython语法和python3一样,编写起来非常方便。如果你快速入门单片机玩物联网而且像轻松实现各种功能,那绝力推荐使用micropython。方便易懂易学。 同时如果你懂C语音,也可以用C写好函数并编译进micropython固件里然后进入micropython调用(非必须)。 能通过WIFI联网(2.1章),也能通过sim卡使用2G/3G/4G/5G联网(4.5章)。 为实现语音控制,本教程会教大家使用tensorflow利用神经网络训练自己的语音模型并应用。为实现通过网页控制,本教程会教大家linux(debian10 nginx->uwsgi->python3->postgresql)网站前后台入门。为记录单片机传输过来的数据, 本教程会教大家入门数据库。  本教程会通过通俗易懂的比喻来讲解各种原理与思路,并手把手编写程序来实现各项功能。 本教程micropython版本是 2019年6月发布的1.11; 更多内容请看视频列表。  学习这门课程之前你需要至少掌握: 1: python3基础(变量, 循环, 函数, 常用库, 常用方法)。 本视频使用到的零件与淘宝上大致价格:     1: 超声波传感器(3)     2: MAX9814麦克风放大模块(8)     3: DHT22(15)     4: LED(0.1)     5: 8路5V低电平触发继电器(12)     6: HX1838红外接收模块(2)     7:红外发射管(0.1),HX1838红外接收板(1)     other: 电表, 排线, 面包板(2)*2,ESP32(28)  

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值