shell hack - inode table full
956 단어 shell
a shell script, that create folder recusively,
it don't take much disk space, but it will use up inode table, after that you can't create new folder/file,
play it, but don't fucked yourself with it ...
------
code
hack_inode_full.sh:
#! /bin/bash
# a bad and malicious program to create folder recursively,
# if you change the loop to infinite, then it will use up the inode of disk, and it is so deep recurisive that you can't even use 'rm -rf' to remove the folder,you can only write another program to remove folder from inner to top,
# define the deepth
declare n=5
echo -e "total deep:\t $n"
cd /tmp
while [ $n -gt 0 ];do
mkdir adir
cd adir
touch afile
n=$(($n-1))
done
exit 0
------
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ZSH에서 물고기까지ZSH는 수년 동안 내 기본 셸이었습니다. 이제 몇 달 동안 사용하면서 ZSH 구성에 대해 몇 가지 사항을 발견했습니다. 우리는 을 제공하는 시스템과 더 빨리 상호 작용하는 경향이 있습니다. 내.zshrc 구성에는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.