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 | 31 |
Tags
- miniconda
- ssh key 배포
- endpoint security
- centos 8
- Kibana server is not ready yet
- Kibana
- pfsense
- docker
- PlayBook
- bash
- Windows
- G-suite
- Proxy
- GitLab
- xe guest utilities
- ELASTIC
- 보안양파
- x-pack
- Elasticsearch
- 로그인불가
- elastic stack
- hardening
- ansible
- freebsd
- proxycfg
- macos
- application security
- XCP-ng
- 한글가이드
Archives
- Today
- Total
선 밖에 선 자유인
웹 로그에서 텍스트 추출 본문
테스트
#!/bin/bash num=1 result="result.txt" if [ -f $result ]; then rm -f ./$result fi for file in `cat file-list.txt` do type=`echo "$file" | awk -F "." '{print $2}'` count=`grep -c "$file" <로그파일>` pi='None' grep "$file" <로그파일> | awk -F " - - " '{print $1}' | sort -u > ip.txt arr=() for line in `cat ip.txt` do line=`echo $line | tr -d ','` arr+=($line) done src=${arr[@]} fullpath=`grep "$file" full-path-file.txt | sort -u` echo "$num|$file|$type|$count|$pi|$src|$fullpath" >> $result num=$((num+1)) done
Comments