Skip to content

Commit

Permalink
Site updated: 2024-12-19 14:50:44
Browse files Browse the repository at this point in the history
  • Loading branch information
k3ppf0r committed Dec 19, 2024
1 parent 657dab2 commit 64e9504
Show file tree
Hide file tree
Showing 262 changed files with 63,002 additions and 0 deletions.
714 changes: 714 additions & 0 deletions 2000/10/25/杂/about-blog/index.html

Large diffs are not rendered by default.

712 changes: 712 additions & 0 deletions 2020/01/01/杂/docker配置/index.html

Large diffs are not rendered by default.

717 changes: 717 additions & 0 deletions 2020/01/01/杂/ubuntu配置/index.html

Large diffs are not rendered by default.

733 changes: 733 additions & 0 deletions 2020/01/01/杂/配置Phpstorm+phpstudy+xdebug/index.html

Large diffs are not rendered by default.

1,100 changes: 1,100 additions & 0 deletions 2020/01/01/编程/编程习惯与思想/index.html

Large diffs are not rendered by default.

822 changes: 822 additions & 0 deletions 2020/04/17/IOT安全/IOT安全资料集合/index.html

Large diffs are not rendered by default.

743 changes: 743 additions & 0 deletions 2022/02/04/基础/二进制数学/index.html

Large diffs are not rendered by default.

757 changes: 757 additions & 0 deletions 2022/02/04/基础/用户态程序的5保护/index.html

Large diffs are not rendered by default.

824 changes: 824 additions & 0 deletions 2022/05/03/基础/GDB指北/index.html

Large diffs are not rendered by default.

826 changes: 826 additions & 0 deletions 2022/05/04/基础/pwndbg调试技巧/index.html

Large diffs are not rendered by default.

762 changes: 762 additions & 0 deletions 2022/11/22/杂/常用安装/index.html

Large diffs are not rendered by default.

Binary file added 2022/11/23/PWN/Heap/Glibc_Heap_Exploit/OIP.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
758 changes: 758 additions & 0 deletions 2022/11/23/PWN/Heap/Glibc_Heap_Exploit/index.html

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 2022/11/23/PWN/Heap/Glibc_Heap_Exploit/test0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 2022/11/23/PWN/Heap/Glibc_Heap_Exploit/test1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 2022/11/23/PWN/Heap/Glibc_Heap_Exploit/test2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
758 changes: 758 additions & 0 deletions 2022/11/23/PWN/Heap/malloc源码分析/index.html

Large diffs are not rendered by default.

857 changes: 857 additions & 0 deletions 2022/12/11/Vulnerability/Knowledge/命令注入/index.html

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#include <stdio.h>
#include <stdlib.h>

#define MIB_IP_ADDR 170
#define MIB_HW_VER 0x250
#define MIB_CAPTCHA 0x2C1

int apmib_init(void)
{
return 1;
}

int fork(void)
{
return 0;
}

void apmib_get(int code, int* value)
{
switch(code)
{
case MIB_HW_VER:
*value = 0xF1;
break;
case MIB_IP_ADDR:
*value = 0x7F000001;
break;
case MIB_CAPTCHA:
*value = 1;
break;
}
}

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
963 changes: 963 additions & 0 deletions 2022/12/20/IOT安全/IOT固件分析入门/index.html

Large diffs are not rendered by default.

773 changes: 773 additions & 0 deletions 2023/01/24/IOT安全/固件仿真常用手段/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading

0 comments on commit 64e9504

Please sign in to comment.