2024-07-18 22:23:19 +00:00
# Linux 환경 변수
2022-04-28 16:01:33 +00:00
2024-07-18 22:23:19 +00:00
{% hint style="success" %}
AWS 해킹 배우기 및 연습하기:< img src = "/.gitbook/assets/arte.png" alt = "" data-size = "line" > [**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)< img src = "/.gitbook/assets/arte.png" alt = "" data-size = "line" > \
GCP 해킹 배우기 및 연습하기: < img src = "/.gitbook/assets/grte.png" alt = "" data-size = "line" > [**HackTricks Training GCP Red Team Expert (GRTE)**< img src = "/.gitbook/assets/grte.png" alt = "" data-size = "line" > ](https://training.hacktricks.xyz/courses/grte)
2022-04-28 16:01:33 +00:00
2024-07-18 22:23:19 +00:00
< details >
2022-04-28 16:01:33 +00:00
2024-07-18 22:23:19 +00:00
< summary > HackTricks 지원하기< / summary >
2024-02-02 12:19:57 +00:00
2024-07-18 22:23:19 +00:00
* [**구독 계획** ](https://github.com/sponsors/carlospolop ) 확인하기!
* **💬 [**Discord 그룹** ](https://discord.gg/hRep4RUj7f ) 또는 [**텔레그램 그룹** ](https://t.me/peass )에 참여하거나 **Twitter** 🐦 [**@hacktricks\_live** ](https://twitter.com/hacktricks\_live )**를 팔로우하세요.**
* **[**HackTricks**](https://github.com/carlospolop/hacktricks) 및 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) 깃허브 리포지토리에 PR을 제출하여 해킹 팁을 공유하세요.**
2022-04-28 16:01:33 +00:00
< / details >
2024-07-18 22:23:19 +00:00
{% endhint %}
2022-04-28 16:01:33 +00:00
2024-03-14 23:45:38 +00:00
**Try Hard Security Group**
< figure > < img src = "../.gitbook/assets/telegram-cloud-document-1-5159108904864449420.jpg" alt = "" > < figcaption > < / figcaption > < / figure >
{% embed url="https://discord.gg/tryhardsecurity" %}
***
2024-02-10 21:30:13 +00:00
## 전역 변수
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
전역 변수는 **자식 프로세스**에 의해 **상속됩니다** .
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
현재 세션을 위해 전역 변수를 생성하려면 다음을 수행하세요:
2020-07-15 15:43:14 +00:00
```bash
export MYGLOBAL="hello world"
echo $MYGLOBAL #Prints: hello world
```
2024-07-18 22:23:19 +00:00
이 변수는 현재 세션과 그 자식 프로세스에서 접근할 수 있습니다.
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
변수를 **제거**하려면 다음을 수행하십시오:
2020-07-15 15:43:14 +00:00
```bash
unset MYGLOBAL
```
2024-07-18 22:23:19 +00:00
## Local variables
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
**로컬 변수**는 **현재 셸/스크립트**에서만 **접근**할 수 있습니다.
2020-07-15 15:43:14 +00:00
```bash
LOCAL="my local"
echo $LOCAL
unset LOCAL
```
2024-02-10 21:30:13 +00:00
## 현재 변수 목록
2020-07-15 15:43:14 +00:00
```bash
set
env
printenv
cat /proc/$$/environ
cat /proc/`python -c "import os; print(os.getppid())"`/environ
```
2024-07-18 22:23:19 +00:00
## Common variables
2024-03-14 23:45:38 +00:00
From: [https://geek-university.com/linux/common-environment-variables/ ](https://geek-university.com/linux/common-environment-variables/ )
2024-07-18 22:23:19 +00:00
* **DISPLAY** – **X**에서 사용하는 디스플레이. 이 변수는 보통 ** :0.0**으로 설정되며, 이는 현재 컴퓨터의 첫 번째 디스플레이를 의미합니다.
2024-03-14 23:45:38 +00:00
* **EDITOR** – 사용자가 선호하는 텍스트 편집기.
* **HISTFILESIZE** – 히스토리 파일에 포함된 최대 라인 수.
2024-07-18 22:23:19 +00:00
* **HISTSIZE** – 사용자가 세션을 종료할 때 히스토리 파일에 추가되는 라인 수.
2024-05-05 22:46:17 +00:00
* **HOME** – 홈 디렉토리.
2024-03-14 23:45:38 +00:00
* **HOSTNAME** – 컴퓨터의 호스트 이름.
* **LANG** – 현재 언어.
2024-07-18 22:23:19 +00:00
* **MAIL** – 사용자의 메일 스풀 위치. 보통 ** /var/spool/mail/USER**.
2024-03-14 23:45:38 +00:00
* **MANPATH** – 매뉴얼 페이지를 검색할 디렉토리 목록.
2024-07-18 22:23:19 +00:00
* **OSTYPE** – 운영 체제의 유형.
2024-03-14 23:45:38 +00:00
* **PS1** – bash의 기본 프롬프트.
2024-07-18 22:23:19 +00:00
* **PATH** – 파일 이름만 지정하여 실행하고자 하는 바이너리 파일이 있는 모든 디렉토리의 경로를 저장합니다.
2024-03-14 23:45:38 +00:00
* **PWD** – 현재 작업 디렉토리.
* **SHELL** – 현재 명령 셸의 경로 (예: ** /bin/bash**).
* **TERM** – 현재 터미널 유형 (예: **xterm** ).
2024-07-18 22:23:19 +00:00
* **TZ** – 시간대.
2024-03-14 23:45:38 +00:00
* **USER** – 현재 사용자 이름.
2024-02-10 21:30:13 +00:00
2024-07-18 22:23:19 +00:00
## Interesting variables for hacking
2020-07-15 15:43:14 +00:00
2022-10-05 22:34:56 +00:00
### **HISTFILESIZE**
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
이 변수의 **값을 0으로 변경**하면, **세션을 종료할 때** **히스토리 파일** (\~/.bash\_history) **이 삭제됩니다** .
2020-07-15 15:43:14 +00:00
```bash
export HISTFILESIZE=0
```
2022-10-05 22:34:56 +00:00
### **HISTSIZE**
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
이 **변수의 값을 0으로 변경**하세요. 그러면 **세션을 종료할 때** 어떤 명령도 **히스토리 파일** (\~/.bash\_history)에 추가되지 않습니다.
2020-07-15 15:43:14 +00:00
```bash
export HISTSIZE=0
```
2023-01-18 13:30:35 +00:00
### http\_proxy & https\_proxy
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
프로세스는 **http 또는 https**를 통해 인터넷에 연결하기 위해 여기에서 선언된 **프록시**를 사용할 것입니다.
2020-07-15 15:43:14 +00:00
```bash
export http_proxy="http://10.10.10.10:8080"
2023-01-18 13:30:35 +00:00
export https_proxy="http://10.10.10.10:8080"
2020-07-15 15:43:14 +00:00
```
2023-01-18 13:30:35 +00:00
### SSL\_CERT\_FILE & SSL\_CERT\_DIR
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
프로세스는 **이 환경 변수**에 표시된 인증서를 신뢰합니다.
2020-07-15 15:43:14 +00:00
```bash
2023-01-18 13:30:35 +00:00
export SSL_CERT_FILE=/path/to/ca-bundle.pem
export SSL_CERT_DIR=/path/to/ca-certificates
2020-07-15 15:43:14 +00:00
```
2022-10-05 22:34:56 +00:00
### PS1
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
프롬프트 모양을 변경합니다.
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
[**예시입니다** ](https://gist.github.com/carlospolop/43f7cd50f3deea972439af3222b68808 )
2020-07-15 15:43:14 +00:00
2024-03-14 23:45:38 +00:00
루트:
2020-07-15 15:43:14 +00:00
2024-05-05 22:46:17 +00:00
![](< .. / . gitbook / assets / image ( 897 ) . png > )
2020-07-15 15:43:14 +00:00
2024-02-10 21:30:13 +00:00
일반 사용자:
2020-07-15 15:43:14 +00:00
2024-05-05 22:46:17 +00:00
![](< .. / . gitbook / assets / image ( 740 ) . png > )
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
백그라운드 작업이 하나, 둘, 셋:
2020-07-15 15:43:14 +00:00
2024-05-05 22:46:17 +00:00
![](< .. / . gitbook / assets / image ( 145 ) . png > )
2020-07-15 15:43:14 +00:00
2024-07-18 22:23:19 +00:00
하나의 백그라운드 작업, 하나의 정지된 작업, 마지막 명령이 올바르게 완료되지 않음:
2020-07-15 15:43:14 +00:00
2024-05-05 22:46:17 +00:00
![](< .. / . gitbook / assets / image ( 715 ) . png > )
2022-04-28 16:01:33 +00:00
2024-03-14 23:45:38 +00:00
**Try Hard Security Group**
< figure > < img src = "../.gitbook/assets/telegram-cloud-document-1-5159108904864449420.jpg" alt = "" > < figcaption > < / figcaption > < / figure >
{% embed url="https://discord.gg/tryhardsecurity" %}
2024-07-18 22:23:19 +00:00
{% hint style="success" %}
AWS 해킹 배우기 및 연습하기:< img src = "/.gitbook/assets/arte.png" alt = "" data-size = "line" > [**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)< img src = "/.gitbook/assets/arte.png" alt = "" data-size = "line" > \
GCP 해킹 배우기 및 연습하기: < img src = "/.gitbook/assets/grte.png" alt = "" data-size = "line" > [**HackTricks Training GCP Red Team Expert (GRTE)**< img src = "/.gitbook/assets/grte.png" alt = "" data-size = "line" > ](https://training.hacktricks.xyz/courses/grte)
2022-04-28 16:01:33 +00:00
2024-07-18 22:23:19 +00:00
< details >
2022-04-28 16:01:33 +00:00
2024-07-18 22:23:19 +00:00
< summary > HackTricks 지원하기< / summary >
2024-02-02 12:19:57 +00:00
2024-07-18 22:23:19 +00:00
* [**구독 계획** ](https://github.com/sponsors/carlospolop ) 확인하기!
* **💬 [**Discord 그룹** ](https://discord.gg/hRep4RUj7f ) 또는 [**텔레그램 그룹** ](https://t.me/peass )에 참여하거나 **Twitter** 🐦 [**@hacktricks\_live** ](https://twitter.com/hacktricks\_live )**를 팔로우하세요.**
* **[**HackTricks**](https://github.com/carlospolop/hacktricks) 및 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) 깃허브 리포에 PR을 제출하여 해킹 팁을 공유하세요.**
2022-04-28 16:01:33 +00:00
< / details >
2024-07-18 22:23:19 +00:00
{% endhint %}