Jump to content
babacu

Rog ajutor

Recommended Posts


#!/usr/bin/python
# Acesta este un exploit care va intra oriunde
# Autor: Penetration Tester
# Nume: exploiter care penetreaza versiune 25 cm
# 0-day , cross-platform
import time
import sys
from socket import *
print '[+] Asteapta cateva secunde...'
time.sleep(2)

serverhost = '127.0.0.1'
buffer = ['45 78 70 6c 6f 69 74','42 6f 6f 6d']

if len (sys.argv) > 1:
serverhost = sys.argv[1]
print '[+] Exploitul sa trezit , mai asteapta putin...'
time.sleep(2)

sSock = socket(AF_INET, SOCK_STREAM)
try:
sSock.connect((serverhost,222))
except:
print '[+] Exploitul penetreaza serverul astept un raspuns...'
time.sleep(2)

for word in buffer:
try:
sSock.send(word)
data = sSock.recv(1024)
except:
print '[+] Serverul e jos, mam terminat ies acum... '
time.sleep(2)
sSock.close()
sys.exit()

Edited by pyth0n3
Link to comment
Share on other sites


#!/usr/bin/python
# Acesta este un exploit care va intra oriunde
# Autor: Penetration Tester
# Nume: exploiter care penetreaza versiune 25 cm
# 0-day , cross-platform
import time
import sys
from socket import *
print '[+] Asteapta cateva secunde...'
time.sleep(2)

serverhost = '127.0.0.1'
buffer = ['45 78 70 6c 6f 69 74','42 6f 6f 6d']

if len (sys.argv) > 1:
serverhost = sys.argv[1]
print '[+] Exploitul sa trezit , mai asteapta putin...'
time.sleep(2)

sSock = socket(AF_INET, SOCK_STREAM)
try:
sSock.connect((serverhost,222))
except:
print '[+] Exploitul penetreaza serverul astept un raspuns...'
time.sleep(2)

for word in buffer:
try:
sSock.send(word)
data = sSock.recv(1024)
except:
print '[+] Serverul e jos, mam terminat ies acum... '
time.sleep(2)
sSock.close()
sys.exit()

Foarte bun exploit-ul, mai e si 0-day, sau ma rog.. 1-day.

Babacu: ti-l recomand, trebuie sa-l folosesti dar mai intai trebuie sa ai Python instalat, dupa ce-l instalezi copiezi codul de mai sus si ii dai paste intr-un fisier numit "evil_exploit.py" trebuie sa aiba ".py" la sfarsit. Apoi intrii in Start > Run > cmd dai cd (change directory -- schimba directorul de lucru) unde l-ai facut, spre exemplu pe Desktop ("cd Desktop") si scrii "python evil_exploit.py" si acum ar trebuii sa ai serverul ala facut praf!

Succes si multa bafta, te mai asteptam cu cereri serioase de genul acesta.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...