Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- codeup
- 화학물질불법유통온라인감시단
- 연구모임
- 국가기록원
- HTML
- 불법유통
- 여행
- 불법유통근절
- 국정원
- 기타정보
- 12기
- 국가정보원
- UKPT
- webhacking
- nurisec
- 대외활동
- Los
- 경기팀
- 웹 해킹 입문
- PHP
- 도구모음
- Service
- MITRE ATT&CK
- 화학물질
- 파이썬
- 화학물질안전원
- 정보보안
- 프로젝트
- UKPT level
- suninatas
Archives
- Today
- Total
agencies
gpt 한테 코드 추상화(AST) 를 작성해달라고 요청을 했다. 본문
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_LENGTH 100
#define SUCCESS 0
#define ERROR -1
// 함수 선언
int add(int a, int b);
void print_message(const char *message);
void iterate_and_print(int *array, int size);
int factorial(int n);
int main() {
// 변수 선언
int num1 = 5;
int num2 = 10;
int result;
char message[MAX_LENGTH] = "Hello, World!";
// 함수 호출
result = add(num1, num2);
printf("Sum of %d and %d is %d\n", num1, num2, result);
print_message(message);
// 반복문 예제
int numbers[5] = {1, 2, 3, 4, 5};
iterate_and_print(numbers, 5);
// 조건문 예제
if (result > 10) {
printf("Result is greater than 10\n");
} else if (result == 10) {
printf("Result is exactly 10\n");
} else {
printf("Result is less than 10\n");
}
// 재귀 함수 호출
int fact = factorial(5);
printf("Factorial of 5 is %d\n", fact);
// 포인터 사용 예제
int *ptr = &result;
printf("Address of result: %p, Value: %d\n", (void*)ptr, *ptr);
// 전처리기 조건문
#ifdef DEBUG
printf("Debug mode is enabled\n");
#else
printf("Debug mode is disabled\n");
#endif
return SUCCESS;
}
// 두 정수를 더하는 함수
int add(int a, int b) {
return a + b;
}
// 문자열을 출력하는 함수
void print_message(const char *message) {
printf("Message: %s\n", message);
}
// 배열을 반복하면서 출력하는 함수
void iterate_and_print(int *array, int size) {
for (int i = 0; i < size; i++) {
printf("Element %d: %d\n", i, array[i]);
}
}
// 재귀적으로 팩토리얼을 계산하는 함수
int factorial(int n) {
if (n <= 1) return 1;
return n * factorial(n - 1);
}
이 코드를 추상화 하여
#VAR1<VAR2.VAR3>#VAR1<VAR4.VAR3>#VAR1<VAR5.VAR3>#VAR6#VAR7#VAR8-1intadd(VAR9,VAR10);VAR11(VAR12*VAR13);VAR14(VAR15*VAR16,VAR17);VAR18(VAR19);VAR20(){VAR21=VALUE1;VAR22=VALUE2;VAR23;VAR24[VAR25]=VAR26;VAR27=VAR28(VAR29,VAR30);VAR31(VAR32,VAR29,VAR30,VAR27);VAR33(VAR13);VAR34[VALUE1]={VALUE3,VALUE4,VALUE5,VALUE6,VALUE1};VAR35(VAR36,VALUE1);VAR37(VAR27>VALUE2){VAR31(VAR38);}VAR39(VAR27==VALUE2){VAR31(VAR40);}VAR41{VAR31(VAR42);}VAR43=VAR44(VALUE1);VAR31(VAR45,VAR46);VAR15*VAR47=&VAR27;VAR31(VAR48,(VAR49*)VAR47,*VAR47);#VAR50(VAR51);#VAR52(VAR53);#VAR54;}VAR55(VAR9,VAR10){VAR56+VAR57;}VAR11(VAR12*VAR13){VAR31(VAR58,VAR13);}VAR14(VAR15*VAR16,VAR17){VAR59(VAR60=VALUE7;VAR61<VAR62;VAR61++){VAR31(VAR63,VAR61,VAR16[VAR61]);}}VAR18(VAR19){VAR37(VAR64<=VALUE3)VAR65;VAR66*VAR44(VAR64-VALUE3);}
이렇게 나오도록 했다!
'Ⅲ. 정보보안' 카테고리의 다른 글
cvedetails에서 description 가지고 오기 (0) | 2024.11.13 |
---|---|
linevul + deepdfa 사전 준비 방법 (최종) (0) | 2024.11.06 |
deepdfa linevul 오류 해결 (1) | 2024.11.05 |
deepdfa linevul 데이터셋 만들기 (0) | 2024.11.02 |
DeepDFA + linevul 함께 결합하여 학습해보기 (0) | 2024.11.01 |