messy security notes
  • security is an illision
  • Useful Blog Links
  • Windows
    • ad-101
    • MS17-010
    • SMB
    • Post Exploitation Tricks
    • DCOM/RPC
    • Basic Commands
    • SMB Enumeration
  • Linux
    • SUID Set Edilmiş servicectl Abuse Etme
    • sudoers dosyası bozulursa?
    • SSH Welcome Message and Banner
    • pkexec ve pkttyagent
    • vipw , vigr , visudo
    • IP Forwarding
    • İki NIC Arasında Port Yönlendirme
    • tasksel
    • LAMP
    • Find All SUID Bit
    • Linux Operatorler
    • IFS
    • Ssh Public Key Tricks
    • Local & Remote Port Forwarding
    • Linux Priv Esc
    • Static IP
  • POST EXPLOITATION
    • from external network to domain admin
    • post exp 2
  • OSCP
  • Temel Komutlar ve Araçlar
  • Zayıf Servisler
  • Örnek Bir Senaryo
  • Parola Saldırıları
  • ms17-010 python exploit
  • Full Interactive Shell
  • Notes*
  • Apache James Server 2.3.2 Exploit
  • windows exploit suggester
  • FreeBsd and Some PHP tricks
  • fundamental blog
  • Metasoloit & Meterpreter & msfvenom
  • at-tftp server 1.9
  • Tunneling and Forwarding
  • Common Exploits
  • Windows Servisler
  • Execute process as another user
  • Teorik
    • Authentication and Authorization
    • Kullanıcı Hesap Türleri ve Hakları
    • Kerberos
  • SYSTEM
    • Apache2
    • Bind9 Log
    • apache - basic auth - proxy
  • Buffer Overflow - BOF
    • BOF - Stack Based
    • BoF Links
  • BASH SCRIPTING
    • Samples
  • keepnote
  • Docker
    • Docker
  • Misc
    • 50-cloud-init.yaml
Powered by GitBook
On this page

Was this helpful?

  1. Linux

İki NIC Arasında Port Yönlendirme

Paketlerin kernel tarafından yönlendirilmesini aktifleştirmek için;

# echo 1 > /proc/sys/net/ipv4/ip_forward

Yada aşağıdaki komut da eşdeğerdir,

net.ipv4.ip_forward = 1

Aşağıdaki komut ile eth0 interfacenin belirlenen ip'nin belirlenen portuna gelen trafiği diğer nic'de bulunan (yani private olan nic'in)dinamik nat ile belirlenen ip'nin belirnen portuna trafik yönlendirilecektir.

iptables -t nat -A PREROUTING -i eth0 -d 178.128.243.215 -p tcp --dport 8001 -j DNAT --to-destination 10.8.0.2:8001

Aşağıdaki komutla tüm kurallar listelenebilir.

iptables -t nat -L -n -v
PreviousIP ForwardingNexttasksel

Last updated 6 years ago

Was this helpful?