码迷,mamicode.com
首页 >  
搜索关键字:argv    ( 3650个结果
Kali2020 在使用pwngdb时,gdbscript无法加载的问题。
vi /home/kali/.local/lib/python3.8/site-packages/pwnlib/util/misc.py # 在Launching a new terminal 这一行后面添加 argv = argv[:-1] + [x.strip('"') for x in arg ...
分类:数据库   时间:2020-07-03 23:01:36    阅读次数:139
练习17--更多文件
一 相关知识 1 exists命令: 功能:基于一个字符串里面的变量文件名来判断文件是否存在,如果存在,返回 True ;不存在,返回 False 。 注意:在脚本中使用该命令需要导入:from os.path import exists 2 cat命令 功能:用于连接文件并打印到标准输出设备上。 ...
分类:其他好文   时间:2020-07-03 09:11:31    阅读次数:64
快速搭建服务器
var url = require("url"), fs = require("fs"), http = require("http"), path = require("path"); var port = 8080 // 默认检测80端口 if (process.argv[2] '-p') { ...
分类:其他好文   时间:2020-07-02 18:25:45    阅读次数:62
mutable
int m=9;struct C{ int f() const{ return ++e; }private: mutable int e; static int d;};int C::d = 2;int main(int argc, char *argv[]){ int c = 4; std::co ...
分类:其他好文   时间:2020-06-30 17:41:54    阅读次数:52
argc AND argv[0]
reference: http://crasseux.com/books/ctutorial/argc-and-argv.html argc stands for argument counts. the "v" of argv[] stands for vector, and argv stand ...
分类:其他好文   时间:2020-06-26 20:16:17    阅读次数:44
strstr函数的使用
例://找出字符串中所有的is //找出字符串中所有的is #include <stdio.h> #include <string.h> int main(int argc, char const *argv[]) { char s[200] = "Work is like a capricious ...
分类:其他好文   时间:2020-06-26 19:57:51    阅读次数:63
LoodLocalFonts
int _tmain(int argc, _TCHAR* argv[]) { HINSTANCE sdklib = NULL; sdklib = LoadLibrary(L"C:\\dll\\ext-ms-win-ntuser-private-l1-1-1.dll"); if (!sdklib) { ...
分类:其他好文   时间:2020-06-24 20:08:31    阅读次数:67
配置文件读取(2-2)读取yml
基本模块 yml内容 %YAML:1.0 ImagePath:"data/image/image0" CornerPath:"data/corners.txt" MapPath:"data/xml/" static int parseCmdArgs(int argc, char** argv) // ...
分类:其他好文   时间:2020-06-24 00:38:36    阅读次数:59
攻防世界-reverse-reverse-for-the-holy-grail-350
拖到linux中调试 IDA中查看主函数 int __cdecl main(int argc, const char **argv, const char **envp) { int v3; // ebx int v4; // ebx __int64 v5; // rbx void *v7; // ...
分类:其他好文   时间:2020-06-22 23:29:57    阅读次数:121
攻防世界-reverse-easy_Maze
题目已经提示是迷宫问题,首先查看主函数 int __cdecl main(int argc, const char **argv, const char **envp) { __int64 v3; // rax int v5[7]; // [rsp+0h] [rbp-270h] int v6; // ...
分类:其他好文   时间:2020-06-20 15:44:59    阅读次数:50
3650条   上一页 1 ... 6 7 8 9 10 ... 365 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!