Views 7193 Votes 0 Comment 0
Atachment
Attachment '1'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
로그 파일과 같은 특정 파일의 최근 액세스 시간 정보를 맘대로 수정해서 해킹(공격)을 탐지하게 어렵게 할 수 있음 ㅋㅋ

inode 정보 수정하는 내용을 주로 설명함~
아래는 헤더파일과 대충의 내용~

/*
* 프로그램 : inodehack (inode의 값을 수정하여 ATIME, MTIME, CTIME 변경)
* 설치방법 : make all
* 실행방법 : ./inodehack [filename1] [filename2] ...
* 날짜입력 : yyyy-mm-dd hh:mm:ss
*/

/*
* Header file
*/
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<sys/types.h>
#include<utime.h>
#include<sys/stat.h>
#include<string.h>
#include<time.h>
#include<sys/time.h>

#define MAX_BUF_SIZE 64

/* file 의 정보를 읽어서 atime, mtime, ctime 을 t[] 배열에 반환 */
void get_info(char *file, struct stat *st, time_t *t);

/* 실행 시 입력받은 문자열을 timeval 구조체에 입력하여 반환 */
struct timeval str2timeval(char *s);

/* atime, mtime, ctime 을 수정, flag를 두어 어떤 time을 수정할 것인지 판단 */
void set_amc(const char *file, struct timeval *set, struct stat st, unsigned char flag);

?

  1. [ios] TextField 특정 문자만 사용하도록 하기

    Date2014.06.30 CategoryDevelop Byhooni Views2673
    Read More
  2. [js] show/hide 이벤트 감시 (Observing show/hide event)

    Date2021.02.03 CategoryDevelop Byhooni Views2577
    Read More
  3. [php][laravel] 라라벨 개발환경 세팅하기 (Mac, Window)

    Date2017.12.15 CategoryDevelop Byhooni Views2574
    Read More
  4. [php] Laravel 4. twitter bootstrap 적용하기

    Date2018.04.05 CategoryDevelop Byhooni Views2539
    Read More
  5. [js] Javascript로 만든 포트리스 (2010)

    Date2017.03.03 CategoryDevelop Byhooni Views2499
    Read More
  6. [php] Laravel Route에서 PC/Mobile 분기

    Date2018.01.24 CategoryDevelop Byhooni Views2464
    Read More
  7. [js] jQuery, Javascript 모바일(스마트폰) 판단하는 방법

    Date2015.04.26 CategoryDevelop Byhooni Views2449
    Read More
  8. [php][laravel] 라라벨 프로젝트 생성 및 구조

    Date2017.12.15 CategoryDevelop Byhooni Views2378
    Read More
  9. [펌] 게임 엔진 만든거 공개합니다.

    Date2015.02.21 CategoryDevelop Byhooni Views2350
    Read More
  10. [ios] iOS앱의 Xcode 빌드 과정

    Date2015.01.03 CategoryDevelop Byhooni Views2273
    Read More
  11. [c] 셀프 넘버(Self Number) 구하기

    Date2016.09.09 CategoryDevelop Byhooni Views2258
    Read More
  12. XML, JSON, BSON, MSGPACK 장,단점 비교

    Date2017.01.11 CategoryDevelop Byhooni Views2239
    Read More
  13. [java] netty (비동기 이벤트 방식 네트워크 프레임워크) 사용법 #1 (server)

    Date2015.01.02 CategoryDevelop Byhooni Views2212
    Read More
  14. [c#] BHO 한샘툴바랑 동현툴바..

    Date2013.04.23 CategoryDevelop Byhooni Views2208
    Read More
  15. [android] 버전 별 앱 알림 설정으로 이동하는 방법

    Date2016.11.28 CategoryDevelop Byhooni Views2157
    Read More
  16. [c#] 툴바 최근 버전(IE6, IE7 두가지 버전)

    Date2013.04.23 CategoryDevelop Byhooni Views2138
    Read More
Board Pagination Prev 1 ... 41 42 43 44 45 ... 53 Next
/ 53