Skip to content

Instantly share code, notes, and snippets.

View izfsk-ium's full-sized avatar
💭
I may be slow to respond.

izfsk izfsk-ium

💭
I may be slow to respond.
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
html {
background-image: url(https://w.wallhaven.cc/full/we/wallhaven-wex3l7.jpg);
background-size: cover;
}
@izfsk-ium
izfsk-ium / readELF.c
Last active December 24, 2022 09:01
读取 ELF 文件的段表字符串表
#include <stdio.h>
#include <elf.h>
#include <string.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
FILE *fp = fopen("test", "rb");
if (fp == NULL)
{