This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## CVE-2023-6345 요약 | |
**🇰🇷 NVD에서 CVE-2023-6345에 대한 정보를 알려드립니다!** | |
**✨ 주요 내용:** | |
* 🚨 **취약점:** Google Chrome의 Skia에서 발생하는 정수 오버플로우 취약점 | |
* 🔍 **영향:** 공격자가 악성 파일을 이용하여 렌더러 프로세스를 손상시키고 샌드박스 탈출을 시도할 수 있습니다. | |
* 🛡️ **심각도:** 높음 (Chromium 보안 심각도) | |
* 📈 **CVSS 점수:** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/expect -f | |
set timeout 3 | |
#log_user 1 | |
spawn ./test | |
expect "Enter command - start, stop or quit" | |
send "start\r" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo systemctl daemon-reload | |
sudo systemctl start jenkins | |
sudo systemctl status jenkins | |
binary로 다운로드시 daemon으로 구성해서 자동 관리 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo date --set "$(ssh 계정@127.0.0.1 'date -u')"` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -z "$1" ]; then | |
echo "Error: labal app name is not specified." | |
exit 1 | |
fi | |
if [ -z "$2" ]; then | |
echo "Error : zone is not specified." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.8' | |
services: | |
prometheus: | |
image: prom/prometheus:v2.40.7 | |
command: | |
- --web.enable-remote-write-receiver | |
- --enable-feature=native-histograms | |
- --config.file=/etc/prometheus/prometheus.yml | |
ports: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
address: tcp://clickhouse:9000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
clickhouse: | |
image: yandex/clickhouse-server:21 | |
ports: | |
- "8123:8123" | |
- "9000:9000" | |
- "9009:9009" | |
- "9363:9363" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
receivers: | |
otlp: | |
protocols: | |
grpc: | |
exporters: | |
logging: | |
zipkin: | |
endpoint: "http://zipkin-all-in-one:9411/api/v2/spans" |
NewerOlder